27 lines
702 B
Go
27 lines
702 B
Go
package common
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/perfect-panel/ppanel-server/internal/logic/common"
|
|
"github.com/perfect-panel/ppanel-server/internal/svc"
|
|
"github.com/perfect-panel/ppanel-server/internal/types"
|
|
"github.com/perfect-panel/ppanel-server/pkg/result"
|
|
)
|
|
|
|
// Get Ads
|
|
func GetAdsHandler(svcCtx *svc.ServiceContext) func(c *gin.Context) {
|
|
return func(c *gin.Context) {
|
|
var req types.GetAdsRequest
|
|
_ = c.ShouldBind(&req)
|
|
validateErr := svcCtx.Validate(&req)
|
|
if validateErr != nil {
|
|
result.ParamErrorResult(c, validateErr)
|
|
return
|
|
}
|
|
|
|
l := common.NewGetAdsLogic(c.Request.Context(), svcCtx)
|
|
resp, err := l.GetAds(&req)
|
|
result.HttpResult(c, resp, err)
|
|
}
|
|
}
|