mirror of https://github.com/rocboss/paopao-ce
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.2 KiB
64 lines
1.2 KiB
// Copyright 2022 ROC. All rights reserved.
|
|
// Use of this source code is governed by a MIT style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package web
|
|
|
|
import (
|
|
"github.com/alimy/mir/v4"
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/rocboss/paopao-ce/internal/core/ms"
|
|
"github.com/rocboss/paopao-ce/internal/servants/base"
|
|
"github.com/rocboss/paopao-ce/pkg/app"
|
|
"github.com/rocboss/paopao-ce/pkg/xerror"
|
|
)
|
|
|
|
var (
|
|
bindAny = base.NewBindAnyFn()
|
|
)
|
|
|
|
type BaseInfo struct {
|
|
User *ms.User
|
|
}
|
|
|
|
type SimpleInfo struct {
|
|
Uid int64
|
|
}
|
|
|
|
type BasePageReq struct {
|
|
UserId int64
|
|
Page int
|
|
PageSize int
|
|
}
|
|
|
|
func (b *BaseInfo) SetUser(user *ms.User) {
|
|
b.User = user
|
|
}
|
|
|
|
func (s *SimpleInfo) SetUserId(id int64) {
|
|
s.Uid = id
|
|
}
|
|
|
|
func BasePageReqFrom(c *gin.Context) (*BasePageReq, mir.Error) {
|
|
uid, ok := base.UserIdFrom(c)
|
|
if !ok {
|
|
return nil, xerror.UnauthorizedTokenError
|
|
}
|
|
page, pageSize := app.GetPageInfo(c)
|
|
return &BasePageReq{
|
|
UserId: uid,
|
|
Page: page,
|
|
PageSize: pageSize,
|
|
}, nil
|
|
}
|
|
|
|
func (r *BasePageReq) Bind(c *gin.Context) mir.Error {
|
|
uid, ok := base.UserIdFrom(c)
|
|
if !ok {
|
|
return xerror.UnauthorizedTokenError
|
|
}
|
|
r.UserId = uid
|
|
r.Page, r.PageSize = app.GetPageInfo(c)
|
|
return nil
|
|
}
|