2016-12-28 16:49:51 -06:00
|
|
|
import * as mongo from 'mongodb';
|
|
|
|
import Notification from '../models/notification';
|
|
|
|
import event from '../event';
|
|
|
|
import serialize from '../serializers/notification';
|
|
|
|
|
|
|
|
export default (
|
|
|
|
notifiee: mongo.ObjectID,
|
|
|
|
notifier: mongo.ObjectID,
|
|
|
|
type: string,
|
2017-03-04 21:09:34 -06:00
|
|
|
content?: any
|
2016-12-28 16:49:51 -06:00
|
|
|
) => new Promise<any>(async (resolve, reject) => {
|
|
|
|
if (notifiee.equals(notifier)) {
|
|
|
|
return resolve();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create notification
|
2017-01-17 14:28:12 -06:00
|
|
|
const notification = await Notification.insert(Object.assign({
|
2016-12-28 16:49:51 -06:00
|
|
|
created_at: new Date(),
|
|
|
|
notifiee_id: notifiee,
|
|
|
|
notifier_id: notifier,
|
|
|
|
type: type,
|
|
|
|
is_read: false
|
|
|
|
}, content));
|
|
|
|
|
|
|
|
resolve(notification);
|
|
|
|
|
|
|
|
// Publish notification event
|
|
|
|
event(notifiee, 'notification',
|
|
|
|
await serialize(notification));
|
|
|
|
});
|