update_agent_logic.go 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. package agent
  2. import (
  3. "context"
  4. "errors"
  5. "wechat-api/ent"
  6. "wechat-api/ent/agent"
  7. "wechat-api/internal/svc"
  8. "wechat-api/internal/types"
  9. "wechat-api/internal/utils/dberrorhandler"
  10. "github.com/suyuan32/simple-admin-common/msg/errormsg"
  11. "github.com/zeromicro/go-zero/core/logx"
  12. )
  13. type UpdateAgentLogic struct {
  14. ctx context.Context
  15. svcCtx *svc.ServiceContext
  16. logx.Logger
  17. }
  18. func NewUpdateAgentLogic(ctx context.Context, svcCtx *svc.ServiceContext) *UpdateAgentLogic {
  19. return &UpdateAgentLogic{
  20. ctx: ctx,
  21. svcCtx: svcCtx,
  22. Logger: logx.WithContext(ctx),
  23. }
  24. }
  25. func (l *UpdateAgentLogic) UpdateAgent(req *types.AgentInfo) (*types.BaseMsgResp, error) {
  26. organizationId := l.ctx.Value("organizationId").(uint64)
  27. if *req.Id <= 0 {
  28. l.Error("记录ID不存在")
  29. return nil, errors.New("记录ID不存在")
  30. }
  31. _, err := l.svcCtx.DB.Agent.Query().Where(agent.ID(*req.Id), agent.OrganizationID(organizationId)).First(l.ctx)
  32. if err != nil && ent.IsNotFound(err) {
  33. return nil, errors.New("记录不存在")
  34. }
  35. err = l.svcCtx.DB.Agent.UpdateOneID(*req.Id).
  36. SetNotNilName(req.Name).
  37. SetNotNilRole(req.Role).
  38. SetNotNilStatus(req.Status).
  39. SetNotNilBackground(req.Background).
  40. SetNotNilExamples(req.Examples).
  41. Exec(l.ctx)
  42. if err != nil {
  43. return nil, dberrorhandler.DefaultEntError(l.Logger, err, req)
  44. }
  45. return &types.BaseMsgResp{Msg: errormsg.UpdateSuccess}, nil
  46. }