admin.go 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. package controllers
  2. import (
  3. "encoding/json"
  4. "hongze/hongze_mobile_admin/models/request/admin"
  5. admin3 "hongze/hongze_mobile_admin/models/response/admin"
  6. "hongze/hongze_mobile_admin/models/tables/h5_admin_session"
  7. "hongze/hongze_mobile_admin/services"
  8. "hongze/hongze_mobile_admin/utils"
  9. "time"
  10. )
  11. type AdminCommon struct {
  12. BaseAuth
  13. }
  14. // @Title 用户账号、密码登录接口
  15. // @Description 用户账号、密码登录接口
  16. // @Param request body admin.LoginReq true "type json string"
  17. // @Success 200 {object} admin.LoginResp
  18. // @router /login [post]
  19. func (this *AdminCommon) Login() {
  20. var req admin.LoginReq
  21. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  22. if err != nil {
  23. this.FailWithMessage("参数解析异常!", "参数解析失败,Err:"+err.Error())
  24. return
  25. }
  26. if req.Username == "" {
  27. this.FailWithMessage("请输入账号", "请输入账号")
  28. return
  29. }
  30. if req.Password == "" {
  31. this.FailWithMessage("请输入密码", "请输入密码")
  32. return
  33. }
  34. adminWx, err := services.BindWxUser(this.Session.OpenId, req.Username, req.Password, utils.WxPlatform)
  35. if err != nil {
  36. this.FailWithMessage("登录失败", "登录失败,Err:"+err.Error())
  37. return
  38. }
  39. err = h5_admin_session.UpdateSession(this.Session.SessionId, adminWx.AdminId, time.Now().AddDate(0, 0, 90))
  40. if err != nil {
  41. this.FailWithMessage("登录失败", "变更session信息失败,Err:"+err.Error())
  42. return
  43. }
  44. resp := admin3.LoginResp{
  45. RealName: adminWx.RealName,
  46. AdminName: adminWx.AdminName,
  47. RoleName: adminWx.RoleName,
  48. RoleTypeCode: adminWx.RoleTypeCode,
  49. }
  50. resp.AdminId = adminWx.AdminId
  51. var productName string
  52. productId := services.GetProductId(adminWx.RoleTypeCode)
  53. if productId == 1 {
  54. productName = utils.COMPANY_PRODUCT_FICC_NAME
  55. } else if productId == 2 {
  56. productName = utils.COMPANY_PRODUCT_RAI_NAME
  57. } else {
  58. productName = "admin"
  59. }
  60. resp.ProductName = productName
  61. resp.Authority = adminWx.Authority
  62. this.OkDetailed(resp, "登录成功")
  63. }