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