mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-08 21:03:09 +02:00
43 lines
1.1 KiB
TypeScript
43 lines
1.1 KiB
TypeScript
import * as websocket from 'websocket';
|
|
import Xev from 'xev';
|
|
|
|
import { IUser } from '../../../models/user';
|
|
import Mute from '../../../models/mute';
|
|
import { pack } from '../../../models/note';
|
|
|
|
export default async function(
|
|
request: websocket.request,
|
|
connection: websocket.connection,
|
|
subscriber: Xev,
|
|
user: IUser
|
|
) {
|
|
const mute = await Mute.find({ muterId: user._id });
|
|
const mutedUserIds = mute.map(m => m.muteeId.toString());
|
|
|
|
// Subscribe stream
|
|
subscriber.on('local-timeline', async note => {
|
|
//#region 流れてきたNoteがミュートしているユーザーが関わるものだったら無視する
|
|
if (mutedUserIds.indexOf(note.userId) != -1) {
|
|
return;
|
|
}
|
|
if (note.reply != null && mutedUserIds.indexOf(note.reply.userId) != -1) {
|
|
return;
|
|
}
|
|
if (note.renote != null && mutedUserIds.indexOf(note.renote.userId) != -1) {
|
|
return;
|
|
}
|
|
//#endregion
|
|
|
|
// Renoteなら再pack
|
|
if (note.renoteId != null) {
|
|
note.renote = await pack(note.renoteId, user, {
|
|
detail: true
|
|
});
|
|
}
|
|
|
|
connection.send(JSON.stringify({
|
|
type: 'note',
|
|
body: note
|
|
}));
|
|
});
|
|
}
|