2022-09-17 18:27:08 +00:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2022-02-27 02:07:39 +00:00
|
|
|
import Channel from '../channel.js';
|
2018-10-07 02:06:17 +00:00
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
class MessagingIndexChannel extends Channel {
|
2018-10-11 14:01:57 +00:00
|
|
|
public readonly chName = 'messagingIndex';
|
2018-10-11 14:07:20 +00:00
|
|
|
public static shouldShare = true;
|
2018-11-10 17:22:34 +00:00
|
|
|
public static requireCredential = true;
|
2018-10-11 14:01:57 +00:00
|
|
|
|
2018-10-07 02:06:17 +00:00
|
|
|
public async init(params: any) {
|
|
|
|
// Subscribe messaging index stream
|
2019-04-12 16:43:22 +00:00
|
|
|
this.subscriber.on(`messagingIndexStream:${this.user!.id}`, data => {
|
2018-10-07 02:06:17 +00:00
|
|
|
this.send(data);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2022-09-17 18:27:08 +00:00
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class MessagingIndexChannelService {
|
|
|
|
public readonly shouldShare = MessagingIndexChannel.shouldShare;
|
|
|
|
public readonly requireCredential = MessagingIndexChannel.requireCredential;
|
|
|
|
|
|
|
|
constructor(
|
|
|
|
) {
|
|
|
|
}
|
|
|
|
|
|
|
|
public create(id: string, connection: Channel['connection']): MessagingIndexChannel {
|
|
|
|
return new MessagingIndexChannel(
|
|
|
|
id,
|
|
|
|
connection,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|