Sharkey/src/server/api/common/read-messaging-message.ts

77 lines
2.1 KiB
TypeScript
Raw Normal View History

2017-06-12 20:12:30 +03:00
import * as mongo from 'mongodb';
2018-03-29 14:32:18 +03:00
import Message from '../../../models/messaging-message';
import { IMessagingMessage as IMessage } from '../../../models/messaging-message';
2018-07-07 13:19:00 +03:00
import publishUserStream from '../../../stream';
import { publishMessagingStream } from '../../../stream';
import { publishMessagingIndexStream } from '../../../stream';
2018-05-28 19:22:39 +03:00
import User from '../../../models/user';
2017-06-12 20:12:30 +03:00
/**
* Mark as read message(s)
*/
export default (
user: string | mongo.ObjectID,
otherparty: string | mongo.ObjectID,
message: string | string[] | IMessage | IMessage[] | mongo.ObjectID | mongo.ObjectID[]
) => new Promise<any>(async (resolve, reject) => {
const userId = mongo.ObjectID.prototype.isPrototypeOf(user)
? user
: new mongo.ObjectID(user);
const otherpartyId = mongo.ObjectID.prototype.isPrototypeOf(otherparty)
? otherparty
: new mongo.ObjectID(otherparty);
const ids: mongo.ObjectID[] = Array.isArray(message)
? mongo.ObjectID.prototype.isPrototypeOf(message[0])
? (message as mongo.ObjectID[])
: typeof message[0] === 'string'
? (message as string[]).map(m => new mongo.ObjectID(m))
: (message as IMessage[]).map(m => m._id)
: mongo.ObjectID.prototype.isPrototypeOf(message)
? [(message as mongo.ObjectID)]
: typeof message === 'string'
? [new mongo.ObjectID(message)]
: [(message as IMessage)._id];
// Update documents
await Message.update({
_id: { $in: ids },
2018-03-29 08:48:47 +03:00
userId: otherpartyId,
recipientId: userId,
isRead: false
2017-06-12 20:12:30 +03:00
}, {
$set: {
2018-03-29 08:48:47 +03:00
isRead: true
2017-06-12 20:12:30 +03:00
}
}, {
multi: true
});
// Publish event
publishMessagingStream(otherpartyId, userId, 'read', ids.map(id => id.toString()));
2017-11-13 17:54:16 +02:00
publishMessagingIndexStream(userId, 'read', ids.map(id => id.toString()));
2017-06-12 20:12:30 +03:00
// Calc count of my unread messages
const count = await Message
.count({
2018-03-29 08:48:47 +03:00
recipientId: userId,
isRead: false
2018-05-14 03:24:49 +03:00
}, {
limit: 1
2017-06-12 20:12:30 +03:00
});
if (count == 0) {
2018-05-28 19:22:39 +03:00
// Update flag
User.update({ _id: userId }, {
$set: {
hasUnreadMessagingMessage: false
}
});
2017-06-12 20:12:30 +03:00
// 全ての(いままで未読だった)自分宛てのメッセージを(これで)読みましたよというイベントを発行
publishUserStream(userId, 'read_all_messaging_messages');
}
});