209 похожих чатов

Import { Logger, UseGuards } from '@nestjs/common'; import { ApiSecurity }

from '@nestjs/swagger';
import { OnGatewayConnection, SubscribeMessage, WebSocketGateway, WsResponse } from '@nestjs/websockets';
import { filter, map, Observable } from 'rxjs';
import { DEVICE_TOKEN_HEADER } from 'src/common/constant';
import { MessagingNotificationEventsEnum } from 'src/messaging/messaging-types/messaging-notification-events.enum';
import { Roles } from 'src/role/role.decorator';
import { RoleGuard } from 'src/role/role.guard';
import { Role } from 'src/role/role.type';
import { CurrentPlayer, CurrentPlayerType } from '../../../auth/auth-decorators/current-player.decorator';
import { NotificationEventDto, NotificationEventType } from '../../messaging-types/notification.dto';
import { MessagingNotificationEventsEventsService } from '../messaging-notification-events-services/messaging-notification-events-events.service';

@WebSocketGateway({
cors: {
origin: '*',
},
path: '/ws/messaging-notifications',
})
export class MessagingNotificationEventsGateway implements OnGatewayConnection {
private readonly logger = new Logger(MessagingNotificationEventsGateway.name);

constructor(private readonly messagingNotificationEventsEventsService: MessagingNotificationEventsEventsService) {}

// eslint-disable-next-line @typescript-eslint/no-explicit-any
handleConnection(client: any, ...args: any[]) {
client.headers = args[0].headers;
}

@ApiSecurity(DEVICE_TOKEN_HEADER)
@UseGuards(RoleGuard)
@Roles(Role.TEST, Role.USER)
@SubscribeMessage(MessagingNotificationEventsEnum.MessagingNotificationEventsStream)
onMessagingNotificationEventsStream(
@CurrentPlayer() player: CurrentPlayerType
): Observable<WsResponse<NotificationEventDto>> {
this.logger.debug(`onMessagingNotificationEventsStream: ${player.id}`);
return this.messagingNotificationEventsEventsService.listenMessagingNotificationEventsStream().pipe(
filter((event) => {
if (
event.type === NotificationEventType.UpdatedNotification &&
!!event.notification?.playerNotificationList.find((v) => v.playerId === player.id)
) {
return true;
}
if (event.type === NotificationEventType.DeletedPlayerNotification && event.playerId === player.id) {
return true;
}
if (event.type === NotificationEventType.DeletedNotification && event.playerId === player.id) {
return true;
}
return false;
}),
map((data) => ({ event: MessagingNotificationEventsEnum.MessagingNotificationEventsStream, data }))
);
}
}

4 ответов

32 просмотра

Тоесть когда в сервис прилетают данные, то сработает эта штука, я правильно же понимаю?

Стоп, это же прослушиваем событие какое-то и проверяем что там за тайп, потмо не понятные махинации в сервисе, и дальше что? Если мне нужно только емитить события, чет я слишком тупой до этого

IL'shat-Khamitov Автор вопроса
Vincent 🐲 Adler 🇺🇦
Стоп, это же прослушиваем событие какое-то и прове...

народ копит подключения сокетные и птом по этим подключениям ходит и пуляет события, а тут проще, шлем событие в поток, поток при выдаче фильтруется по юзер ид, и не нужно копить людей и по ним ходить

IL'shat Khamitov
народ копит подключения сокетные и птом по этим по...

У меня подключение сокетное одно, других не будет. Максимум ещё одно-два. А вот емитить события я бы хотел с других мест

Похожие вопросы

Обсуждают сегодня

@Benzenoid can you tell me the easiest, and safest way to bu.y HEX now?
Živa Žena
20
This is a question from my wife who make a fortune with memes 😂😂 About the Migration and Tokens: 1. How will the old tokens be migrated to the new $LGCYX network? What is th...
🍿 °anton°
2
What is the Dex situation? Agora team started with the Pnetwork for their dex which helped them both with integration. It’s completed but as you can see from the Pnetwork ann...
Ben
1
Anyone knows where there are some instructions or discort about failed bridge transactions ?
Jochem
21
@lozuk how do I get my phex copies of my ehex from a atomic wallet, to move to my rabby?
Justfrontin 👀
11
Hello, Is iExec also part of the "inception program" or another one ? Would it be a name to qualified the nature of the relationship between iExec and Nvidia? And does Secret ...
Ñïķøłäś
8
Ready for some fun AND a chance to win TKO Tokens? Join us for exciting minigames in our Telegram group! 🕒 Don’t miss out—games start on today 25 October 2024, at 8 PM! Ge...
Milkyway | Tokocrypto
255
any reference of this implementation?
BitBuddha
29
Also, why can’t the community have a vote/ say when it comes to initiatives like buybacks. Isn’t the point of crypto decentralisation? Don’t we deserve input as long term supp...
👨🏽‍🦰
13
Hi guys, any problem with Pulsebrige? Trying to transfer from wETH to ETH. First it tells me to connect my metamask "through mobile app" not desktop. Then I did and confirmed ...
Snowflakecrypto
13
Карта сайта