2022-02-27 04:07:39 +02:00
|
|
|
import { UserProfiles } from '@/models/index.js';
|
|
|
|
import { User } from '@/models/entities/user.js';
|
|
|
|
import { sendEmail } from './send-email.js';
|
|
|
|
import { I18n } from '@/misc/i18n.js';
|
|
|
|
import * as Acct from '@/misc/acct.js';
|
|
|
|
// TODO
|
|
|
|
//const locales = await import('../../../../locales/index.js');
|
2021-02-13 05:28:26 +02:00
|
|
|
|
|
|
|
// TODO: locale ファイルをクライアント用とサーバー用で分けたい
|
|
|
|
|
2021-07-15 14:35:43 +03:00
|
|
|
async function follow(userId: User['id'], follower: User) {
|
2022-02-27 04:07:39 +02:00
|
|
|
/*
|
2022-03-26 08:34:00 +02:00
|
|
|
const userProfile = await UserProfiles.findOneByOrFail({ userId: userId });
|
2021-02-13 05:28:26 +02:00
|
|
|
if (!userProfile.email || !userProfile.emailNotificationTypes.includes('follow')) return;
|
|
|
|
const locale = locales[userProfile.lang || 'ja-JP'];
|
|
|
|
const i18n = new I18n(locale);
|
2021-07-15 14:35:43 +03:00
|
|
|
// TODO: render user information html
|
2021-11-11 19:02:25 +02:00
|
|
|
sendEmail(userProfile.email, i18n.t('_email._follow.title'), `${follower.name} (@${Acct.toString(follower)})`, `${follower.name} (@${Acct.toString(follower)})`);
|
2022-02-27 04:07:39 +02:00
|
|
|
*/
|
2021-02-13 05:28:26 +02:00
|
|
|
}
|
|
|
|
|
2021-08-11 15:08:05 +03:00
|
|
|
async function receiveFollowRequest(userId: User['id'], follower: User) {
|
2022-02-27 04:07:39 +02:00
|
|
|
/*
|
2022-03-26 08:34:00 +02:00
|
|
|
const userProfile = await UserProfiles.findOneByOrFail({ userId: userId });
|
2021-02-13 05:28:26 +02:00
|
|
|
if (!userProfile.email || !userProfile.emailNotificationTypes.includes('receiveFollowRequest')) return;
|
|
|
|
const locale = locales[userProfile.lang || 'ja-JP'];
|
|
|
|
const i18n = new I18n(locale);
|
2021-08-11 15:08:05 +03:00
|
|
|
// TODO: render user information html
|
2021-11-11 19:02:25 +02:00
|
|
|
sendEmail(userProfile.email, i18n.t('_email._receiveFollowRequest.title'), `${follower.name} (@${Acct.toString(follower)})`, `${follower.name} (@${Acct.toString(follower)})`);
|
2022-02-27 04:07:39 +02:00
|
|
|
*/
|
2021-02-13 05:28:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export const sendEmailNotification = {
|
|
|
|
follow,
|
|
|
|
receiveFollowRequest,
|
|
|
|
};
|