39 lines
949 B
Go
39 lines
949 B
Go
package personas
|
|
|
|
import (
|
|
"context"
|
|
|
|
"apps/backend/internal/middleware"
|
|
"apps/backend/internal/response"
|
|
"apps/backend/internal/svc"
|
|
"apps/backend/internal/types"
|
|
|
|
"github.com/zeromicro/go-zero/core/logx"
|
|
)
|
|
|
|
type GetPersonaLogic struct {
|
|
logx.Logger
|
|
ctx context.Context
|
|
svcCtx *svc.ServiceContext
|
|
}
|
|
|
|
func NewGetPersonaLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GetPersonaLogic {
|
|
return &GetPersonaLogic{Logger: logx.WithContext(ctx), ctx: ctx, svcCtx: svcCtx}
|
|
}
|
|
|
|
func (l *GetPersonaLogic) GetPersona(req *types.PersonaIdPath) (*types.PersonaPublic, error) {
|
|
if l.svcCtx.Studio == nil {
|
|
return nil, response.Biz(503, 503001, "studio not configured")
|
|
}
|
|
uid, ok := middleware.UIDFrom(l.ctx)
|
|
if !ok {
|
|
return nil, response.Biz(401, 401001, "missing authorization")
|
|
}
|
|
p, err := l.svcCtx.Studio.GetPersona(l.ctx, uid, req.Id)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
out := types.PersonaFromDomain(p)
|
|
return &out, nil
|
|
}
|