本文整理汇总了Golang中github.com/varding/wetalk/modules/models.Post.IsBest方法的典型用法代码示例。如果您正苦于以下问题:Golang Post.IsBest方法的具体用法?Golang Post.IsBest怎么用?Golang Post.IsBest使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/varding/wetalk/modules/models.Post
的用法示例。
在下文中一共展示了Post.IsBest方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: Post
func (this *ApiRouter) Post() {
if this.CheckActiveRedirect() {
return
}
if this.IsAjax() {
result := map[string]interface{}{
"success": false,
}
action := this.GetString("action")
switch action {
case "toggle-best":
if !this.User.IsAdmin {
result["success"] = false
} else {
if postId, err := this.GetInt("post"); err == nil {
//set post best
var post models.Post
if err := orm.NewOrm().QueryTable("post").Filter("Id", postId).One(&post); err == nil {
post.IsBest = !post.IsBest
if post.Update("IsBest") == nil {
result["success"] = true
}
}
}
}
case "toggle-fav":
if postId, err := this.GetInt("post"); err == nil {
var post models.Post
if err := orm.NewOrm().QueryTable("post").Filter("Id", postId).One(&post); err == nil {
if post.Id != 0 {
var favoritePost models.FavoritePost
if this.User.FavoritePosts().Filter("Post__id", post.Id).One(&favoritePost); err == nil {
if favoritePost.Id > 0 {
//toogle IsFav
favoritePost.IsFav = !favoritePost.IsFav
if favoritePost.Update("IsFav") == nil {
//update user fav post count
if favoritePost.IsFav {
this.User.FavPosts += 1
} else {
this.User.FavPosts -= 1
}
if this.User.Update("FavPosts") == nil {
result["success"] = true
}
}
} else {
favoritePost = models.FavoritePost{
User: &this.User,
Post: &post,
IsFav: true,
}
if favoritePost.Insert() == nil {
//update user fav post count
this.User.FavPosts += 1
if this.User.Update("FavPosts") == nil {
result["success"] = true
}
}
}
}
}
}
}
}
this.Data["json"] = result
this.ServeJson()
}
}