2017-10-30 08:12:10 -05:00
|
|
|
import * as mongo from 'mongodb';
|
2018-06-17 19:54:53 -05:00
|
|
|
const deepcopy = require('deepcopy');
|
2018-03-29 06:32:18 -05:00
|
|
|
import db from '../db/mongodb';
|
2018-10-15 21:38:09 -05:00
|
|
|
import isObjectId from '../misc/is-objectid';
|
2018-02-01 17:06:01 -06:00
|
|
|
import { IUser, pack as packUser } from './user';
|
2018-04-07 12:30:37 -05:00
|
|
|
import { pack as packNote } from './note';
|
2017-01-16 18:17:52 -06:00
|
|
|
|
2018-02-01 17:06:01 -06:00
|
|
|
const Notification = db.get<INotification>('notifications');
|
2018-08-01 19:29:46 -05:00
|
|
|
Notification.createIndex('notifieeId');
|
2018-02-01 17:06:01 -06:00
|
|
|
export default Notification;
|
2017-10-30 08:12:10 -05:00
|
|
|
|
|
|
|
export interface INotification {
|
|
|
|
_id: mongo.ObjectID;
|
2018-03-29 00:48:47 -05:00
|
|
|
createdAt: Date;
|
2017-11-10 09:27:02 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 通知の受信者
|
|
|
|
*/
|
|
|
|
notifiee?: IUser;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 通知の受信者
|
|
|
|
*/
|
2018-03-29 00:48:47 -05:00
|
|
|
notifieeId: mongo.ObjectID;
|
2017-11-10 09:27:02 -06:00
|
|
|
|
|
|
|
/**
|
2017-11-10 11:25:24 -06:00
|
|
|
* イニシエータ(initiator)、Origin。通知を行う原因となったユーザー
|
2017-11-10 09:27:02 -06:00
|
|
|
*/
|
|
|
|
notifier?: IUser;
|
|
|
|
|
|
|
|
/**
|
2017-11-10 11:25:24 -06:00
|
|
|
* イニシエータ(initiator)、Origin。通知を行う原因となったユーザー
|
2017-11-10 09:27:02 -06:00
|
|
|
*/
|
2018-03-29 00:48:47 -05:00
|
|
|
notifierId: mongo.ObjectID;
|
2017-11-10 09:27:02 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 通知の種類。
|
|
|
|
* follow - フォローされた
|
|
|
|
* mention - 投稿で自分が言及された
|
|
|
|
* reply - (自分または自分がWatchしている)投稿が返信された
|
2018-04-07 12:30:37 -05:00
|
|
|
* renote - (自分または自分がWatchしている)投稿がRenoteされた
|
|
|
|
* quote - (自分または自分がWatchしている)投稿が引用Renoteされた
|
2017-11-10 09:27:02 -06:00
|
|
|
* reaction - (自分または自分がWatchしている)投稿にリアクションされた
|
|
|
|
* poll_vote - (自分または自分がWatchしている)投稿の投票に投票された
|
|
|
|
*/
|
2018-04-07 12:30:37 -05:00
|
|
|
type: 'follow' | 'mention' | 'reply' | 'renote' | 'quote' | 'reaction' | 'poll_vote';
|
2017-11-10 09:27:02 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 通知が読まれたかどうか
|
|
|
|
*/
|
2018-03-29 00:48:47 -05:00
|
|
|
isRead: Boolean;
|
2017-10-30 08:12:10 -05:00
|
|
|
}
|
2018-02-01 17:06:01 -06:00
|
|
|
|
2018-10-30 21:22:49 -05:00
|
|
|
export const packMany = (
|
2018-10-03 23:53:48 -05:00
|
|
|
notifications: any[]
|
|
|
|
) => {
|
2018-10-30 21:22:49 -05:00
|
|
|
return Promise.all(notifications.map(n => pack(n)));
|
2018-10-03 23:53:48 -05:00
|
|
|
};
|
|
|
|
|
2018-02-01 17:06:01 -06:00
|
|
|
/**
|
|
|
|
* Pack a notification for API response
|
|
|
|
*/
|
|
|
|
export const pack = (notification: any) => new Promise<any>(async (resolve, reject) => {
|
|
|
|
let _notification: any;
|
|
|
|
|
|
|
|
// Populate the notification if 'notification' is ID
|
2018-10-15 21:38:09 -05:00
|
|
|
if (isObjectId(notification)) {
|
2018-02-01 17:06:01 -06:00
|
|
|
_notification = await Notification.findOne({
|
|
|
|
_id: notification
|
|
|
|
});
|
|
|
|
} else if (typeof notification === 'string') {
|
|
|
|
_notification = await Notification.findOne({
|
|
|
|
_id: new mongo.ObjectID(notification)
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
_notification = deepcopy(notification);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Rename _id to id
|
|
|
|
_notification.id = _notification._id;
|
|
|
|
delete _notification._id;
|
|
|
|
|
2018-03-29 00:48:47 -05:00
|
|
|
// Rename notifierId to userId
|
|
|
|
_notification.userId = _notification.notifierId;
|
|
|
|
delete _notification.notifierId;
|
2018-02-01 17:06:01 -06:00
|
|
|
|
2018-03-29 00:48:47 -05:00
|
|
|
const me = _notification.notifieeId;
|
|
|
|
delete _notification.notifieeId;
|
2018-02-01 17:06:01 -06:00
|
|
|
|
|
|
|
// Populate notifier
|
2018-03-29 00:48:47 -05:00
|
|
|
_notification.user = await packUser(_notification.userId, me);
|
2018-02-01 17:06:01 -06:00
|
|
|
|
|
|
|
switch (_notification.type) {
|
|
|
|
case 'follow':
|
2018-06-02 02:13:32 -05:00
|
|
|
case 'receiveFollowRequest':
|
2018-02-01 17:06:01 -06:00
|
|
|
// nope
|
|
|
|
break;
|
|
|
|
case 'mention':
|
|
|
|
case 'reply':
|
2018-04-07 12:30:37 -05:00
|
|
|
case 'renote':
|
2018-02-01 17:06:01 -06:00
|
|
|
case 'quote':
|
|
|
|
case 'reaction':
|
|
|
|
case 'poll_vote':
|
2018-04-07 12:30:37 -05:00
|
|
|
// Populate note
|
|
|
|
_notification.note = await packNote(_notification.noteId, me);
|
2018-10-03 23:53:48 -05:00
|
|
|
|
|
|
|
// (データベースの不具合などで)投稿が見つからなかったら
|
|
|
|
if (_notification.note == null) {
|
2018-10-10 12:19:21 -05:00
|
|
|
console.warn(`[DAMAGED DB] (missing) pkg: notification -> note :: ${_notification.id} (note ${_notification.noteId})`);
|
2018-10-03 23:53:48 -05:00
|
|
|
return resolve(null);
|
|
|
|
}
|
2018-02-01 17:06:01 -06:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
console.error(`Unknown type: ${_notification.type}`);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
resolve(_notification);
|
|
|
|
});
|