Sharkey/src/api/serializers/notification.ts

66 lines
1.5 KiB
TypeScript
Raw Normal View History

2016-12-29 00:49:51 +02:00
/**
* Module dependencies
*/
import * as mongo from 'mongodb';
import Notification from '../models/notification';
import serializeUser from './user';
import serializePost from './post';
2017-01-02 23:03:19 +02:00
import deepcopy = require('deepcopy');
2016-12-29 00:49:51 +02:00
/**
* Serialize a notification
*
2017-03-01 10:37:01 +02:00
* @param {any} notification
* @return {Promise<any>}
2016-12-29 00:49:51 +02:00
*/
2017-03-01 10:37:01 +02:00
export default (notification: any) => new Promise<any>(async (resolve, reject) => {
2016-12-29 00:49:51 +02:00
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;
// Rename notifier_id to user_id
_notification.user_id = _notification.notifier_id;
delete _notification.notifier_id;
const me = _notification.notifiee_id;
delete _notification.notifiee_id;
// Populate notifier
_notification.user = await serializeUser(_notification.user_id, me);
switch (_notification.type) {
case 'follow':
// nope
break;
case 'mention':
case 'reply':
case 'repost':
case 'quote':
2017-03-19 21:24:19 +02:00
case 'reaction':
2017-02-14 06:59:26 +02:00
case 'poll_vote':
2016-12-29 00:49:51 +02:00
// Populate post
_notification.post = await serializePost(_notification.post_id, me);
break;
default:
console.error(`Unknown type: ${_notification.type}`);
break;
}
resolve(_notification);
});