localhost_oa_based/src/modules/system/menu/menu.service.ts

246 lines
7.5 KiB
TypeScript
Raw Normal View History

2024-02-28 17:02:46 +08:00
import { InjectRedis } from '@liaoliaots/nestjs-redis';
import { Injectable } from '@nestjs/common';
import { InjectRepository } from '@nestjs/typeorm';
import Redis from 'ioredis';
import { concat, isEmpty, isNumber, uniq } from 'lodash';
2024-02-28 08:32:35 +08:00
2024-02-28 17:02:46 +08:00
import { In, IsNull, Like, Not, Repository } from 'typeorm';
2024-02-28 08:32:35 +08:00
2024-02-28 17:02:46 +08:00
import { BusinessException } from '~/common/exceptions/biz.exception';
import { RedisKeys } from '~/constants/cache.constant';
import { ErrorEnum } from '~/constants/error-code.constant';
import { genAuthPermKey, genAuthTokenKey } from '~/helper/genRedisKey';
import { SseService } from '~/modules/sse/sse.service';
import { MenuEntity } from '~/modules/system/menu/menu.entity';
2024-02-28 08:32:35 +08:00
2024-02-28 17:02:46 +08:00
import { deleteEmptyChildren, generatorMenu, generatorRouters } from '~/utils';
2024-02-28 08:32:35 +08:00
2024-02-28 17:02:46 +08:00
import { RoleService } from '../role/role.service';
2024-02-28 08:32:35 +08:00
2024-02-28 17:02:46 +08:00
import { MenuDto, MenuQueryDto, MenuUpdateDto } from './menu.dto';
2024-02-28 08:32:35 +08:00
@Injectable()
export class MenuService {
constructor(
@InjectRedis() private redis: Redis,
@InjectRepository(MenuEntity)
private menuRepository: Repository<MenuEntity>,
private roleService: RoleService,
2024-02-28 17:02:46 +08:00
private sseService: SseService
2024-02-28 08:32:35 +08:00
) {}
/**
*
*/
2024-02-28 17:02:46 +08:00
async list({ name, path, permission, component, status }: MenuQueryDto): Promise<MenuEntity[]> {
2024-02-28 08:32:35 +08:00
const menus = await this.menuRepository.find({
where: {
...(name && { name: Like(`%${name}%`) }),
...(path && { path: Like(`%${path}%`) }),
...(permission && { permission: Like(`%${permission}%`) }),
...(component && { component: Like(`%${component}%`) }),
2024-02-29 09:29:03 +08:00
...(isNumber(status) ? { status } : null)
2024-02-28 08:32:35 +08:00
},
2024-02-29 09:29:03 +08:00
order: { orderNo: 'ASC' }
2024-02-28 17:02:46 +08:00
});
const menuList = generatorMenu(menus);
2024-02-28 08:32:35 +08:00
if (!isEmpty(menuList)) {
2024-02-28 17:02:46 +08:00
deleteEmptyChildren(menuList);
return menuList;
2024-02-28 08:32:35 +08:00
}
// 如果生产树形结构为空,则返回原始菜单列表
2024-02-28 17:02:46 +08:00
return menus;
2024-02-28 08:32:35 +08:00
}
async create(menu: MenuDto): Promise<void> {
2024-02-28 17:02:46 +08:00
const result = await this.menuRepository.save(menu);
this.sseService.noticeClientToUpdateMenusByMenuIds([result.id]);
2024-02-28 08:32:35 +08:00
}
async update(id: number, menu: MenuUpdateDto): Promise<void> {
2024-02-28 17:02:46 +08:00
await this.menuRepository.update(id, menu);
this.sseService.noticeClientToUpdateMenusByMenuIds([id]);
2024-02-28 08:32:35 +08:00
}
/**
*
*/
async getMenus(uid: number): Promise<string[]> {
2024-02-28 17:02:46 +08:00
const roleIds = await this.roleService.getRoleIdsByUser(uid);
let menus: MenuEntity[] = [];
2024-02-28 08:32:35 +08:00
2024-02-28 17:02:46 +08:00
if (isEmpty(roleIds)) return generatorRouters([]);
2024-02-28 08:32:35 +08:00
if (this.roleService.hasAdminRole(roleIds)) {
2024-02-28 17:02:46 +08:00
menus = await this.menuRepository.find({ order: { orderNo: 'ASC' } });
} else {
2024-02-28 08:32:35 +08:00
menus = await this.menuRepository
.createQueryBuilder('menu')
.innerJoinAndSelect('menu.roles', 'role')
.andWhere('role.id IN (:...roleIds)', { roleIds })
.orderBy('menu.order_no', 'ASC')
2024-02-28 17:02:46 +08:00
.getMany();
2024-02-28 08:32:35 +08:00
}
2024-02-28 17:02:46 +08:00
const menuList = generatorRouters(menus);
return menuList;
2024-02-28 08:32:35 +08:00
}
/**
*
*/
async check(dto: Partial<MenuDto>): Promise<void | never> {
if (dto.type === 2 && !dto.parentId) {
// 无法直接创建权限必须有parent
2024-02-28 17:02:46 +08:00
throw new BusinessException(ErrorEnum.PERMISSION_REQUIRES_PARENT);
2024-02-28 08:32:35 +08:00
}
if (dto.type === 1 && dto.parentId) {
2024-02-28 17:02:46 +08:00
const parent = await this.getMenuItemInfo(dto.parentId);
if (isEmpty(parent)) throw new BusinessException(ErrorEnum.PARENT_MENU_NOT_FOUND);
2024-02-28 08:32:35 +08:00
if (parent && parent.type === 1) {
// 当前新增为菜单但父节点也为菜单时为非法操作
2024-02-28 17:02:46 +08:00
throw new BusinessException(ErrorEnum.ILLEGAL_OPERATION_DIRECTORY_PARENT);
2024-02-28 08:32:35 +08:00
}
}
}
/**
*
*/
async findChildMenus(mid: number): Promise<any> {
2024-02-28 17:02:46 +08:00
const allMenus: any = [];
const menus = await this.menuRepository.findBy({ parentId: mid });
2024-02-28 08:32:35 +08:00
// if (_.isEmpty(menus)) {
// return allMenus;
// }
// const childMenus: any = [];
for (const menu of menus) {
if (menu.type !== 2) {
// 子目录下是菜单或目录,继续往下级查找
2024-02-28 17:02:46 +08:00
const c = await this.findChildMenus(menu.id);
allMenus.push(c);
2024-02-28 08:32:35 +08:00
}
2024-02-28 17:02:46 +08:00
allMenus.push(menu.id);
2024-02-28 08:32:35 +08:00
}
2024-02-28 17:02:46 +08:00
return allMenus;
2024-02-28 08:32:35 +08:00
}
/**
*
* @param mid menu id
*/
async getMenuItemInfo(mid: number): Promise<MenuEntity> {
2024-02-28 17:02:46 +08:00
const menu = await this.menuRepository.findOneBy({ id: mid });
return menu;
2024-02-28 08:32:35 +08:00
}
/**
*
*/
async getMenuItemAndParentInfo(mid: number) {
2024-02-28 17:02:46 +08:00
const menu = await this.menuRepository.findOneBy({ id: mid });
let parentMenu: MenuEntity | undefined;
2024-02-28 08:32:35 +08:00
if (menu && menu.parentId)
2024-02-28 17:02:46 +08:00
parentMenu = await this.menuRepository.findOneBy({ id: menu.parentId });
2024-02-28 08:32:35 +08:00
2024-02-28 17:02:46 +08:00
return { menu, parentMenu };
2024-02-28 08:32:35 +08:00
}
/**
*
*/
async findRouterExist(path: string): Promise<boolean> {
2024-02-28 17:02:46 +08:00
const menus = await this.menuRepository.findOneBy({ path });
return !isEmpty(menus);
2024-02-28 08:32:35 +08:00
}
/**
*
*/
async getPermissions(uid: number): Promise<string[]> {
2024-02-28 17:02:46 +08:00
const roleIds = await this.roleService.getRoleIdsByUser(uid);
let permission: any[] = [];
let result: any = null;
2024-02-28 08:32:35 +08:00
if (this.roleService.hasAdminRole(roleIds)) {
result = await this.menuRepository.findBy({
permission: Not(IsNull()),
2024-02-29 09:29:03 +08:00
type: In([1, 2])
2024-02-28 17:02:46 +08:00
});
} else {
if (isEmpty(roleIds)) return permission;
2024-02-28 08:32:35 +08:00
result = await this.menuRepository
.createQueryBuilder('menu')
.innerJoinAndSelect('menu.roles', 'role')
.andWhere('role.id IN (:...roleIds)', { roleIds })
.andWhere('menu.type IN (1,2)')
.andWhere('menu.permission IS NOT NULL')
2024-02-28 17:02:46 +08:00
.getMany();
2024-02-28 08:32:35 +08:00
}
if (!isEmpty(result)) {
2024-02-28 17:02:46 +08:00
result.forEach(e => {
if (e.permission) permission = concat(permission, e.permission.split(','));
});
permission = uniq(permission);
2024-02-28 08:32:35 +08:00
}
2024-02-28 17:02:46 +08:00
return permission;
2024-02-28 08:32:35 +08:00
}
/**
*
*/
async deleteMenuItem(mids: number[]): Promise<void> {
2024-02-28 17:02:46 +08:00
await this.menuRepository.delete(mids);
2024-02-28 08:32:35 +08:00
}
/**
* ID的权限
*/
async refreshPerms(uid: number): Promise<void> {
2024-02-28 17:02:46 +08:00
const perms = await this.getPermissions(uid);
const online = await this.redis.get(genAuthTokenKey(uid));
2024-02-28 08:32:35 +08:00
if (online) {
// 判断是否在线
2024-02-28 17:02:46 +08:00
await this.redis.set(genAuthPermKey(uid), JSON.stringify(perms));
console.log('refreshPerms');
2024-02-28 08:32:35 +08:00
2024-02-28 17:02:46 +08:00
this.sseService.noticeClientToUpdateMenusByUserIds([uid]);
2024-02-28 08:32:35 +08:00
}
}
/**
* 线
*/
async refreshOnlineUserPerms(): Promise<void> {
2024-02-28 17:02:46 +08:00
const onlineUserIds: string[] = await this.redis.keys(genAuthTokenKey('*'));
2024-02-28 08:32:35 +08:00
if (onlineUserIds && onlineUserIds.length > 0) {
const promiseArr = onlineUserIds
.map(i => Number.parseInt(i.split(RedisKeys.AUTH_TOKEN_PREFIX)[1]))
.filter(i => i)
2024-02-28 17:02:46 +08:00
.map(async uid => {
const perms = await this.getPermissions(uid);
await this.redis.set(genAuthPermKey(uid), JSON.stringify(perms));
return uid;
});
const uids = await Promise.all(promiseArr);
console.log('refreshOnlineUserPerms');
this.sseService.noticeClientToUpdateMenusByUserIds(uids);
2024-02-28 08:32:35 +08:00
}
}
/**
* ID查找是否有关联角色
*/
async checkRoleByMenuId(id: number): Promise<boolean> {
return !!(await this.menuRepository.findOne({
where: {
roles: {
2024-02-29 09:29:03 +08:00
id
}
}
2024-02-28 17:02:46 +08:00
}));
2024-02-28 08:32:35 +08:00
}
}