123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- package agent
- import (
- "context"
- "wechat-api/ent"
- "wechat-api/ent/agent"
- "wechat-api/hook/fastgpt"
- "wechat-api/internal/svc"
- "wechat-api/internal/types"
- "wechat-api/internal/utils/dberrorhandler"
- "github.com/suyuan32/simple-admin-common/msg/errormsg"
- "github.com/suyuan32/simple-admin-common/utils/pointy"
- "github.com/zeromicro/go-zero/core/logx"
- )
- type GetAgentByIdLogic struct {
- ctx context.Context
- svcCtx *svc.ServiceContext
- logx.Logger
- }
- func NewGetAgentByIdLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GetAgentByIdLogic {
- return &GetAgentByIdLogic{
- ctx: ctx,
- svcCtx: svcCtx,
- Logger: logx.WithContext(ctx),
- }
- }
- func (l *GetAgentByIdLogic) GetAgentById(req *types.IDReq) (*types.AgentInfoResp, error) {
- organizationId := l.ctx.Value("organizationId").(uint64)
- data, err := l.svcCtx.DB.Agent.Query().Where(agent.ID(req.Id), agent.OrganizationID(organizationId)).First(l.ctx)
- if err != nil && !ent.IsNotFound(err) {
- return nil, dberrorhandler.DefaultEntError(l.Logger, err, req)
- }
- var dataset types.DatasetInfo
- if data.DatasetID != "" {
- datasetResp, err := fastgpt.GetDatasetDetail(data.DatasetID)
- if err != nil {
- return nil, err
- }
- dataset.ID = &datasetResp.Data.ID
- dataset.ParentID = &datasetResp.Data.ParentID
- dataset.Name = &datasetResp.Data.Name
- dataset.TeamId = &datasetResp.Data.TeamID
- dataset.TmbId = &datasetResp.Data.TmbID
- dataset.Intro = &datasetResp.Data.Intro
- dataset.Type = &datasetResp.Data.Type
- dataset.Avatar = &datasetResp.Data.Avatar
- dataset.Status = &datasetResp.Data.Status
- }
- var collection types.CollectionInfo
- if data.CollectionID != "" {
- collectionResp, err := fastgpt.GetCollectionDetail(data.CollectionID)
- if err != nil {
- return nil, err
- }
- collection.ID = &collectionResp.Data.ID
- collection.ParentID = &collectionResp.Data.ParentID
- collection.TmbId = &collectionResp.Data.TmbID
- collection.Name = &collectionResp.Data.Name
- collection.Type = &collectionResp.Data.Type
- collection.SourceName = &collectionResp.Data.SourceName
- }
- return &types.AgentInfoResp{
- BaseDataInfo: types.BaseDataInfo{
- Code: 0,
- Msg: errormsg.Success,
- },
- Data: types.AgentInfo{
- BaseIDInfo: types.BaseIDInfo{
- Id: &data.ID,
- CreatedAt: pointy.GetPointer(data.CreatedAt.UnixMilli()),
- UpdatedAt: pointy.GetPointer(data.UpdatedAt.UnixMilli()),
- },
- Name: &data.Name,
- Role: &data.Role,
- Status: &data.Status,
- Background: &data.Background,
- Examples: &data.Examples,
- DatasetId: &data.DatasetID,
- Dataset: dataset,
- CollectionId: &data.CollectionID,
- Collection: collection,
- },
- }, nil
- }
|