hippofish/packages/backend/src/server/api/stream/channels/messaging.ts

131 lines
3.4 KiB
TypeScript
Raw Normal View History

2023-01-13 05:40:33 +01:00
import {
readUserMessagingMessage,
readGroupMessagingMessage,
deliverReadActivity,
} from "../../common/read-messaging-message.js";
import Channel from "../channel.js";
import { UserGroupJoinings, Users, MessagingMessages } from "@/models/index.js";
import type { User, ILocalUser, IRemoteUser } from "@/models/entities/user.js";
import type { UserGroup } from "@/models/entities/user-group.js";
import type { StreamMessages } from "../types.js";
export default class extends Channel {
2023-01-13 05:40:33 +01:00
public readonly chName = "messaging";
2018-10-11 16:07:20 +02:00
public static shouldShare = false;
2018-11-10 18:22:34 +01:00
public static requireCredential = true;
2019-05-18 13:36:33 +02:00
private otherpartyId: string | null;
2021-06-30 16:33:50 +02:00
private otherparty: User | null;
2019-05-18 13:36:33 +02:00
private groupId: string | null;
2023-01-13 05:40:33 +01:00
private subCh:
| `messagingStream:${User["id"]}-${User["id"]}`
| `messagingStream:${UserGroup["id"]}`;
private typers: Map<User["id"], Date> = new Map();
private emitTypersIntervalId: ReturnType<typeof setInterval>;
2023-01-13 05:40:33 +01:00
constructor(id: string, connection: Channel["connection"]) {
super(id, connection);
this.onEvent = this.onEvent.bind(this);
this.onMessage = this.onMessage.bind(this);
this.emitTypers = this.emitTypers.bind(this);
}
public async init(params: any) {
2021-06-30 16:33:50 +02:00
this.otherpartyId = params.otherparty;
2023-01-13 05:40:33 +01:00
this.otherparty = this.otherpartyId
? await Users.findOneByOrFail({ id: this.otherpartyId })
: null;
2021-06-30 16:33:50 +02:00
this.groupId = params.group;
2019-05-18 13:36:33 +02:00
// Check joining
if (this.groupId) {
const joining = await UserGroupJoinings.findOneBy({
2019-05-18 13:36:33 +02:00
userId: this.user!.id,
2021-12-09 15:58:30 +01:00
userGroupId: this.groupId,
2019-05-18 13:36:33 +02:00
});
if (joining == null) {
return;
}
}
this.emitTypersIntervalId = setInterval(this.emitTypers, 5000);
this.subCh = this.otherpartyId
2019-05-18 13:36:33 +02:00
? `messagingStream:${this.user!.id}-${this.otherpartyId}`
: `messagingStream:${this.groupId}`;
// Subscribe messaging stream
this.subscriber.on(this.subCh, this.onEvent);
}
2023-01-13 05:40:33 +01:00
private onEvent(
data:
| StreamMessages["messaging"]["payload"]
| StreamMessages["groupMessaging"]["payload"],
) {
if (data.type === "typing") {
const id = data.body;
const begin = !this.typers.has(id);
this.typers.set(id, new Date());
if (begin) {
this.emitTypers();
}
} else {
this.send(data);
}
}
public onMessage(type: string, body: any) {
switch (type) {
2023-01-13 05:40:33 +01:00
case "read":
2019-05-18 13:36:33 +02:00
if (this.otherpartyId) {
readUserMessagingMessage(this.user!.id, this.otherpartyId, [body.id]);
// リモートユーザーからのメッセージだったら既読配信
2023-01-13 05:40:33 +01:00
if (
Users.isLocalUser(this.user!) &&
Users.isRemoteUser(this.otherparty!)
) {
MessagingMessages.findOneBy({ id: body.id }).then((message) => {
if (message)
deliverReadActivity(
this.user as ILocalUser,
this.otherparty as IRemoteUser,
message,
);
});
}
2019-05-18 13:36:33 +02:00
} else if (this.groupId) {
readGroupMessagingMessage(this.user!.id, this.groupId, [body.id]);
}
break;
}
}
private async emitTypers() {
const now = new Date();
// Remove not typing users
for (const [userId, date] of this.typers.entries()) {
2023-04-02 06:10:31 +02:00
if (now.getTime() - date.getTime() > 5000) this.typers.delete(userId);
}
2023-04-01 14:49:14 +02:00
const userIds = Array.from(this.typers.keys());
const users = await Users.packMany(userIds, null, {
2023-01-13 05:40:33 +01:00
detail: false,
});
this.send({
2023-01-13 05:40:33 +01:00
type: "typers",
body: users,
});
}
public dispose() {
this.subscriber.off(this.subCh, this.onEvent);
2021-02-21 05:38:03 +01:00
clearInterval(this.emitTypersIntervalId);
}
}