2017-06-12 19:12:30 +02:00
|
|
|
import * as mongo from 'mongodb';
|
2018-03-29 13:32:18 +02:00
|
|
|
import Message from '../../../models/messaging-message';
|
|
|
|
import { IMessagingMessage as IMessage } from '../../../models/messaging-message';
|
2018-10-07 04:06:17 +02:00
|
|
|
import { publishMainStream } from '../../../stream';
|
2018-07-07 12:19:00 +02:00
|
|
|
import { publishMessagingStream } from '../../../stream';
|
|
|
|
import { publishMessagingIndexStream } from '../../../stream';
|
2018-05-28 18:22:39 +02:00
|
|
|
import User from '../../../models/user';
|
2017-06-12 19:12:30 +02:00
|
|
|
|
|
|
|
/**
|
2018-07-20 07:16:02 +02:00
|
|
|
* Mark messages as read
|
2017-06-12 19:12:30 +02:00
|
|
|
*/
|
|
|
|
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 07:48:47 +02:00
|
|
|
userId: otherpartyId,
|
|
|
|
recipientId: userId,
|
|
|
|
isRead: false
|
2017-06-12 19:12:30 +02:00
|
|
|
}, {
|
2018-07-20 07:16:02 +02:00
|
|
|
$set: {
|
|
|
|
isRead: true
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
multi: true
|
|
|
|
});
|
2017-06-12 19:12:30 +02:00
|
|
|
|
|
|
|
// Publish event
|
|
|
|
publishMessagingStream(otherpartyId, userId, 'read', ids.map(id => id.toString()));
|
2017-11-13 16:54:16 +01:00
|
|
|
publishMessagingIndexStream(userId, 'read', ids.map(id => id.toString()));
|
2017-06-12 19:12:30 +02:00
|
|
|
|
|
|
|
// Calc count of my unread messages
|
|
|
|
const count = await Message
|
|
|
|
.count({
|
2018-03-29 07:48:47 +02:00
|
|
|
recipientId: userId,
|
|
|
|
isRead: false
|
2018-05-14 02:24:49 +02:00
|
|
|
}, {
|
2018-07-20 07:16:02 +02:00
|
|
|
limit: 1
|
|
|
|
});
|
2017-06-12 19:12:30 +02:00
|
|
|
|
|
|
|
if (count == 0) {
|
2018-05-28 18:22:39 +02:00
|
|
|
// Update flag
|
|
|
|
User.update({ _id: userId }, {
|
|
|
|
$set: {
|
|
|
|
hasUnreadMessagingMessage: false
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-06-12 19:12:30 +02:00
|
|
|
// 全ての(いままで未読だった)自分宛てのメッセージを(これで)読みましたよというイベントを発行
|
2018-10-07 04:06:17 +02:00
|
|
|
publishMainStream(userId, 'readAllMessagingMessages');
|
2017-06-12 19:12:30 +02:00
|
|
|
}
|
|
|
|
});
|