summaryrefslogtreecommitdiff
path: root/src/api
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2017-08-29 00:20:47 +0900
committersyuilo <syuilotan@yahoo.co.jp>2017-08-29 00:20:47 +0900
commit8f0e6a70cf22f1248b99bd3b300feed8b1b1efc8 (patch)
tree6c476a25c24c14b2fa6deaa8d1f530cea8e44d20 /src/api
parentMerge branch 'master' of https://github.com/syuilo/misskey (diff)
downloadsharkey-8f0e6a70cf22f1248b99bd3b300feed8b1b1efc8.tar.gz
sharkey-8f0e6a70cf22f1248b99bd3b300feed8b1b1efc8.tar.bz2
sharkey-8f0e6a70cf22f1248b99bd3b300feed8b1b1efc8.zip
#364
Diffstat (limited to 'src/api')
-rw-r--r--src/api/endpoints.ts4
-rw-r--r--src/api/endpoints/i/change_password.ts42
2 files changed, 46 insertions, 0 deletions
diff --git a/src/api/endpoints.ts b/src/api/endpoints.ts
index a658c9a42e..c6661533e8 100644
--- a/src/api/endpoints.ts
+++ b/src/api/endpoints.ts
@@ -160,6 +160,10 @@ const endpoints: Endpoint[] = [
kind: 'account-write'
},
{
+ name: 'i/change_password',
+ withCredential: true
+ },
+ {
name: 'i/regenerate_token',
withCredential: true
},
diff --git a/src/api/endpoints/i/change_password.ts b/src/api/endpoints/i/change_password.ts
new file mode 100644
index 0000000000..faceded29d
--- /dev/null
+++ b/src/api/endpoints/i/change_password.ts
@@ -0,0 +1,42 @@
+/**
+ * Module dependencies
+ */
+import $ from 'cafy';
+import * as bcrypt from 'bcryptjs';
+import User from '../../models/user';
+
+/**
+ * Change password
+ *
+ * @param {any} params
+ * @param {any} user
+ * @return {Promise<any>}
+ */
+module.exports = async (params, user) => new Promise(async (res, rej) => {
+ // Get 'current_password' parameter
+ const [currentPassword, currentPasswordErr] = $(params.current_password).string().$;
+ if (currentPasswordErr) return rej('invalid current_password param');
+
+ // Get 'new_password' parameter
+ const [newPassword, newPasswordErr] = $(params.new_password).string().$;
+ if (newPasswordErr) return rej('invalid new_password param');
+
+ // Compare password
+ const same = bcrypt.compareSync(currentPassword, user.password);
+
+ if (!same) {
+ return rej('incorrect password');
+ }
+
+ // Generate hash of password
+ const salt = bcrypt.genSaltSync(8);
+ const hash = bcrypt.hashSync(newPassword, salt);
+
+ await User.update(user._id, {
+ $set: {
+ password: hash
+ }
+ });
+
+ res();
+});