44 lines
1.0 KiB
Go
44 lines
1.0 KiB
Go
package inspire
|
|
|
|
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 RefreshTrendsLogic struct {
|
|
logx.Logger
|
|
ctx context.Context
|
|
svcCtx *svc.ServiceContext
|
|
}
|
|
|
|
func NewRefreshTrendsLogic(ctx context.Context, svcCtx *svc.ServiceContext) *RefreshTrendsLogic {
|
|
return &RefreshTrendsLogic{Logger: logx.WithContext(ctx), ctx: ctx, svcCtx: svcCtx}
|
|
}
|
|
|
|
func (l *RefreshTrendsLogic) RefreshTrends() (*types.TrendListData, error) {
|
|
|
|
if l.svcCtx.Inspire == nil {
|
|
return nil, response.Biz(503, 503001, "inspire not configured")
|
|
}
|
|
uid, ok := middleware.UIDFrom(l.ctx)
|
|
if !ok {
|
|
return nil, response.Biz(401, 401001, "missing authorization")
|
|
}
|
|
list, err := l.svcCtx.Inspire.RefreshTrends(l.ctx, uid)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
out := make([]types.TrendPublic, 0, len(list))
|
|
for _, t := range list {
|
|
out = append(out, types.TrendFromDomain(t))
|
|
}
|
|
return &types.TrendListData{List: out}, nil
|
|
|
|
}
|