30 lines
849 B
Go
30 lines
849 B
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"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func PartnerList(ctx *gin.Context) {
|
|
req := &officialWebsiteser.PartnerListReq{}
|
|
if err := ctx.ShouldBindQuery(req); err != nil {
|
|
common.ServeJSON(ctx, stderr.ErrParamError, err.Error())
|
|
return
|
|
}
|
|
var data officialWebsiteser.PartnerListResp
|
|
_, err := cachev2.Classes().
|
|
CacheTime(redisconst.OfficialWebsitePartnerListCacheExpire).
|
|
AutoListKey(redisconst.OfficialWebsitePartnerListCacheKey).
|
|
ResBind(&data).Cache(officialWebsiteser.PartnerList, req)
|
|
if err != nil {
|
|
common.ServeJSON(ctx, stderr.ErrDbQueryError, err.Error())
|
|
return
|
|
}
|
|
common.ServeJSON(ctx, stderr.Success, data)
|
|
}
|