2019-02-20 17:30:21 +01:00
|
|
|
import $ from 'cafy';
|
|
|
|
import * as bcrypt from 'bcryptjs';
|
|
|
|
import User from '../../../../models/user';
|
|
|
|
import define from '../../define';
|
|
|
|
import { createDeleteNotesJob, createDeleteDriveFilesJob } from '../../../../queue';
|
2019-02-20 17:47:10 +01:00
|
|
|
import Message from '../../../../models/messaging-message';
|
2019-02-20 17:30:21 +01:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
requireCredential: true,
|
|
|
|
|
|
|
|
secure: true,
|
|
|
|
|
|
|
|
params: {
|
|
|
|
password: {
|
|
|
|
validator: $.str
|
|
|
|
},
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export default define(meta, (ps, user) => new Promise(async (res, rej) => {
|
|
|
|
// Compare password
|
|
|
|
const same = await bcrypt.compare(ps.password, user.password);
|
|
|
|
|
|
|
|
if (!same) {
|
|
|
|
return rej('incorrect password');
|
|
|
|
}
|
|
|
|
|
|
|
|
await User.update({ _id: user._id }, {
|
|
|
|
$set: {
|
|
|
|
isDeleted: true,
|
|
|
|
token: null,
|
|
|
|
name: null,
|
|
|
|
description: null,
|
|
|
|
pinnedNoteIds: [],
|
|
|
|
password: null,
|
|
|
|
email: null,
|
|
|
|
twitter: null,
|
|
|
|
github: null,
|
|
|
|
discord: null,
|
|
|
|
profile: {},
|
|
|
|
fields: [],
|
|
|
|
clientSettings: {},
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-02-20 17:47:10 +01:00
|
|
|
Message.remove({ userId: user._id });
|
2019-02-20 17:30:21 +01:00
|
|
|
createDeleteNotesJob(user);
|
|
|
|
createDeleteDriveFilesJob(user);
|
|
|
|
|
|
|
|
res();
|
|
|
|
}));
|