46 lines
1.1 KiB
Go
46 lines
1.1 KiB
Go
|
|
package mentions
|
||
|
|
|
||
|
|
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 SyncMentionsLogic struct {
|
||
|
|
logx.Logger
|
||
|
|
ctx context.Context
|
||
|
|
svcCtx *svc.ServiceContext
|
||
|
|
}
|
||
|
|
|
||
|
|
func NewSyncMentionsLogic(ctx context.Context, svcCtx *svc.ServiceContext) *SyncMentionsLogic {
|
||
|
|
return &SyncMentionsLogic{
|
||
|
|
Logger: logx.WithContext(ctx),
|
||
|
|
ctx: ctx,
|
||
|
|
svcCtx: svcCtx,
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
func (l *SyncMentionsLogic) SyncMentions(req *types.MentionSyncReq) (*types.MentionListData, 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")
|
||
|
|
}
|
||
|
|
list, err := l.svcCtx.Studio.SyncMentions(l.ctx, uid, req.AccountId)
|
||
|
|
if err != nil {
|
||
|
|
return nil, err
|
||
|
|
}
|
||
|
|
out := make([]types.MentionPublic, 0, len(list))
|
||
|
|
for _, m := range list {
|
||
|
|
out = append(out, types.MentionFromDomain(m))
|
||
|
|
}
|
||
|
|
return &types.MentionListData{List: out}, nil
|
||
|
|
}
|