瀏覽代碼

Removed apikey from user object and added route for requesting a new one

Pitu 6 年之前
父節點
當前提交
5df5751736
共有 3 個文件被更改,包括 17 次插入10 次删除
  1. 16 7
      src/api/routes/user/apiKey.js
  2. 1 2
      src/api/routes/user/userGET.js
  3. 0 1
      src/api/routes/verifyGET.js

+ 16 - 7
src/api/routes/user/apiKey.js

@@ -1,21 +1,30 @@
 const Route = require('../../structures/Route');
 const randomstring = require('randomstring');
 const moment = require('moment');
+const bcrypt = require('bcrypt');
+const { dump } = require('dumper.js');
 
 class apiKeyPOST extends Route {
 	constructor() {
-		super('/user/apikey/change', 'post');
+		super('/user/apikey/change', 'post', { noApiKey: true });
 	}
 
 	async run(req, res, db, user) {
 		const now = moment.utc().toDate();
 		const apiKey = randomstring.generate(64);
-		await db.table('users')
-			.where({ id: user.id })
-			.update({
-				apiKey,
-				apiKeyEditedAt: now
-			});
+
+		try {
+			const hash = await bcrypt.hash(apiKey, 10);
+			await db.table('users')
+				.where({ id: user.id })
+				.update({
+					apiKey: hash,
+					apiKeyEditedAt: now
+				});
+		} catch (error) {
+			dump(error);
+			return res.status(401).json({ message: 'There was a problem processing your account' });
+		}
 
 		return res.json({
 			message: 'Successfully created new api key',

+ 1 - 2
src/api/routes/user/userGET.js

@@ -11,8 +11,7 @@ class usersGET extends Route {
 			user: {
 				id: user.id,
 				username: user.username,
-				isAdmin: user.isAdmin,
-				apiKey: user.apiKey
+				isAdmin: user.isAdmin
 			}
 		});
 	}

+ 0 - 1
src/api/routes/verifyGET.js

@@ -9,7 +9,6 @@ class verifyGET extends Route {
 		const returnUser = {
 			id:	user.id,
 			username: user.username,
-			apiKey: user.apiKey,
 			isAdmin: user.isAdmin
 		};