2018-10-07 05:06:17 +03:00
|
|
|
import autobind from 'autobind-decorator';
|
2019-12-14 20:37:19 +02:00
|
|
|
import { readUserMessagingMessage, readGroupMessagingMessage, deliverReadActivity } from '../../common/read-messaging-message';
|
2018-10-07 05:06:17 +03:00
|
|
|
import Channel from '../channel';
|
2019-12-14 20:37:19 +02:00
|
|
|
import { UserGroupJoinings, Users, MessagingMessages } from '../../../../models';
|
|
|
|
import { User, ILocalUser, IRemoteUser } from '../../../../models/entities/user';
|
2018-10-07 05:06:17 +03:00
|
|
|
|
|
|
|
export default class extends Channel {
|
2018-10-11 17:01:57 +03:00
|
|
|
public readonly chName = 'messaging';
|
2018-10-11 17:07:20 +03:00
|
|
|
public static shouldShare = false;
|
2018-11-10 19:22:34 +02:00
|
|
|
public static requireCredential = true;
|
2018-10-11 17:01:57 +03:00
|
|
|
|
2019-05-18 14:36:33 +03:00
|
|
|
private otherpartyId: string | null;
|
2019-12-14 20:37:19 +02:00
|
|
|
private otherparty?: User;
|
2019-05-18 14:36:33 +03:00
|
|
|
private groupId: string | null;
|
2018-10-07 05:06:17 +03:00
|
|
|
|
|
|
|
@autobind
|
|
|
|
public async init(params: any) {
|
|
|
|
this.otherpartyId = params.otherparty as string;
|
2019-12-14 20:37:19 +02:00
|
|
|
this.otherparty = await Users.findOne({ id: this.otherpartyId });
|
2019-05-18 14:36:33 +03:00
|
|
|
this.groupId = params.group as string;
|
|
|
|
|
|
|
|
// Check joining
|
|
|
|
if (this.groupId) {
|
|
|
|
const joining = await UserGroupJoinings.findOne({
|
|
|
|
userId: this.user!.id,
|
|
|
|
userGroupId: this.groupId
|
|
|
|
});
|
|
|
|
|
|
|
|
if (joining == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const subCh = this.otherpartyId
|
|
|
|
? `messagingStream:${this.user!.id}-${this.otherpartyId}`
|
|
|
|
: `messagingStream:${this.groupId}`;
|
2018-10-07 05:06:17 +03:00
|
|
|
|
|
|
|
// Subscribe messaging stream
|
2019-05-18 14:36:33 +03:00
|
|
|
this.subscriber.on(subCh, data => {
|
2018-10-07 05:06:17 +03:00
|
|
|
this.send(data);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
@autobind
|
|
|
|
public onMessage(type: string, body: any) {
|
|
|
|
switch (type) {
|
|
|
|
case 'read':
|
2019-05-18 14:36:33 +03:00
|
|
|
if (this.otherpartyId) {
|
|
|
|
readUserMessagingMessage(this.user!.id, this.otherpartyId, [body.id]);
|
2019-12-14 20:37:19 +02:00
|
|
|
|
|
|
|
// リモートユーザーからのメッセージだったら既読配信
|
|
|
|
if (Users.isLocalUser(this.user!) && Users.isRemoteUser(this.otherparty!)) {
|
|
|
|
MessagingMessages.findOne(body.id).then(message => {
|
|
|
|
if (message) deliverReadActivity(this.user as ILocalUser, this.otherparty as IRemoteUser, message);
|
|
|
|
});
|
|
|
|
}
|
2019-05-18 14:36:33 +03:00
|
|
|
} else if (this.groupId) {
|
|
|
|
readGroupMessagingMessage(this.user!.id, this.groupId, [body.id]);
|
|
|
|
}
|
2018-10-07 05:06:17 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|