get_wx_list_logic.go 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. package Wx
  2. import (
  3. "context"
  4. "github.com/suyuan32/simple-admin-core/rpc/types/core"
  5. "wechat-api/ent"
  6. "wechat-api/ent/predicate"
  7. "wechat-api/ent/wx"
  8. "wechat-api/hook"
  9. "wechat-api/internal/svc"
  10. "wechat-api/internal/types"
  11. "wechat-api/internal/utils/dberrorhandler"
  12. "github.com/suyuan32/simple-admin-common/msg/errormsg"
  13. "github.com/suyuan32/simple-admin-common/utils/pointy"
  14. "github.com/zeromicro/go-zero/core/logx"
  15. )
  16. type GetWxListLogic struct {
  17. ctx context.Context
  18. svcCtx *svc.ServiceContext
  19. logx.Logger
  20. }
  21. func NewGetWxListLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GetWxListLogic {
  22. return &GetWxListLogic{
  23. ctx: ctx,
  24. svcCtx: svcCtx,
  25. Logger: logx.WithContext(ctx),
  26. }
  27. }
  28. func (l *GetWxListLogic) GetWxList(req *types.WxListReq) (*types.WxListResp, error) {
  29. organizationId := l.ctx.Value("organizationId").(uint64)
  30. isAdmin := l.ctx.Value("isAdmin").(bool)
  31. servers, err := l.svcCtx.DB.Server.Query().All(l.ctx)
  32. serverSet := make(map[uint64]*ent.Server, len(servers))
  33. for _, s := range servers {
  34. serverSet[s.ID] = s
  35. }
  36. var predicates []predicate.Wx
  37. if !isAdmin {
  38. predicates = append(predicates, wx.OrganizationIDEQ(organizationId))
  39. } else {
  40. if req.OrganizationId != nil {
  41. predicates = append(predicates, wx.OrganizationIDEQ(*req.OrganizationId))
  42. }
  43. if req.OrganizationName != nil {
  44. departmentList, _ := l.svcCtx.CoreRpc.GetDepartmentList(l.ctx, &core.DepartmentListReq{Name: req.OrganizationName})
  45. organizationIds := make([]uint64, 0)
  46. for _, department := range departmentList.Data {
  47. organizationIds = append(organizationIds, *department.Id)
  48. }
  49. predicates = append(predicates, wx.OrganizationIDIn(organizationIds...))
  50. }
  51. }
  52. if req.ServerId != nil {
  53. predicates = append(predicates, wx.ServerIDEQ(*req.ServerId))
  54. }
  55. if req.Port != nil {
  56. predicates = append(predicates, wx.PortContains(*req.Port))
  57. }
  58. if req.ProcessId != nil {
  59. predicates = append(predicates, wx.ProcessIDContains(*req.ProcessId))
  60. }
  61. if req.Callback != nil {
  62. predicates = append(predicates, wx.CallbackContains(*req.Callback))
  63. }
  64. data, err := l.svcCtx.DB.Wx.Query().Where(predicates...).Order(ent.Desc(wx.FieldOrganizationID)).WithAgent().WithServer().Page(l.ctx, req.Page, req.PageSize)
  65. if err != nil {
  66. return nil, dberrorhandler.DefaultEntError(l.Logger, err, req)
  67. }
  68. resp := &types.WxListResp{}
  69. resp.Msg = errormsg.Success
  70. resp.Data.Total = data.PageDetails.Total
  71. for _, v := range data.List {
  72. // 创建 hookClient 客户端
  73. serverInfo := serverSet[v.ServerID]
  74. hookClient := hook.NewHook(serverInfo.PrivateIP, serverInfo.AdminPort, v.Port)
  75. // 获取登录状态
  76. loginInfo, err := hookClient.IsLoginStatus()
  77. var loginStatus uint8 = 0
  78. if err != nil {
  79. l.Error("退出登录失败", err)
  80. } else {
  81. if loginInfo.Onlinestatus == "3" {
  82. loginStatus = 1
  83. }
  84. }
  85. processID := v.ProcessID
  86. wxid := v.Wxid
  87. account := v.Account
  88. nickname := v.Nickname
  89. tel := v.Tel
  90. headBig := v.HeadBig
  91. departmentInfo, err := l.svcCtx.CoreRpc.GetDepartmentById(l.ctx, &core.IDReq{Id: v.OrganizationID})
  92. if err != nil {
  93. l.Error("获取部门信息失败", err)
  94. }
  95. if loginStatus == 1 {
  96. // 如果处于登录状态,获取登录信息
  97. wxInfo, _ := hookClient.GetSelfLoginInfo()
  98. if err != nil {
  99. l.Error("获取登录信息失败", err)
  100. } else {
  101. processID = wxInfo.ProcessID
  102. wxid = wxInfo.Wxid
  103. account = wxInfo.Account
  104. nickname = wxInfo.Nickname
  105. tel = wxInfo.Tel
  106. headBig = wxInfo.HeadBig
  107. _ = l.svcCtx.DB.Wx.UpdateOneID(v.ID).
  108. SetNotNilStatus(&loginStatus).
  109. SetNotNilProcessID(&wxInfo.ProcessID).
  110. SetNotNilWxid(&wxInfo.Wxid).
  111. SetNotNilAccount(&wxInfo.Account).
  112. SetNotNilNickname(&wxInfo.Nickname).
  113. SetNotNilTel(&wxInfo.Tel).
  114. SetNotNilHeadBig(&wxInfo.HeadBig).
  115. Exec(l.ctx)
  116. }
  117. } else {
  118. if loginStatus != v.Status {
  119. _ = l.svcCtx.DB.Wx.UpdateOneID(v.ID).
  120. SetNotNilStatus(&loginStatus).
  121. Exec(l.ctx)
  122. }
  123. }
  124. var agent types.AgentInfo
  125. if v.Edges.Agent != nil {
  126. agent = types.AgentInfo{
  127. BaseIDInfo: types.BaseIDInfo{
  128. Id: &v.AgentID,
  129. CreatedAt: pointy.GetPointer(v.Edges.Agent.CreatedAt.UnixMilli()),
  130. UpdatedAt: pointy.GetPointer(v.Edges.Agent.UpdatedAt.UnixMilli()),
  131. },
  132. Name: &v.Edges.Agent.Name,
  133. Role: &v.Edges.Agent.Role,
  134. Status: &v.Edges.Agent.Status,
  135. Background: &v.Edges.Agent.Background,
  136. Examples: &v.Edges.Agent.Examples,
  137. }
  138. }
  139. resp.Data.Data = append(resp.Data.Data,
  140. types.WxInfo{
  141. BaseIDInfo: types.BaseIDInfo{
  142. Id: &v.ID,
  143. CreatedAt: pointy.GetPointer(v.CreatedAt.UnixMilli()),
  144. UpdatedAt: pointy.GetPointer(v.UpdatedAt.UnixMilli()),
  145. },
  146. Status: &loginStatus,
  147. ServerId: &v.ServerID,
  148. ServerName: &serverInfo.Name,
  149. Port: &v.Port,
  150. ProcessId: &processID,
  151. Callback: &v.Callback,
  152. Wxid: &wxid,
  153. Account: &account,
  154. Nickname: &nickname,
  155. Tel: &tel,
  156. HeadBig: &headBig,
  157. OrganizationId: &v.OrganizationID,
  158. OrganizationName: departmentInfo.Name,
  159. AgentId: &v.AgentID,
  160. AgentInfo: &agent,
  161. ApiBase: &v.APIBase,
  162. ApiKey: &v.APIKey,
  163. })
  164. }
  165. return resp, nil
  166. }