FoundKey/packages/backend/src/server/api/stream/index.ts

424 lines
11 KiB
TypeScript

import { EventEmitter } from 'events';
import { WebSocket } from 'ws';
import { readNote } from '@/services/note/read.js';
import { User } from '@/models/entities/user.js';
import { Channel as ChannelModel } from '@/models/entities/channel.js';
import { Followings, Mutings, RenoteMutings, UserProfiles, ChannelFollowings, Blockings } from '@/models/index.js';
import { AccessToken } from '@/models/entities/access-token.js';
import { UserProfile } from '@/models/entities/user-profile.js';
import { publishChannelStream, publishGroupMessagingStream, publishMessagingStream } from '@/services/stream.js';
import { UserGroup } from '@/models/entities/user-group.js';
import { Packed } from '@/misc/schema.js';
import { readNotification } from '@/server/api/common/read-notification.js';
import { channels } from './channels/index.js';
import Channel from './channel.js';
import { StreamEventEmitter, StreamMessages } from './types.js';
import Logger from '@/services/logger.js';
const logger = new Logger('streaming');
/**
* Main stream connection
*/
export class Connection {
public user?: User;
public userProfile?: UserProfile | null;
public following: Set<User['id']> = new Set();
public muting: Set<User['id']> = new Set();
public renoteMuting: Set<User['id']> = new Set();
public blocking: Set<User['id']> = new Set(); // "被"blocking
public followingChannels: Set<ChannelModel['id']> = new Set();
public token?: AccessToken;
private socket: WebSocket;
public subscriber: StreamEventEmitter;
// Maps IDs to the actual channels.
private channels: Record<string, Channel> = {};
private subscribingNotes: any = {};
private cachedNotes: Packed<'Note'>[] = [];
constructor(
socket: WebSocket,
subscriber: EventEmitter,
user: User | null | undefined,
token: AccessToken | null | undefined,
) {
this.socket = socket;
this.subscriber = subscriber;
if (user) this.user = user;
if (token) this.token = token;
this.onMessage = this.onMessage.bind(this);
this.onUserEvent = this.onUserEvent.bind(this);
this.onNoteStreamMessage = this.onNoteStreamMessage.bind(this);
this.onBroadcastMessage = this.onBroadcastMessage.bind(this);
this.socket.on('message', this.onMessage);
this.subscriber.on('broadcast', data => {
this.onBroadcastMessage(data);
});
if (this.user) {
this.updateFollowing();
this.updateMuting();
this.updateRenoteMuting();
this.updateBlocking();
this.updateFollowingChannels();
this.updateUserProfile();
this.subscriber.on(`user:${this.user.id}`, this.onUserEvent);
}
}
private onUserEvent(data: StreamMessages['user']['payload']) { // { type, body }と展開するとそれぞれ型が分離してしまう
switch (data.type) {
case 'follow':
this.following.add(data.body.id);
break;
case 'unfollow':
this.following.delete(data.body.id);
break;
case 'mute':
this.muting.add(data.body.id);
break;
case 'unmute':
this.muting.delete(data.body.id);
break;
case 'block':
this.blocking.add(data.body.id);
break;
case 'unblock':
this.blocking.delete(data.body.id);
break;
case 'muteRenote':
this.renoteMuting.add(data.body.id);
break;
case 'unmuteRenote':
this.renoteMuting.delete(data.body.id);
break;
case 'followChannel':
this.followingChannels.add(data.body.id);
break;
case 'unfollowChannel':
this.followingChannels.delete(data.body.id);
break;
case 'updateUserProfile':
this.userProfile = data.body;
break;
case 'terminate':
this.socket.close();
this.dispose();
break;
default:
break;
}
}
private async onMessage(data: WebSocket.RawData, isRaw: boolean) {
if (isRaw) {
logger.warn('received unexpected raw data from websocket');
return;
}
let obj: Record<string, any>;
try {
obj = JSON.parse(data);
} catch (err) {
logger.error(err);
return;
}
const { type, body } = obj;
switch (type) {
case 'readNotification':
this.onReadNotification(body);
break;
case 'subNote': case 's':
this.onSubscribeNote(body);
break;
case 'sr':
this.onSubscribeNote(body);
this.readNote(body);
break;
case 'unsubNote': case 'un':
this.onUnsubscribeNote(body);
break;
case 'connect':
this.onChannelConnectRequested(body);
break;
case 'disconnect':
this.onChannelDisconnectRequested(body);
break;
case 'channel': case 'ch':
this.onChannelMessageRequested(body);
break;
// The reason for receiving these messages at the root level rather than in
// individual channels is that when considering the client's circumstances, the
// input form may be separate from the main components of the note channel or
// message, and it would be cumbersome to have each of those components connect to
// each channel.
case 'typingOnChannel':
this.typingOnChannel(body.channel);
break;
case 'typingOnMessaging':
this.typingOnMessaging(body);
break;
}
}
private onBroadcastMessage(data: StreamMessages['broadcast']['payload']) {
this.sendMessageToWs(data.type, data.body);
}
public cacheNote(note: Packed<'Note'>) {
const add = (note: Packed<'Note'>) => {
const existIndex = this.cachedNotes.findIndex(n => n.id === note.id);
if (existIndex > -1) {
this.cachedNotes[existIndex] = note;
return;
}
this.cachedNotes.unshift(note);
if (this.cachedNotes.length > 32) {
this.cachedNotes.splice(32);
}
};
add(note);
if (note.reply) add(note.reply);
if (note.renote) add(note.renote);
}
private readNote(body: any) {
const id = body.id;
const note = this.cachedNotes.find(n => n.id === id);
if (note == null) return;
if (this.user && (note.userId !== this.user.id)) {
readNote(this.user.id, [note], {
following: this.following,
followingChannels: this.followingChannels,
});
}
}
private onReadNotification(payload: any) {
if (!payload.id) return;
readNotification(this.user!.id, [payload.id]);
}
/**
* 投稿購読要求時
*/
private onSubscribeNote(payload: any) {
if (!payload.id) return;
if (this.subscribingNotes[payload.id] == null) {
this.subscribingNotes[payload.id] = 0;
}
this.subscribingNotes[payload.id]++;
if (this.subscribingNotes[payload.id] === 1) {
this.subscriber.on(`noteStream:${payload.id}`, this.onNoteStreamMessage);
}
}
/**
* 投稿購読解除要求時
*/
private onUnsubscribeNote(payload: any) {
if (!payload.id) return;
this.subscribingNotes[payload.id]--;
if (this.subscribingNotes[payload.id] <= 0) {
delete this.subscribingNotes[payload.id];
this.subscriber.off(`noteStream:${payload.id}`, this.onNoteStreamMessage);
}
}
private async onNoteStreamMessage(data: StreamMessages['note']['payload']) {
this.sendMessageToWs('noteUpdated', {
id: data.body.id,
type: data.type,
body: data.body.body,
});
}
/**
* チャンネル接続要求時
*/
private onChannelConnectRequested(payload: any) {
const { channel, id, params, pong } = payload;
this.connectChannel(id, params, channel, pong);
}
/**
* チャンネル切断要求時
*/
private onChannelDisconnectRequested(payload: any) {
const { id } = payload;
this.disconnectChannel(id);
}
/**
* クライアントにメッセージ送信
*/
public sendMessageToWs(type: string, payload: any) {
this.socket.send(JSON.stringify({
type,
body: payload,
}));
}
/**
* Connect to a channel.
* @param id The ID that should be given to this newly created channel.
* @param params The parameters given for initializing this channel.
* @param channel The type of channel to connect to.
* @param pong `true` if a confirmation message should be sent back.
*/
public connectChannel(id: string, params: any, channel: string, pong = false) {
// When it is not possible to connect to a channel, the attempt will be ignored.
if (
// Such a channel type does not exist.
!(channel in channels)
// The specified channel ID is already in use.
|| (id in this.channels)
// Not authenticated, but authentication is required.
|| (channels[channel].requireCredential && this.user == null)
// The channel is shared and already connected.
|| (channels[channel].shouldShare && Object.values(this.channels).some(c => c.chName === channel))
) {
// TODO: send back some kind of error message?
return;
}
this.channels[id] = new channels[channel](id, this);
this.channels[id].init(params);
if (pong) {
this.sendMessageToWs('connected', { id });
}
}
/**
* Disconnect from a channel.
* @param id The unique ID of the channel to disconnect.
*/
public disconnectChannel(id: string) {
this.channels[id]?.dispose?.();
delete this.channels[id];
}
/**
* Called when a message should be sent to a specific channel.
* @param data The message to be sent.
*/
private onChannelMessageRequested(data: Record<string, any>) {
if (!data.id) return;
this.channels[data.id]?.onMessage?.(data.type, data.body);
}
private typingOnChannel(channel: ChannelModel['id']) {
if (this.user) {
publishChannelStream(channel, 'typing', this.user.id);
}
}
private typingOnMessaging(param: { partner?: User['id']; group?: UserGroup['id']; }) {
if (this.user) {
if (param.partner) {
publishMessagingStream(param.partner, this.user.id, 'typing', this.user.id);
} else if (param.group) {
publishGroupMessagingStream(param.group, 'typing', this.user.id);
}
}
}
private async updateFollowing() {
const followings = await Followings.find({
where: {
followerId: this.user!.id,
},
select: ['followeeId'],
});
this.following = new Set<string>(followings.map(x => x.followeeId));
}
private async updateMuting() {
const mutings = await Mutings.find({
where: {
muterId: this.user!.id,
},
select: ['muteeId'],
});
this.muting = new Set<string>(mutings.map(x => x.muteeId));
}
private async updateRenoteMuting() {
const renoteMutings = await RenoteMutings.find({
where: {
muterId: this.user!.id,
},
select: ['muteeId'],
});
this.renoteMuting = new Set<string>(renoteMutings.map(x => x.muteeId));
}
private async updateBlocking() { // ここでいうBlockingは被Blockingの意
const blockings = await Blockings.find({
where: {
blockeeId: this.user!.id,
},
select: ['blockerId'],
});
this.blocking = new Set<string>(blockings.map(x => x.blockerId));
}
private async updateFollowingChannels() {
const followings = await ChannelFollowings.find({
where: {
followerId: this.user!.id,
},
select: ['followeeId'],
});
this.followingChannels = new Set<string>(followings.map(x => x.followeeId));
}
private async updateUserProfile() {
this.userProfile = await UserProfiles.findOneBy({
userId: this.user!.id,
});
}
/**
* Dispose all currently open channels where possible.
*/
public dispose() {
Object.values(this.channels)
.forEach(c => c.dispose?.());
}
}