Files
huangguo_server/app/api/officialWebsitectrl/hero.go
T
rootandClaude Opus 5 8679200f41 Initial commit
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-09-15 13:57:10 +08:00

45 lines
1.3 KiB
Go

package officialWebsitectrl
import (
"91porn-server/app/service/officialWebsiteser"
"91porn-server/common"
"91porn-server/common/cachev2"
"91porn-server/common/constant/redisconst"
"91porn-server/common/stderr"
"fmt"
"github.com/gin-gonic/gin"
)
func HeroList(ctx *gin.Context) {
req := &officialWebsiteser.HeroListReq{}
if err := ctx.ShouldBindQuery(req); err != nil {
common.ServeJSON(ctx, stderr.ErrParamError, err.Error())
return
}
var data officialWebsiteser.HeroListResp
_, err := cachev2.Classes().
CacheTime(redisconst.OfficialWebsiteHeroListCacheExpire).
AutoListKey(fmt.Sprintf(redisconst.OfficialWebsiteHeroListCacheKey, req.SortType, req.PageNumber, req.PageSize)).
ResBind(&data).Cache(officialWebsiteser.HeroList, req)
if err != nil {
common.ServeJSON(ctx, stderr.ErrDbQueryError, err.Error())
return
}
common.ServeJSON(ctx, stderr.Success, data)
}
func HeroDetail(ctx *gin.Context) {
req := &officialWebsiteser.HeroDetailReq{}
if err := ctx.ShouldBindUri(req); err != nil {
common.ServeJSON(ctx, stderr.ErrParamError, err.Error())
return
}
data, err := officialWebsiteser.HeroDetail(req)
if err != nil {
common.ServeJSON(ctx, stderr.ErrDbQueryError, err.Error())
return
}
common.ServeJSON(ctx, stderr.Success, data)
}