04e27e160e
* authenticateのキャッシュを廃止 * 凍結ユーザーがサインイン出来てしまうのを修正 * 凍結ユーザーはストリーミング接続出来ないように * 他人のアクセストークンはrevoke出来ないように, 正常削除を待機するように * ユーザー/アクセストークンを無効化したらストリーミングを切断するように * Revert TODO * ストリーミングterminateは、ユーザー削除後に行うように * signinでsuspendは別のエラーにする * トークン再生成後のストリーミング切断は少し待つように * サスペンド後のストリーミング切断はローカルユーザーのみに
38 lines
871 B
TypeScript
38 lines
871 B
TypeScript
import $ from 'cafy';
|
|
import * as bcrypt from 'bcryptjs';
|
|
import define from '../../define';
|
|
import { Users, UserProfiles } from '../../../../models';
|
|
import { doPostSuspend } from '../../../../services/suspend-user';
|
|
import { publishUserEvent } from '@/services/stream';
|
|
|
|
export const meta = {
|
|
requireCredential: true as const,
|
|
|
|
secure: true,
|
|
|
|
params: {
|
|
password: {
|
|
validator: $.str
|
|
},
|
|
}
|
|
};
|
|
|
|
export default define(meta, async (ps, user) => {
|
|
const profile = await UserProfiles.findOneOrFail(user.id);
|
|
|
|
// Compare password
|
|
const same = await bcrypt.compare(ps.password, profile.password!);
|
|
|
|
if (!same) {
|
|
throw new Error('incorrect password');
|
|
}
|
|
|
|
// 物理削除する前にDelete activityを送信する
|
|
await doPostSuspend(user).catch(e => {});
|
|
|
|
await Users.delete(user.id);
|
|
|
|
// Terminate streaming
|
|
publishUserEvent(user.id, 'terminate', {});
|
|
});
|