2022-09-17 18:27:08 +00:00
|
|
|
import type { User } from '@/models/entities/User.js';
|
|
|
|
import type { Channel as ChannelModel } from '@/models/entities/Channel.js';
|
|
|
|
import type { FollowingsRepository, MutingsRepository, UserProfilesRepository, ChannelFollowingsRepository, BlockingsRepository } from '@/models/index.js';
|
|
|
|
import type { AccessToken } from '@/models/entities/AccessToken.js';
|
|
|
|
import type { UserProfile } from '@/models/entities/UserProfile.js';
|
|
|
|
import type { UserGroup } from '@/models/entities/UserGroup.js';
|
|
|
|
import type { Packed } from '@/misc/schema.js';
|
|
|
|
import type { GlobalEventService } from '@/core/GlobalEventService.js';
|
|
|
|
import type { NoteReadService } from '@/core/NoteReadService.js';
|
|
|
|
import type { NotificationService } from '@/core/NotificationService.js';
|
|
|
|
import type { ChannelsService } from './ChannelsService.js';
|
|
|
|
import type * as websocket from 'websocket';
|
|
|
|
import type { EventEmitter } from 'events';
|
|
|
|
import type Channel from './channel.js';
|
|
|
|
import type { StreamEventEmitter, StreamMessages } from './types.js';
|
2020-03-28 02:24:37 +00:00
|
|
|
|
2018-10-07 02:06:17 +00:00
|
|
|
/**
|
|
|
|
* Main stream connection
|
|
|
|
*/
|
|
|
|
export default class Connection {
|
2019-04-07 12:50:36 +00:00
|
|
|
public user?: User;
|
2022-04-17 11:44:21 +00:00
|
|
|
public userProfile?: UserProfile | null;
|
2021-01-30 02:09:46 +00:00
|
|
|
public following: Set<User['id']> = new Set();
|
|
|
|
public muting: Set<User['id']> = new Set();
|
2021-08-17 12:48:59 +00:00
|
|
|
public blocking: Set<User['id']> = new Set(); // "被"blocking
|
2021-01-30 02:09:46 +00:00
|
|
|
public followingChannels: Set<ChannelModel['id']> = new Set();
|
2020-03-29 02:28:55 +00:00
|
|
|
public token?: AccessToken;
|
2018-10-07 02:06:17 +00:00
|
|
|
private wsConnection: websocket.connection;
|
2021-10-20 16:04:10 +00:00
|
|
|
public subscriber: StreamEventEmitter;
|
2018-10-07 02:06:17 +00:00
|
|
|
private channels: Channel[] = [];
|
|
|
|
private subscribingNotes: any = {};
|
2021-09-22 13:35:55 +00:00
|
|
|
private cachedNotes: Packed<'Note'>[] = [];
|
2018-10-07 02:06:17 +00:00
|
|
|
|
|
|
|
constructor(
|
2022-09-17 18:27:08 +00:00
|
|
|
private followingsRepository: FollowingsRepository,
|
|
|
|
private mutingsRepository: MutingsRepository,
|
|
|
|
private blockingsRepository: BlockingsRepository,
|
|
|
|
private channelFollowingsRepository: ChannelFollowingsRepository,
|
|
|
|
private userProfilesRepository: UserProfilesRepository,
|
|
|
|
private channelsService: ChannelsService,
|
|
|
|
private globalEventService: GlobalEventService,
|
|
|
|
private noteReadService: NoteReadService,
|
|
|
|
private notificationService: NotificationService,
|
|
|
|
|
2018-10-07 02:06:17 +00:00
|
|
|
wsConnection: websocket.connection,
|
2018-10-11 09:09:41 +00:00
|
|
|
subscriber: EventEmitter,
|
2019-04-12 16:43:22 +00:00
|
|
|
user: User | null | undefined,
|
2022-02-27 02:07:39 +00:00
|
|
|
token: AccessToken | null | undefined,
|
2018-10-07 02:06:17 +00:00
|
|
|
) {
|
|
|
|
this.wsConnection = wsConnection;
|
|
|
|
this.subscriber = subscriber;
|
2019-04-12 16:43:22 +00:00
|
|
|
if (user) this.user = user;
|
2020-03-28 09:07:41 +00:00
|
|
|
if (token) this.token = token;
|
2018-10-07 02:06:17 +00:00
|
|
|
|
2022-02-27 02:07:39 +00:00
|
|
|
this.onWsConnectionMessage = this.onWsConnectionMessage.bind(this);
|
|
|
|
this.onUserEvent = this.onUserEvent.bind(this);
|
|
|
|
this.onNoteStreamMessage = this.onNoteStreamMessage.bind(this);
|
|
|
|
this.onBroadcastMessage = this.onBroadcastMessage.bind(this);
|
|
|
|
|
2018-10-07 02:06:17 +00:00
|
|
|
this.wsConnection.on('message', this.onWsConnectionMessage);
|
2019-04-07 12:50:36 +00:00
|
|
|
|
2021-10-20 16:04:10 +00:00
|
|
|
this.subscriber.on('broadcast', data => {
|
|
|
|
this.onBroadcastMessage(data);
|
2020-04-02 13:17:17 +00:00
|
|
|
});
|
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
if (this.user) {
|
|
|
|
this.updateFollowing();
|
|
|
|
this.updateMuting();
|
2021-08-17 12:48:59 +00:00
|
|
|
this.updateBlocking();
|
2020-08-18 13:44:21 +00:00
|
|
|
this.updateFollowingChannels();
|
2020-07-27 04:34:20 +00:00
|
|
|
this.updateUserProfile();
|
2021-03-21 06:14:03 +00:00
|
|
|
|
2021-10-20 16:04:10 +00:00
|
|
|
this.subscriber.on(`user:${this.user.id}`, this.onUserEvent);
|
2021-03-21 06:14:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-20 16:04:10 +00:00
|
|
|
private onUserEvent(data: StreamMessages['user']['payload']) { // { type, body }と展開するとそれぞれ型が分離してしまう
|
|
|
|
switch (data.type) {
|
2021-03-21 06:14:03 +00:00
|
|
|
case 'follow':
|
2021-10-20 16:04:10 +00:00
|
|
|
this.following.add(data.body.id);
|
2021-03-21 06:14:03 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'unfollow':
|
2021-10-20 16:04:10 +00:00
|
|
|
this.following.delete(data.body.id);
|
2021-03-21 06:14:03 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'mute':
|
2021-10-20 16:04:10 +00:00
|
|
|
this.muting.add(data.body.id);
|
2021-03-21 06:14:03 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'unmute':
|
2021-10-20 16:04:10 +00:00
|
|
|
this.muting.delete(data.body.id);
|
2021-03-21 06:14:03 +00:00
|
|
|
break;
|
|
|
|
|
2022-04-17 04:19:05 +00:00
|
|
|
// TODO: block events
|
2021-08-17 12:48:59 +00:00
|
|
|
|
2021-03-21 06:14:03 +00:00
|
|
|
case 'followChannel':
|
2021-10-20 16:04:10 +00:00
|
|
|
this.followingChannels.add(data.body.id);
|
2021-03-21 06:14:03 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'unfollowChannel':
|
2021-10-20 16:04:10 +00:00
|
|
|
this.followingChannels.delete(data.body.id);
|
2021-03-21 06:14:03 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'updateUserProfile':
|
2021-10-20 16:04:10 +00:00
|
|
|
this.userProfile = data.body;
|
2021-03-21 06:14:03 +00:00
|
|
|
break;
|
|
|
|
|
2021-07-18 10:57:53 +00:00
|
|
|
case 'terminate':
|
|
|
|
this.wsConnection.close();
|
|
|
|
this.dispose();
|
|
|
|
break;
|
|
|
|
|
2021-03-21 06:14:03 +00:00
|
|
|
default:
|
|
|
|
break;
|
2019-04-07 12:50:36 +00:00
|
|
|
}
|
2018-10-07 02:06:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* クライアントからメッセージ受信時
|
|
|
|
*/
|
2022-02-19 05:30:42 +00:00
|
|
|
private async onWsConnectionMessage(data: websocket.Message) {
|
|
|
|
if (data.type !== 'utf8') return;
|
2019-04-12 16:43:22 +00:00
|
|
|
if (data.utf8Data == null) return;
|
|
|
|
|
2020-08-18 13:52:54 +00:00
|
|
|
let obj: Record<string, any>;
|
|
|
|
|
|
|
|
try {
|
|
|
|
obj = JSON.parse(data.utf8Data);
|
|
|
|
} catch (e) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const { type, body } = obj;
|
2018-10-07 02:06:17 +00:00
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case 'readNotification': this.onReadNotification(body); break;
|
2021-03-21 08:38:09 +00:00
|
|
|
case 'subNote': this.onSubscribeNote(body); break;
|
|
|
|
case 's': this.onSubscribeNote(body); break; // alias
|
|
|
|
case 'sr': this.onSubscribeNote(body); this.readNote(body); break;
|
2018-10-07 02:06:17 +00:00
|
|
|
case 'unsubNote': this.onUnsubscribeNote(body); break;
|
|
|
|
case 'un': this.onUnsubscribeNote(body); break; // alias
|
|
|
|
case 'connect': this.onChannelConnectRequested(body); break;
|
|
|
|
case 'disconnect': this.onChannelDisconnectRequested(body); break;
|
|
|
|
case 'channel': this.onChannelMessageRequested(body); break;
|
2018-10-09 18:24:09 +00:00
|
|
|
case 'ch': this.onChannelMessageRequested(body); break; // alias
|
2021-02-21 03:26:49 +00:00
|
|
|
|
|
|
|
// 個々のチャンネルではなくルートレベルでこれらのメッセージを受け取る理由は、
|
|
|
|
// クライアントの事情を考慮したとき、入力フォームはノートチャンネルやメッセージのメインコンポーネントとは別
|
|
|
|
// なこともあるため、それらのコンポーネントがそれぞれ各チャンネルに接続するようにするのは面倒なため。
|
2021-02-20 11:20:05 +00:00
|
|
|
case 'typingOnChannel': this.typingOnChannel(body.channel); break;
|
2021-02-21 03:26:49 +00:00
|
|
|
case 'typingOnMessaging': this.typingOnMessaging(body); break;
|
2018-10-07 02:06:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-20 16:04:10 +00:00
|
|
|
private onBroadcastMessage(data: StreamMessages['broadcast']['payload']) {
|
|
|
|
this.sendMessageToWs(data.type, data.body);
|
2020-04-02 13:17:17 +00:00
|
|
|
}
|
|
|
|
|
2021-09-22 13:35:55 +00:00
|
|
|
public cacheNote(note: Packed<'Note'>) {
|
|
|
|
const add = (note: Packed<'Note'>) => {
|
2021-03-21 08:38:09 +00:00
|
|
|
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);
|
2021-09-11 16:12:23 +00:00
|
|
|
if (note.reply) add(note.reply);
|
|
|
|
if (note.renote) add(note.renote);
|
2021-03-21 08:38:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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)) {
|
2022-09-17 18:27:08 +00:00
|
|
|
this.noteReadService.read(this.user.id, [note], {
|
2021-03-23 06:06:56 +00:00
|
|
|
following: this.following,
|
|
|
|
followingChannels: this.followingChannels,
|
|
|
|
});
|
2021-03-21 08:38:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-07 02:06:17 +00:00
|
|
|
private onReadNotification(payload: any) {
|
|
|
|
if (!payload.id) return;
|
2022-09-17 18:27:08 +00:00
|
|
|
this.notificationService.readNotification(this.user!.id, [payload.id]);
|
2018-10-07 02:06:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 投稿購読要求時
|
|
|
|
*/
|
2021-03-21 08:38:09 +00:00
|
|
|
private onSubscribeNote(payload: any) {
|
2018-10-07 02:06:17 +00:00
|
|
|
if (!payload.id) return;
|
|
|
|
|
|
|
|
if (this.subscribingNotes[payload.id] == null) {
|
|
|
|
this.subscribingNotes[payload.id] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.subscribingNotes[payload.id]++;
|
|
|
|
|
2020-03-29 01:39:36 +00:00
|
|
|
if (this.subscribingNotes[payload.id] === 1) {
|
2018-10-07 02:06:17 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-20 16:04:10 +00:00
|
|
|
private async onNoteStreamMessage(data: StreamMessages['note']['payload']) {
|
2018-10-07 02:06:17 +00:00
|
|
|
this.sendMessageToWs('noteUpdated', {
|
|
|
|
id: data.body.id,
|
|
|
|
type: data.type,
|
|
|
|
body: data.body.body,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* チャンネル接続要求時
|
|
|
|
*/
|
|
|
|
private onChannelConnectRequested(payload: any) {
|
2018-10-13 10:14:05 +00:00
|
|
|
const { channel, id, params, pong } = payload;
|
|
|
|
this.connectChannel(id, params, channel, pong);
|
2018-10-07 02:06:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* チャンネル切断要求時
|
|
|
|
*/
|
|
|
|
private onChannelDisconnectRequested(payload: any) {
|
|
|
|
const { id } = payload;
|
|
|
|
this.disconnectChannel(id);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* クライアントにメッセージ送信
|
|
|
|
*/
|
|
|
|
public sendMessageToWs(type: string, payload: any) {
|
|
|
|
this.wsConnection.send(JSON.stringify({
|
|
|
|
type: type,
|
2021-12-09 14:58:30 +00:00
|
|
|
body: payload,
|
2018-10-07 02:06:17 +00:00
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* チャンネルに接続
|
|
|
|
*/
|
2018-10-13 10:14:05 +00:00
|
|
|
public connectChannel(id: string, params: any, channel: string, pong = false) {
|
2022-09-17 18:27:08 +00:00
|
|
|
const channelService = this.channelsService.getChannelService(channel);
|
|
|
|
|
|
|
|
if (channelService.requireCredential && this.user == null) {
|
2018-11-10 17:22:34 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-10-11 14:01:57 +00:00
|
|
|
// 共有可能チャンネルに接続しようとしていて、かつそのチャンネルに既に接続していたら無意味なので無視
|
2022-09-17 18:27:08 +00:00
|
|
|
if (channelService.shouldShare && this.channels.some(c => c.chName === channel)) {
|
2018-10-11 14:01:57 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
const ch: Channel = channelService.create(id, this);
|
2018-10-11 14:01:57 +00:00
|
|
|
this.channels.push(ch);
|
|
|
|
ch.init(params);
|
2018-10-13 10:14:05 +00:00
|
|
|
|
|
|
|
if (pong) {
|
|
|
|
this.sendMessageToWs('connected', {
|
2021-12-09 14:58:30 +00:00
|
|
|
id: id,
|
2018-10-13 10:14:05 +00:00
|
|
|
});
|
|
|
|
}
|
2018-10-07 02:06:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* チャンネルから切断
|
2018-10-07 08:06:28 +00:00
|
|
|
* @param id チャンネルコネクションID
|
2018-10-07 02:06:17 +00:00
|
|
|
*/
|
2018-10-07 08:19:52 +00:00
|
|
|
public disconnectChannel(id: string) {
|
2018-10-07 02:06:17 +00:00
|
|
|
const channel = this.channels.find(c => c.id === id);
|
|
|
|
|
|
|
|
if (channel) {
|
|
|
|
if (channel.dispose) channel.dispose();
|
|
|
|
this.channels = this.channels.filter(c => c.id !== id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-07 08:06:28 +00:00
|
|
|
/**
|
|
|
|
* チャンネルへメッセージ送信要求時
|
|
|
|
* @param data メッセージ
|
|
|
|
*/
|
2018-10-07 02:06:17 +00:00
|
|
|
private onChannelMessageRequested(data: any) {
|
|
|
|
const channel = this.channels.find(c => c.id === data.id);
|
|
|
|
if (channel != null && channel.onMessage != null) {
|
|
|
|
channel.onMessage(data.type, data.body);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-20 11:20:05 +00:00
|
|
|
private typingOnChannel(channel: ChannelModel['id']) {
|
|
|
|
if (this.user) {
|
2022-09-17 18:27:08 +00:00
|
|
|
this.globalEventService.publishChannelStream(channel, 'typing', this.user.id);
|
2021-02-20 11:20:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-21 03:26:49 +00:00
|
|
|
private typingOnMessaging(param: { partner?: User['id']; group?: UserGroup['id']; }) {
|
|
|
|
if (this.user) {
|
|
|
|
if (param.partner) {
|
2022-09-17 18:27:08 +00:00
|
|
|
this.globalEventService.publishMessagingStream(param.partner, this.user.id, 'typing', this.user.id);
|
2021-02-21 03:26:49 +00:00
|
|
|
} else if (param.group) {
|
2022-09-17 18:27:08 +00:00
|
|
|
this.globalEventService.publishGroupMessagingStream(param.group, 'typing', this.user.id);
|
2021-02-21 03:26:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
private async updateFollowing() {
|
2022-09-17 18:27:08 +00:00
|
|
|
const followings = await this.followingsRepository.find({
|
2019-04-07 12:50:36 +00:00
|
|
|
where: {
|
2021-12-09 14:58:30 +00:00
|
|
|
followerId: this.user!.id,
|
2019-04-07 12:50:36 +00:00
|
|
|
},
|
2021-12-09 14:58:30 +00:00
|
|
|
select: ['followeeId'],
|
2019-04-07 12:50:36 +00:00
|
|
|
});
|
|
|
|
|
2021-01-30 02:09:46 +00:00
|
|
|
this.following = new Set<string>(followings.map(x => x.followeeId));
|
2019-04-07 12:50:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private async updateMuting() {
|
2022-09-17 18:27:08 +00:00
|
|
|
const mutings = await this.mutingsRepository.find({
|
2019-04-07 12:50:36 +00:00
|
|
|
where: {
|
2021-12-09 14:58:30 +00:00
|
|
|
muterId: this.user!.id,
|
2019-04-07 12:50:36 +00:00
|
|
|
},
|
2021-12-09 14:58:30 +00:00
|
|
|
select: ['muteeId'],
|
2019-04-07 12:50:36 +00:00
|
|
|
});
|
|
|
|
|
2021-01-30 02:09:46 +00:00
|
|
|
this.muting = new Set<string>(mutings.map(x => x.muteeId));
|
2019-04-07 12:50:36 +00:00
|
|
|
}
|
|
|
|
|
2021-08-17 12:48:59 +00:00
|
|
|
private async updateBlocking() { // ここでいうBlockingは被Blockingの意
|
2022-09-17 18:27:08 +00:00
|
|
|
const blockings = await this.blockingsRepository.find({
|
2021-08-17 12:48:59 +00:00
|
|
|
where: {
|
2021-12-09 14:58:30 +00:00
|
|
|
blockeeId: this.user!.id,
|
2021-08-17 12:48:59 +00:00
|
|
|
},
|
2021-12-09 14:58:30 +00:00
|
|
|
select: ['blockerId'],
|
2021-08-17 12:48:59 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
this.blocking = new Set<string>(blockings.map(x => x.blockerId));
|
|
|
|
}
|
|
|
|
|
2020-08-18 13:44:21 +00:00
|
|
|
private async updateFollowingChannels() {
|
2022-09-17 18:27:08 +00:00
|
|
|
const followings = await this.channelFollowingsRepository.find({
|
2020-08-18 13:44:21 +00:00
|
|
|
where: {
|
2021-12-09 14:58:30 +00:00
|
|
|
followerId: this.user!.id,
|
2020-08-18 13:44:21 +00:00
|
|
|
},
|
2021-12-09 14:58:30 +00:00
|
|
|
select: ['followeeId'],
|
2020-08-18 13:44:21 +00:00
|
|
|
});
|
|
|
|
|
2021-01-30 02:09:46 +00:00
|
|
|
this.followingChannels = new Set<string>(followings.map(x => x.followeeId));
|
2020-08-18 13:44:21 +00:00
|
|
|
}
|
|
|
|
|
2020-07-27 04:34:20 +00:00
|
|
|
private async updateUserProfile() {
|
2022-09-17 18:27:08 +00:00
|
|
|
this.userProfile = await this.userProfilesRepository.findOneBy({
|
2021-12-09 14:58:30 +00:00
|
|
|
userId: this.user!.id,
|
2020-07-27 04:34:20 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-10-07 02:06:17 +00:00
|
|
|
/**
|
|
|
|
* ストリームが切れたとき
|
|
|
|
*/
|
|
|
|
public dispose() {
|
2018-12-11 11:36:55 +00:00
|
|
|
for (const c of this.channels.filter(c => c.dispose)) {
|
2019-04-12 16:43:22 +00:00
|
|
|
if (c.dispose) c.dispose();
|
2018-12-11 11:36:55 +00:00
|
|
|
}
|
2018-10-07 02:06:17 +00:00
|
|
|
}
|
|
|
|
}
|