package plugins import ( "github.com/fthvgb1/wp-go/helper/slice" "github.com/fthvgb1/wp-go/internal/pkg/models" "github.com/gin-gonic/gin" "strconv" "strings" ) type CommentHandler struct { *gin.Context comments []*Comments maxDepth int depth int i CommentHtml } type Comments struct { models.Comments Children []*Comments } type CommentHtml interface { Sort(i, j *Comments) bool FormatLi(c *gin.Context, m models.Comments, depth int, eo, parent string) string } func FormatComments(c *gin.Context, i CommentHtml, comments []models.Comments, maxDepth int) string { tree := treeComments(comments) h := CommentHandler{ Context: c, comments: tree, maxDepth: maxDepth, depth: 1, i: i, } return h.formatComment(h.comments, true) } func (d CommentHandler) formatComment(comments []*Comments, isTop bool) (html string) { s := strings.Builder{} if d.depth > d.maxDepth { comments = d.findComments(comments) } slice.SortSelf(comments, d.i.Sort) for i, comment := range comments { eo := "even" if (i+1)%2 == 0 { eo = "odd" } parent := "" fl := false if len(comment.Children) > 0 && d.depth < d.maxDepth+1 { parent = "parent" fl = true } s.WriteString(d.i.FormatLi(d.Context, comment.Comments, d.depth, eo, parent)) if fl { d.depth++ s.WriteString(`
    `) s.WriteString(d.formatComment(comment.Children, false)) s.WriteString(`
`) if isTop { d.depth = 1 } } s.WriteString("") } html = s.String() return } func (d CommentHandler) findComments(comments []*Comments) []*Comments { var r []*Comments for _, comment := range comments { tmp := *comment comment.Children = nil r = append(r, &tmp) if len(comment.Children) > 0 { t := d.findComments(comment.Children) r = append(r, t...) } } return r } func treeComments(comments []models.Comments) []*Comments { var r = map[uint64]*Comments{ 0: { Comments: models.Comments{}, }, } var top []*Comments for _, comment := range comments { c := Comments{ Comments: comment, Children: []*Comments{}, } r[comment.CommentId] = &c if comment.CommentParent == 0 { top = append(top, &c) } } for id, son := range r { if id == son.CommentParent { continue } parent := r[son.CommentParent] parent.Children = append(parent.Children, son) } return top } func CommonLi() string { return li } var commonCommentFormat = CommonCommentFormat{} func CommentRender() CommonCommentFormat { return commonCommentFormat } type CommonCommentFormat struct { } func (c CommonCommentFormat) Sort(i, j *Comments) bool { return i.CommentDate.UnixNano() < j.CommentDate.UnixNano() } func (c CommonCommentFormat) FormatLi(ctx *gin.Context, m models.Comments, depth int, eo, parent string) string { return FormatLi(CommonLi(), ctx, m, depth, eo, parent) } var li = `
  • {{CommentContent}}

    ` func FormatLi(li string, c *gin.Context, comments models.Comments, depth int, eo, parent string) string { for k, v := range map[string]string{ "{{CommentId}}": strconv.FormatUint(comments.CommentId, 10), "{{Depth}}": strconv.Itoa(depth), "{{Gravatar}}": Gravatar(comments.CommentAuthorEmail, c.Request.TLS != nil), "{{CommentAuthorUrl}}": comments.CommentAuthorUrl, "{{CommentAuthor}}": comments.CommentAuthor, "{{PostId}}": strconv.FormatUint(comments.CommentPostId, 10), "{{CommentDateGmt}}": comments.CommentDateGmt.String(), "{{CommentDate}}": comments.CommentDate.Format("2006-01-02 15:04"), "{{CommentContent}}": comments.CommentContent, "{{eo}}": eo, "{{parent}}": parent, } { li = strings.Replace(li, k, v, -1) } return li }