Sharkey/src/server/api/stream/channels/user-list.ts

24 lines
609 B
TypeScript
Raw Normal View History

import autobind from 'autobind-decorator';
import Channel from '../channel';
2019-01-20 17:32:54 +02:00
import { pack } from '../../../../models/note';
export default class extends Channel {
public readonly chName = 'userList';
2018-10-11 17:07:20 +03:00
public static shouldShare = false;
2018-11-10 19:22:34 +02:00
public static requireCredential = false;
@autobind
public async init(params: any) {
const listId = params.listId as string;
// Subscribe stream
2019-01-20 17:32:54 +02:00
this.subscriber.on(`userListStream:${listId}`, async data => {
// 再パック
if (data.type == 'note') data.body = await pack(data.body.id, this.user, {
detail: true
});
this.send(data);
});
}
}