-
-
Notifications
You must be signed in to change notification settings - Fork 99
/
commentctl.go
171 lines (145 loc) · 5.37 KB
/
commentctl.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
// Pipe - A small and beautiful blogging platform written in golang.
// Copyright (C) 2017-present, b3log.org
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
package controller
import (
"bytes"
"html/template"
"net/http"
"strconv"
"strings"
"github.com/88250/gulu"
"github.com/88250/pipe/model"
"github.com/88250/pipe/service"
"github.com/88250/pipe/util"
"github.com/gin-gonic/gin"
)
func getRepliesAction(c *gin.Context) {
result := gulu.Ret.NewResult()
defer c.JSON(http.StatusOK, result)
blogID := getBlogID(c)
parentCmtIDArg := strings.SplitAfter(c.Request.URL.Path, util.PathComments+"/")[1]
parentCmtIDArg = strings.Split(parentCmtIDArg, "/replies")[0]
parentCmtID, _ := strconv.ParseUint(parentCmtIDArg, 10, 64)
replyComments := service.Comment.GetReplies(parentCmtID, blogID)
var replies []*model.ThemeReply
for _, replyComment := range replyComments {
commentAuthor := service.User.GetUser(replyComment.AuthorID)
if nil == commentAuthor {
logger.Errorf("not found comment author [userID=%d]", replyComment.AuthorID)
continue
}
commentAuthorBlog := service.User.GetOwnBlog(commentAuthor.ID)
blogURLSetting := service.Setting.GetSetting(model.SettingCategoryBasic, model.SettingNameBasicBlogURL, commentAuthorBlog.ID)
commentAuthorURL := blogURLSetting.Value + util.PathAuthors + "/" + commentAuthor.Name
author := &model.ThemeAuthor{
Name: commentAuthor.Name,
URL: commentAuthorURL,
AvatarURL: commentAuthor.AvatarURLWithSize(64),
}
reply := &model.ThemeReply{
ID: replyComment.ID,
Content: template.HTML(util.Markdown(replyComment.Content).ContentHTML),
Author: author,
CreatedAt: replyComment.CreatedAt.Format("2006-01-02"),
}
replies = append(replies, reply)
}
result.Data = replies
}
func addCommentAction(c *gin.Context) {
result := gulu.Ret.NewResult()
defer c.JSON(http.StatusOK, result)
blogID := getBlogID(c)
session := util.GetSession(c)
if 0 == session.UID {
result.Code = util.CodeErr
result.Msg = "please login before comment"
return
}
comment := &model.Comment{
AuthorID: session.UID,
BlogID: blogID,
}
if err := c.BindJSON(comment); nil != err {
result.Code = util.CodeErr
result.Msg = "parses add comment request failed"
return
}
article := service.Article.ConsoleGetArticle(comment.ArticleID)
if nil == article {
result.Code = util.CodeErr
result.Msg = "not found the specified article"
return
}
commentableSetting := service.Setting.GetSetting(model.SettingCategoryBasic, model.SettingNameBasicCommentable, blogID)
if "true" != commentableSetting.Value || !article.Commentable {
result.Code = util.CodeErr
result.Msg = "not allow comment"
return
}
comment.IP = util.GetRemoteAddr(c)
if err := service.Comment.AddComment(comment); nil != err {
result.Code = util.CodeErr
result.Msg = err.Error()
}
dataModel := getDataModel(c)
commentAuthorURL := util.HacPaiURL + "/member/" + session.UName
blogURLSetting := service.Setting.GetSetting(model.SettingCategoryBasic, model.SettingNameBasicBlogURL, session.BID)
if nil != blogURLSetting {
commentAuthorURL = blogURLSetting.Value + util.PathAuthors + "/" + session.UName
}
author := &model.ThemeAuthor{
Name: session.UName,
URL: commentAuthorURL,
AvatarURL: session.UAvatar,
}
page := service.Comment.GetCommentPage(comment.ArticleID, comment.ID, comment.BlogID)
themeComment := &model.ThemeComment{
ID: comment.ID,
Content: template.HTML(util.Markdown(comment.Content).ContentHTML),
URL: getBlogURL(c) + article.Path + "?p=" + strconv.Itoa(page) + "#pipeComment" + strconv.Itoa(int(comment.ID)),
Author: author,
CreatedAt: comment.CreatedAt.Format("2006-01-02"),
Removable: false,
}
if 0 != comment.ParentCommentID {
parentCommentModel := service.Comment.GetComment(comment.ParentCommentID)
if nil != parentCommentModel {
parentCommentAuthorName := parentCommentModel.AuthorName
if "" == parentCommentAuthorName {
parentCommentAuthorModel := service.User.GetUser(parentCommentModel.AuthorID)
parentCommentAuthorName = parentCommentAuthorModel.Name
}
parentComment := &model.ThemeComment{
ID: parentCommentModel.ID,
URL: getBlogURL(c) + article.Path + "?p=" + strconv.Itoa(page) + "#pipeComment" + strconv.Itoa(int(parentCommentModel.ID)),
Author: &model.ThemeAuthor{
Name: parentCommentAuthorName,
},
}
themeComment.Parent = parentComment
}
}
dataModel["Item"] = themeComment
dataModel["ArticleID"] = comment.ArticleID
t := template.Must(template.New("").ParseFiles("theme/comment/comment.html"))
htmlBuilder := bytes.Buffer{}
if err := t.ExecuteTemplate(&htmlBuilder, "comment/comment", dataModel); nil != err {
logger.Errorf("execute comment template failed: " + err.Error())
return
}
result.Data = htmlBuilder.String()
}