2022-02-27 02:07:39 +00:00
|
|
|
import { publishMainStream } from '@/services/stream.js';
|
|
|
|
import define from '../define.js';
|
2021-05-04 06:05:34 +00:00
|
|
|
import rndstr from 'rndstr';
|
2022-02-27 02:07:39 +00:00
|
|
|
import config from '@/config/index.js';
|
2021-11-12 10:47:04 +00:00
|
|
|
import ms from 'ms';
|
2022-02-27 02:07:39 +00:00
|
|
|
import { Users, UserProfiles, PasswordResetRequests } from '@/models/index.js';
|
|
|
|
import { sendEmail } from '@/services/send-email.js';
|
|
|
|
import { ApiError } from '../error.js';
|
|
|
|
import { genId } from '@/misc/gen-id.js';
|
2021-05-04 06:05:34 +00:00
|
|
|
import { IsNull } from 'typeorm';
|
|
|
|
|
|
|
|
export const meta = {
|
2022-01-18 13:27:10 +00:00
|
|
|
requireCredential: false,
|
2021-05-04 06:05:34 +00:00
|
|
|
|
|
|
|
limit: {
|
|
|
|
duration: ms('1hour'),
|
2021-12-09 14:58:30 +00:00
|
|
|
max: 3,
|
2021-05-04 06:05:34 +00:00
|
|
|
},
|
|
|
|
|
2022-02-19 05:05:32 +00:00
|
|
|
errors: {
|
2021-05-04 06:05:34 +00:00
|
|
|
|
|
|
|
},
|
2022-02-19 05:05:32 +00:00
|
|
|
} as const;
|
2021-05-04 06:05:34 +00:00
|
|
|
|
2022-02-20 04:15:40 +00:00
|
|
|
export const paramDef = {
|
2022-02-19 05:05:32 +00:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
username: { type: 'string' },
|
|
|
|
email: { type: 'string' },
|
2021-12-09 14:58:30 +00:00
|
|
|
},
|
2022-02-19 05:05:32 +00:00
|
|
|
required: ['username', 'email'],
|
2022-01-18 13:27:10 +00:00
|
|
|
} as const;
|
2021-05-04 06:05:34 +00:00
|
|
|
|
2022-01-02 17:12:50 +00:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 05:05:32 +00:00
|
|
|
export default define(meta, paramDef, async (ps) => {
|
2021-05-04 06:05:34 +00:00
|
|
|
const user = await Users.findOne({
|
|
|
|
usernameLower: ps.username.toLowerCase(),
|
2021-12-09 14:58:30 +00:00
|
|
|
host: IsNull(),
|
2021-05-04 06:05:34 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
// 合致するユーザーが登録されていなかったら無視
|
|
|
|
if (user == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const profile = await UserProfiles.findOneOrFail(user.id);
|
|
|
|
|
|
|
|
// 合致するメアドが登録されていなかったら無視
|
|
|
|
if (profile.email !== ps.email) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// メアドが認証されていなかったら無視
|
|
|
|
if (!profile.emailVerified) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const token = rndstr('a-z0-9', 64);
|
|
|
|
|
|
|
|
await PasswordResetRequests.insert({
|
|
|
|
id: genId(),
|
|
|
|
createdAt: new Date(),
|
|
|
|
userId: profile.userId,
|
2021-12-09 14:58:30 +00:00
|
|
|
token,
|
2021-05-04 06:05:34 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
const link = `${config.url}/reset-password/${token}`;
|
|
|
|
|
|
|
|
sendEmail(ps.email, 'Password reset requested',
|
|
|
|
`To reset password, please click this link:<br><a href="${link}">${link}</a>`,
|
|
|
|
`To reset password, please click this link: ${link}`);
|
|
|
|
});
|