Login.controller.ts 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. import { Controller, Post, Body, Param, Inject, Config } from '@midwayjs/core';
  2. import { LoginService } from '../../service/frame/Login.service';
  3. import { LoginType, LoginVO, UPwdDTO } from '../../frame/Options';
  4. import { JwtService } from '@midwayjs/jwt';
  5. import { LoginRecordService } from '../../service/frame/LoginRecord.service';
  6. import { RF } from '../../response/CustomerResponse';
  7. import { Validate } from '@midwayjs/validate';
  8. @Controller('/login')
  9. export class LoginController {
  10. @Inject()
  11. loginService: LoginService;
  12. @Inject()
  13. loginRecordService: LoginRecordService;
  14. @Config('jwt.secret')
  15. jwtSecret;
  16. @Inject()
  17. jwtService: JwtService;
  18. /**
  19. * 账密登录
  20. * @param data 用户名和密码
  21. * @param type 用户类型
  22. */
  23. @Post('/:type')
  24. async toLogin(@Body() data, @Param('type') type: string) {
  25. const user = await this.loginService.loginByAccount(data, LoginType[type]);
  26. if (user) user.role = type;
  27. let vo = new LoginVO(user);
  28. vo = JSON.parse(JSON.stringify(vo));
  29. // user数据写成
  30. const token = await this.jwtService.sign(vo, this.jwtSecret);
  31. // 创建/更新登录信息
  32. await this.loginRecordService.create(token);
  33. return RF.success(token);
  34. }
  35. /**
  36. * 修改密码
  37. * @param data 修改密码所需数据
  38. * @param type 账户类型
  39. */
  40. @Validate()
  41. @Post('/updatePwd/:type')
  42. async updatePwd(@Body() data: UPwdDTO, @Param('type') type: string) {
  43. await this.loginService.updatePwd(data, LoginType[type]);
  44. return RF.success()
  45. }
  46. /**
  47. * 重置密码
  48. * @param id 用户id
  49. * @param type 用户类型
  50. */
  51. @Post('/resetPwd/:type')
  52. async resetPwd(@Body('id') id: number, @Param('type') type: string) {
  53. // 随机密码,不需要写密码字段,函数内会给
  54. const data = new UPwdDTO();
  55. data.id = id;
  56. const password = await this.loginService.updatePwd(data, LoginType[type]);
  57. return RF.success(password);
  58. }
  59. }