get_agent_by_id_logic.go 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. package agent
  2. import (
  3. "context"
  4. "wechat-api/ent"
  5. "wechat-api/ent/agent"
  6. "wechat-api/hook/fastgpt"
  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/suyuan32/simple-admin-common/utils/pointy"
  12. "github.com/zeromicro/go-zero/core/logx"
  13. )
  14. type GetAgentByIdLogic struct {
  15. ctx context.Context
  16. svcCtx *svc.ServiceContext
  17. logx.Logger
  18. }
  19. func NewGetAgentByIdLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GetAgentByIdLogic {
  20. return &GetAgentByIdLogic{
  21. ctx: ctx,
  22. svcCtx: svcCtx,
  23. Logger: logx.WithContext(ctx),
  24. }
  25. }
  26. func (l *GetAgentByIdLogic) GetAgentById(req *types.IDReq) (*types.AgentInfoResp, error) {
  27. organizationId := l.ctx.Value("organizationId").(uint64)
  28. data, err := l.svcCtx.DB.Agent.Query().Where(agent.ID(req.Id), agent.OrganizationID(organizationId)).First(l.ctx)
  29. if err != nil && !ent.IsNotFound(err) {
  30. return nil, dberrorhandler.DefaultEntError(l.Logger, err, req)
  31. }
  32. var dataset types.DatasetInfo
  33. if data.DatasetID != "" {
  34. datasetResp, err := fastgpt.GetDatasetDetail(data.DatasetID)
  35. if err != nil {
  36. return nil, err
  37. }
  38. dataset.ID = &datasetResp.Data.ID
  39. dataset.ParentID = &datasetResp.Data.ParentID
  40. dataset.Name = &datasetResp.Data.Name
  41. dataset.TeamId = &datasetResp.Data.TeamID
  42. dataset.TmbId = &datasetResp.Data.TmbID
  43. dataset.Intro = &datasetResp.Data.Intro
  44. dataset.Type = &datasetResp.Data.Type
  45. dataset.Avatar = &datasetResp.Data.Avatar
  46. dataset.Status = &datasetResp.Data.Status
  47. }
  48. var collection types.CollectionInfo
  49. if data.CollectionID != "" {
  50. collectionResp, err := fastgpt.GetCollectionDetail(data.CollectionID)
  51. if err != nil {
  52. return nil, err
  53. }
  54. collection.ID = &collectionResp.Data.ID
  55. collection.ParentID = &collectionResp.Data.ParentID
  56. collection.TmbId = &collectionResp.Data.TmbID
  57. collection.Name = &collectionResp.Data.Name
  58. collection.Type = &collectionResp.Data.Type
  59. collection.SourceName = &collectionResp.Data.SourceName
  60. }
  61. return &types.AgentInfoResp{
  62. BaseDataInfo: types.BaseDataInfo{
  63. Code: 0,
  64. Msg: errormsg.Success,
  65. },
  66. Data: types.AgentInfo{
  67. BaseIDInfo: types.BaseIDInfo{
  68. Id: &data.ID,
  69. CreatedAt: pointy.GetPointer(data.CreatedAt.UnixMilli()),
  70. UpdatedAt: pointy.GetPointer(data.UpdatedAt.UnixMilli()),
  71. },
  72. Name: &data.Name,
  73. Role: &data.Role,
  74. Status: &data.Status,
  75. Background: &data.Background,
  76. Examples: &data.Examples,
  77. DatasetId: &data.DatasetID,
  78. Dataset: dataset,
  79. CollectionId: &data.CollectionID,
  80. Collection: collection,
  81. },
  82. }, nil
  83. }