42 lines
1.1 KiB
Go
42 lines
1.1 KiB
Go
|
|
package ownposts
|
||
|
|
|
||
|
|
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 SyncOwnPostsLogic struct {
|
||
|
|
logx.Logger
|
||
|
|
ctx context.Context
|
||
|
|
svcCtx *svc.ServiceContext
|
||
|
|
}
|
||
|
|
|
||
|
|
func NewSyncOwnPostsLogic(ctx context.Context, svcCtx *svc.ServiceContext) *SyncOwnPostsLogic {
|
||
|
|
return &SyncOwnPostsLogic{Logger: logx.WithContext(ctx), ctx: ctx, svcCtx: svcCtx}
|
||
|
|
}
|
||
|
|
|
||
|
|
func (l *SyncOwnPostsLogic) SyncOwnPosts(req *types.OwnPostSyncReq) (*types.OwnPostListData, 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.SyncOwnPosts(l.ctx, uid, req.AccountId)
|
||
|
|
if err != nil {
|
||
|
|
return nil, err
|
||
|
|
}
|
||
|
|
out := make([]types.OwnPostPublic, 0, len(list))
|
||
|
|
for _, p := range list {
|
||
|
|
out = append(out, types.OwnPostFromDomain(p))
|
||
|
|
}
|
||
|
|
return &types.OwnPostListData{List: out}, nil
|
||
|
|
}
|