38 lines
952 B
Go
38 lines
952 B
Go
|
|
package usage
|
||
|
|
|
||
|
|
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 GetUsagePrefsLogic struct {
|
||
|
|
logx.Logger
|
||
|
|
ctx context.Context
|
||
|
|
svcCtx *svc.ServiceContext
|
||
|
|
}
|
||
|
|
|
||
|
|
func NewGetUsagePrefsLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GetUsagePrefsLogic {
|
||
|
|
return &GetUsagePrefsLogic{Logger: logx.WithContext(ctx), ctx: ctx, svcCtx: svcCtx}
|
||
|
|
}
|
||
|
|
|
||
|
|
func (l *GetUsagePrefsLogic) GetUsagePrefs() (*types.UsagePrefsData, error) {
|
||
|
|
if l.svcCtx.Usage == nil {
|
||
|
|
return nil, response.Biz(503, 503001, "usage not configured")
|
||
|
|
}
|
||
|
|
uid, ok := middleware.UIDFrom(l.ctx)
|
||
|
|
if !ok {
|
||
|
|
return nil, response.Biz(401, 401001, "missing authorization")
|
||
|
|
}
|
||
|
|
p, err := l.svcCtx.Usage.GetPrefs(l.ctx, uid)
|
||
|
|
if err != nil {
|
||
|
|
return nil, err
|
||
|
|
}
|
||
|
|
return &types.UsagePrefsData{PlanId: p.PlanID, Unlimited: p.Unlimited}, nil
|
||
|
|
}
|