oa_based/src/modules/sse/sse.service.ts

86 lines
2.1 KiB
TypeScript
Raw Normal View History

2024-02-28 17:02:46 +08:00
import { Injectable } from '@nestjs/common';
import { Subscriber } from 'rxjs';
import { In } from 'typeorm';
2024-02-28 08:32:35 +08:00
2024-02-28 17:02:46 +08:00
import { ROOT_ROLE_ID } from '~/constants/system.constant';
2024-02-28 08:32:35 +08:00
2024-02-28 17:02:46 +08:00
import { RoleEntity } from '~/modules/system/role/role.entity';
import { UserEntity } from '~/modules/user/user.entity';
2024-02-28 08:32:35 +08:00
export interface MessageEvent {
2024-02-28 17:02:46 +08:00
data?: string | object;
id?: string;
type?: 'ping' | 'close' | 'updatePermsAndMenus';
retry?: number;
2024-02-28 08:32:35 +08:00
}
2024-02-28 17:02:46 +08:00
const clientMap: Map<number, Subscriber<MessageEvent>> = new Map();
2024-02-28 08:32:35 +08:00
@Injectable()
export class SseService {
addClient(uid: number, subscriber: Subscriber<MessageEvent>) {
2024-02-28 17:02:46 +08:00
clientMap.set(uid, subscriber);
2024-02-28 08:32:35 +08:00
}
removeClient(uid: number): void {
2024-02-28 17:02:46 +08:00
const client = clientMap.get(uid);
client?.complete();
clientMap.delete(uid);
2024-02-28 08:32:35 +08:00
}
sendToClient(uid: number, data: MessageEvent): void {
2024-02-28 17:02:46 +08:00
const client = clientMap.get(uid);
client?.next?.(data);
2024-02-28 08:32:35 +08:00
}
sendToAll(data: MessageEvent): void {
2024-02-28 17:02:46 +08:00
clientMap.forEach(client => {
client.next(data);
});
2024-02-28 08:32:35 +08:00
}
/**
*
* @param uid
* @constructor
*/
async noticeClientToUpdateMenusByUserIds(uid: number | number[]) {
2024-02-28 17:02:46 +08:00
const userIds = [].concat(uid) as number[];
userIds.forEach(uid => {
this.sendToClient(uid, { type: 'updatePermsAndMenus' });
});
2024-02-28 08:32:35 +08:00
}
/**
* menuIds通知用户更新权限菜单
*/
async noticeClientToUpdateMenusByMenuIds(menuIds: number[]): Promise<void> {
const roleMenus = await RoleEntity.find({
where: {
menus: {
2024-02-29 09:29:03 +08:00
id: In(menuIds)
}
}
2024-02-28 17:02:46 +08:00
});
const roleIds = roleMenus.map(n => n.id).concat(ROOT_ROLE_ID);
await this.noticeClientToUpdateMenusByRoleIds(roleIds);
2024-02-28 08:32:35 +08:00
}
/**
* roleIds通知用户更新权限菜单
*/
async noticeClientToUpdateMenusByRoleIds(roleIds: number[]): Promise<void> {
const users = await UserEntity.find({
where: {
roles: {
2024-02-29 09:29:03 +08:00
id: In(roleIds)
}
}
2024-02-28 17:02:46 +08:00
});
2024-02-28 08:32:35 +08:00
if (users) {
2024-02-28 17:02:46 +08:00
const userIds = users.map(n => n.id);
await this.noticeClientToUpdateMenusByUserIds(userIds);
2024-02-28 08:32:35 +08:00
}
}
}