iceshrimp-legacy/src/models/notification.ts

133 lines
3.3 KiB
TypeScript
Raw Normal View History

import * as mongo from 'mongodb';
2018-06-18 02:54:53 +02:00
const deepcopy = require('deepcopy');
2018-03-29 13:32:18 +02:00
import db from '../db/mongodb';
2018-02-02 00:06:01 +01:00
import { IUser, pack as packUser } from './user';
2018-04-07 19:30:37 +02:00
import { pack as packNote } from './note';
2017-01-17 01:17:52 +01:00
2018-02-02 00:06:01 +01:00
const Notification = db.get<INotification>('notifications');
export default Notification;
export interface INotification {
_id: mongo.ObjectID;
2018-03-29 07:48:47 +02:00
createdAt: Date;
2017-11-10 16:27:02 +01:00
/**
*
*/
notifiee?: IUser;
/**
*
*/
2018-03-29 07:48:47 +02:00
notifieeId: mongo.ObjectID;
2017-11-10 16:27:02 +01:00
/**
2017-11-10 18:25:24 +01:00
* (initiator)Origin
2017-11-10 16:27:02 +01:00
*/
notifier?: IUser;
/**
2017-11-10 18:25:24 +01:00
* (initiator)Origin
2017-11-10 16:27:02 +01:00
*/
2018-03-29 07:48:47 +02:00
notifierId: mongo.ObjectID;
2017-11-10 16:27:02 +01:00
/**
*
* follow -
* mention - 稿
* reply - (Watchしている)稿
2018-04-07 19:30:37 +02:00
* renote - (Watchしている)稿Renoteされた
* quote - (Watchしている)稿Renoteされた
2017-11-10 16:27:02 +01:00
* reaction - (Watchしている)稿
* poll_vote - (Watchしている)稿
*/
2018-04-07 19:30:37 +02:00
type: 'follow' | 'mention' | 'reply' | 'renote' | 'quote' | 'reaction' | 'poll_vote';
2017-11-10 16:27:02 +01:00
/**
*
*/
2018-03-29 07:48:47 +02:00
isRead: Boolean;
}
2018-02-02 00:06:01 +01:00
2018-04-14 23:34:55 +02:00
/**
* Notificationを物理削除します
*/
export async function deleteNotification(notification: string | mongo.ObjectID | INotification) {
let n: INotification;
// Populate
if (mongo.ObjectID.prototype.isPrototypeOf(notification)) {
n = await Notification.findOne({
_id: notification
});
} else if (typeof notification === 'string') {
n = await Notification.findOne({
_id: new mongo.ObjectID(notification)
});
} else {
n = notification as INotification;
}
if (n == null) return;
// このNotificationを削除
await Notification.remove({
_id: n._id
});
}
2018-02-02 00:06:01 +01: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
if (mongo.ObjectID.prototype.isPrototypeOf(notification)) {
_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 07:48:47 +02:00
// Rename notifierId to userId
_notification.userId = _notification.notifierId;
delete _notification.notifierId;
2018-02-02 00:06:01 +01:00
2018-03-29 07:48:47 +02:00
const me = _notification.notifieeId;
delete _notification.notifieeId;
2018-02-02 00:06:01 +01:00
// Populate notifier
2018-03-29 07:48:47 +02:00
_notification.user = await packUser(_notification.userId, me);
2018-02-02 00:06:01 +01:00
switch (_notification.type) {
case 'follow':
2018-06-02 09:13:32 +02:00
case 'receiveFollowRequest':
2018-02-02 00:06:01 +01:00
// nope
break;
case 'mention':
case 'reply':
2018-04-07 19:30:37 +02:00
case 'renote':
2018-02-02 00:06:01 +01:00
case 'quote':
case 'reaction':
case 'poll_vote':
2018-04-07 19:30:37 +02:00
// Populate note
_notification.note = await packNote(_notification.noteId, me);
2018-02-02 00:06:01 +01:00
break;
default:
console.error(`Unknown type: ${_notification.type}`);
break;
}
resolve(_notification);
});