fix: wecom user list
CI / admin (push) Has been skipped
CI / bff (push) Has been skipped
CI / chore (push) Has been skipped
CI / express (push) Has been skipped
CI / product (push) Has been skipped
CI / sale (push) Has been skipped
CI / user (push) Has been skipped
CI / wecom (push) Has been skipped
CI / changes (push) Successful in 12s
CI / ad (push) Successful in 0s

This commit is contained in:
zzw
2026-08-31 15:04:38 +08:00
parent b79d49d399
commit 9111cb26e7
11 changed files with 181 additions and 57 deletions
@@ -80,6 +80,12 @@ func (l *CreateUserLogic) CreateUser(in *wecom.CreateUserReq) (*wecom.Response,
}
}
agentsJSON, aErr := buildAgentsJSON(req.AgentIds)
if aErr != nil {
l.Errorf("wecom create agents: %v", aErr)
return outResponse(utils.ErrorParams, aErr.Error()), nil
}
now := utils.Now()
row := dao.WecomUser{
UserId: req.UserId,
@@ -89,6 +95,7 @@ func (l *CreateUserLogic) CreateUser(in *wecom.CreateUserReq) (*wecom.Response,
Mobile: encryptMobile,
Avatar: req.Avatar,
Status: userStatus,
AgentIds: agentsJSON,
CreatedAt: now,
UpdatedAt: now,
}
+82
View File
@@ -1,8 +1,15 @@
package logic
import (
"fmt"
"strconv"
"lone-services/pkg/modelbase"
"lone-services/pkg/utils"
"lone-services/services/wecom/internal/dao"
"lone-services/services/wecom/internal/model"
jsoniter "github.com/json-iterator/go"
)
func departmentID() int {
@@ -47,3 +54,78 @@ func resolveStatus(reqStatus uint32, current uint8) uint8 {
}
return dao.StatusEnabled
}
// buildAgentsJSON 按 agents 表主键 id 查出应用,落库为 [{id,agent_id,name}]
func buildAgentsJSON(ids []int64) (string, error) {
ids = cleanAgentIds(ids)
if len(ids) == 0 {
return "", fmt.Errorf("应用不能为空")
}
idStrs := make([]string, 0, len(ids))
for _, id := range ids {
idStrs = append(idStrs, strconv.FormatInt(id, utils.NumberTen))
}
var rows []dao.WecomAgent
am := model.AgentModel{}.Init()
if err := am.Items(modelbase.Params{
In: map[string][]string{"id in ?": idStrs},
}, &rows); err != nil {
return "", err
}
byID := make(map[int64]dao.WecomAgent, len(rows))
for _, row := range rows {
byID[row.Id] = row
}
items := make([]dao.UserAgentItem, 0, len(ids))
for _, id := range ids {
row, ok := byID[id]
if !ok {
return "", fmt.Errorf("应用不存在: %d", id)
}
items = append(items, dao.UserAgentItem{
Id: row.Id,
AgentId: row.AgentId,
Name: row.Name,
})
}
buf, err := jsoniter.Marshal(items)
if err != nil {
return "", err
}
return string(buf), nil
}
func parseAgents(raw string) []dao.UserAgentItem {
if raw == utils.StringEmpty {
return []dao.UserAgentItem{}
}
var items []dao.UserAgentItem
if err := jsoniter.Unmarshal([]byte(raw), &items); err != nil {
return []dao.UserAgentItem{}
}
if items == nil {
return []dao.UserAgentItem{}
}
return items
}
func cleanAgentIds(ids []int64) []int64 {
out := make([]int64, 0, len(ids))
seen := make(map[int64]struct{}, len(ids))
for _, id := range ids {
if id < utils.NumberOne {
continue
}
if _, ok := seen[id]; ok {
continue
}
seen[id] = struct{}{}
out = append(out, id)
}
return out
}
@@ -98,6 +98,7 @@ func (l *ItemsUsersLogic) ItemsUsers(in *wecom.ItemsUserReq) (*wecom.Response, e
Status: row.Status,
BizName: bizName,
WecomUserId: row.WecomUserId,
Agents: parseAgents(row.AgentIds),
CreatedAt: row.CreatedAt.Format(),
})
}
@@ -70,7 +70,7 @@ func (l *UpdateUserLogic) UpdateUser(in *wecom.UpdateUserReq) (*wecom.Response,
}
typeVal := row.Type
if req.Type > utils.NumberZero {
typeVal = row.Type
typeVal = uint8(req.Type)
}
userStatus := resolveStatus(req.Status, row.Status)
@@ -109,16 +109,25 @@ func (l *UpdateUserLogic) UpdateUser(in *wecom.UpdateUserReq) (*wecom.Response,
}
}
if _, err := m.Edit(modelbase.Params{
Eq: map[string]string{"id": strconv.FormatInt(row.Id, utils.NumberTen)},
}, map[string]interface{}{
data := map[string]interface{}{
"name": name,
"mobile": encryptMobile,
"avatar": avatar,
"status": userStatus,
"type": typeVal,
"updated_at": utils.Now(),
}); err != nil {
}
if len(req.AgentIds) > utils.NumberZero {
agentsJSON, aErr := buildAgentsJSON(req.AgentIds)
if aErr != nil {
l.Errorf("wecom update agents: %v", aErr)
return outResponse(utils.ErrorParams, aErr.Error()), nil
}
data["agent_ids"] = agentsJSON
}
if _, err := m.Edit(modelbase.Params{
Eq: map[string]string{"id": strconv.FormatInt(row.Id, utils.NumberTen)},
}, data); err != nil {
l.Errorf("wecom update user db: %v", err)
return failResponse(utils.Fail), nil
}