|
@@ -5,6 +5,7 @@ import (
|
|
|
"baishuihu/db/repo"
|
|
|
"baishuihu/log"
|
|
|
"errors"
|
|
|
+ "strings"
|
|
|
"time"
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
|
@@ -18,10 +19,14 @@ func Banner(r *GinRouter) {
|
|
|
r.GET("/banner/list", BannerList)
|
|
|
r.GET("/banner/detail/:id", BannerDetail)
|
|
|
r.POSTJWT("/banner/update", UpdateBanner)
|
|
|
-
|
|
|
}
|
|
|
|
|
|
func CreateBanner(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
+ collection := repo.CollectionBanner
|
|
|
+ if strings.Contains(c.Request.URL.Path, "/nav") {
|
|
|
+ collection = repo.CollectionNav
|
|
|
+ }
|
|
|
+
|
|
|
var banner model.Banner
|
|
|
err := c.ShouldBindJSON(&banner)
|
|
|
if err != nil {
|
|
@@ -30,22 +35,31 @@ func CreateBanner(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
}
|
|
|
banner.CreateTime = time.Now()
|
|
|
banner.UpdateTime = time.Now()
|
|
|
- return repo.RepoAddDoc(apictx.CreateRepoCtx(), repo.CollectionBanner, &banner)
|
|
|
+ return repo.RepoAddDoc(apictx.CreateRepoCtx(), collection, &banner)
|
|
|
}
|
|
|
|
|
|
func DeleteBanner(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
+ collection := repo.CollectionBanner
|
|
|
+ if strings.Contains(c.Request.URL.Path, "/nav") {
|
|
|
+ collection = repo.CollectionNav
|
|
|
+ }
|
|
|
_id := c.Param("id")
|
|
|
id, _ := primitive.ObjectIDFromHex(_id)
|
|
|
if id.IsZero() {
|
|
|
return nil, errors.New("id错误")
|
|
|
}
|
|
|
- return repo.RepoDeleteDoc(apictx.CreateRepoCtx(), repo.CollectionBanner, _id)
|
|
|
+ return repo.RepoDeleteDoc(apictx.CreateRepoCtx(), collection, _id)
|
|
|
}
|
|
|
|
|
|
func BannerList(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
+ collection := repo.CollectionBanner
|
|
|
+ if strings.Contains(c.Request.URL.Path, "/nav") {
|
|
|
+ collection = repo.CollectionNav
|
|
|
+ }
|
|
|
+
|
|
|
page, size, query := UtilQueryPageSize(c)
|
|
|
return repo.RepoPageSearch(apictx.CreateRepoCtx(), &repo.PageSearchOptions{
|
|
|
- CollectName: repo.CollectionBanner,
|
|
|
+ CollectName: collection,
|
|
|
Page: page,
|
|
|
Size: size,
|
|
|
Query: query,
|
|
@@ -54,6 +68,10 @@ func BannerList(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
}
|
|
|
|
|
|
func BannerDetail(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
+ collection := repo.CollectionBanner
|
|
|
+ if strings.Contains(c.Request.URL.Path, "/nav") {
|
|
|
+ collection = repo.CollectionNav
|
|
|
+ }
|
|
|
_id := c.Param("id")
|
|
|
id, _ := primitive.ObjectIDFromHex(_id)
|
|
|
if id.IsZero() {
|
|
@@ -61,7 +79,7 @@ func BannerDetail(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
}
|
|
|
cate := &model.Banner{}
|
|
|
found, err := repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
|
|
|
- CollectName: repo.CollectionBanner,
|
|
|
+ CollectName: collection,
|
|
|
Query: repo.Map{"_id": id},
|
|
|
}, cate)
|
|
|
if err != nil {
|
|
@@ -76,6 +94,10 @@ func BannerDetail(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
}
|
|
|
|
|
|
func UpdateBanner(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
+ collection := repo.CollectionBanner
|
|
|
+ if strings.Contains(c.Request.URL.Path, "/nav") {
|
|
|
+ collection = repo.CollectionNav
|
|
|
+ }
|
|
|
var cate model.Banner
|
|
|
err := c.ShouldBindJSON(&cate)
|
|
|
if err != nil {
|
|
@@ -85,5 +107,5 @@ func UpdateBanner(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
if cate.Id.IsZero() {
|
|
|
return nil, errors.New("id错误")
|
|
|
}
|
|
|
- return repo.RepoUpdateSetDoc(apictx.CreateRepoCtx(), repo.CollectionBanner, cate.Id.Hex(), &cate)
|
|
|
+ return repo.RepoUpdateSetDoc(apictx.CreateRepoCtx(), collection, cate.Id.Hex(), &cate)
|
|
|
}
|