admin.service.ts 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. import { BaseService } from '../../frame/BaseService';
  2. import { Provide } from '@midwayjs/core';
  3. import { get } from 'lodash';
  4. import { ServiceError } from '../../error/CustomerError.error';
  5. import { ErrorCode } from '../../error/Codes';
  6. import { InjectEntityModel } from '@midwayjs/typeorm';
  7. import { Repository } from 'typeorm';
  8. import { Admin } from '../../entity/system/admin.entity';
  9. @Provide()
  10. export class AdminService extends BaseService {
  11. @InjectEntityModel(Admin)
  12. model: Repository<Admin>;
  13. /**查重 */
  14. async checkInDB(data: object) {
  15. // account查重,虽然数据库有unique约束,但是尽量不触发,因为异常捕获不好解析
  16. const account = get(data, 'account');
  17. const num = await this.model.count({ where: { account } });
  18. if (num > 0) throw new ServiceError(ErrorCode.ACCOUNT_IS_EXISTS);
  19. }
  20. async initSuperAdmin() {
  21. const data = {
  22. account: 'admin',
  23. password: '1qaz2wsx',
  24. nick_name: '系统管理员',
  25. is_super: '0',
  26. };
  27. const is_exist = await this.model.count({ where: { is_super: '0' } });
  28. if (!is_exist) return await this.model.insert(data);
  29. return;
  30. }
  31. }