|
@@ -22,6 +22,7 @@ func Article(r *GinRouter) {
|
|
|
r.GET("/article/detail/:id", ArticleDetail)
|
|
|
r.POSTJWT("/article/update", UpdateArticle)
|
|
|
r.GET("/article/search", ArticleSearch)
|
|
|
+ r.POSTJWT("/article/top", ArticleTop)
|
|
|
|
|
|
}
|
|
|
|
|
@@ -60,7 +61,7 @@ func ArticleList(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
Size: size,
|
|
|
Query: query,
|
|
|
Project: ArticleProjects,
|
|
|
- Sort: bson.D{bson.E{Key: "sort", Value: 1}, bson.E{Key: "createTime", Value: -1}},
|
|
|
+ Sort: bson.D{bson.E{Key: "sort", Value: -1}, bson.E{Key: "createTime", Value: -1}},
|
|
|
})
|
|
|
}
|
|
|
|
|
@@ -131,10 +132,42 @@ func ArticleSearch(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
Size: size,
|
|
|
Query: query,
|
|
|
Project: ArticleProjects,
|
|
|
- Sort: bson.D{bson.E{Key: "sort", Value: 1}, bson.E{Key: "createTime", Value: -1}},
|
|
|
+ Sort: bson.D{bson.E{Key: "sort", Value: -1}, bson.E{Key: "createTime", Value: -1}},
|
|
|
})
|
|
|
if err != nil {
|
|
|
return nil, errors.New("查询字符不正确")
|
|
|
}
|
|
|
return result, err
|
|
|
}
|
|
|
+
|
|
|
+type ArticlTopReq struct {
|
|
|
+ Id primitive.ObjectID
|
|
|
+ Cid primitive.ObjectID
|
|
|
+}
|
|
|
+
|
|
|
+func ArticleTop(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
+ // id cid
|
|
|
+ var req ArticlTopReq
|
|
|
+ err := c.ShouldBindJSON(&req)
|
|
|
+ if err != nil {
|
|
|
+ return nil, errors.New("参数错误!")
|
|
|
+ }
|
|
|
+
|
|
|
+ // 查询该分类排列最前面一条的sort
|
|
|
+ article := model.Article{}
|
|
|
+ ok, err := repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
|
|
|
+ CollectName: repo.CollectionArticle,
|
|
|
+ Query: repo.Map{"cid": req.Cid},
|
|
|
+ Project: []string{"sort"},
|
|
|
+ Sort: bson.M{"sort": -1},
|
|
|
+ }, &article)
|
|
|
+ if err != nil {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ sort := 0
|
|
|
+ if ok {
|
|
|
+ sort = *article.Sort
|
|
|
+ }
|
|
|
+ sort++
|
|
|
+ return repo.RepoUpdateSetDoc(apictx.CreateRepoCtx(), repo.CollectionArticle, req.Id.Hex(), &model.Article{Sort: &sort})
|
|
|
+}
|