mirror of
https://gitee.com/blackfox/geekai.git
synced 2024-12-04 21:27:39 +08:00
60 lines
1.4 KiB
Go
60 lines
1.4 KiB
Go
package handler
|
|
|
|
import (
|
|
"chatplus/core"
|
|
"chatplus/core/types"
|
|
logger2 "chatplus/logger"
|
|
"chatplus/utils"
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
var logger = logger2.GetLogger()
|
|
|
|
type BaseHandler struct {
|
|
App *core.AppServer
|
|
}
|
|
|
|
func (h *BaseHandler) GetTrim(c *gin.Context, key string) string {
|
|
return strings.TrimSpace(c.Query(key))
|
|
}
|
|
|
|
func (h *BaseHandler) PostInt(c *gin.Context, key string, defaultValue int) int {
|
|
return utils.IntValue(c.PostForm(key), defaultValue)
|
|
}
|
|
|
|
func (h *BaseHandler) GetInt(c *gin.Context, key string, defaultValue int) int {
|
|
return utils.IntValue(c.Query(key), defaultValue)
|
|
}
|
|
|
|
func (h *BaseHandler) GetFloat(c *gin.Context, key string) float64 {
|
|
return utils.FloatValue(c.Query(key))
|
|
}
|
|
func (h *BaseHandler) PostFloat(c *gin.Context, key string) float64 {
|
|
return utils.FloatValue(c.PostForm(key))
|
|
}
|
|
|
|
func (h *BaseHandler) GetBool(c *gin.Context, key string) bool {
|
|
return utils.BoolValue(c.Query(key))
|
|
}
|
|
func (h *BaseHandler) PostBool(c *gin.Context, key string) bool {
|
|
return utils.BoolValue(c.PostForm(key))
|
|
}
|
|
func (h *BaseHandler) GetUserKey(c *gin.Context) string {
|
|
userId, ok := c.Get(types.LoginUserID)
|
|
if !ok {
|
|
return ""
|
|
}
|
|
return fmt.Sprintf("users/%v", userId)
|
|
}
|
|
|
|
func (h *BaseHandler) GetLoginUserId(c *gin.Context) uint {
|
|
userId, ok := c.Get(types.LoginUserID)
|
|
if !ok {
|
|
return 0
|
|
}
|
|
return uint(utils.IntValue(utils.InterfaceToString(userId), 0))
|
|
}
|