main.go 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. package main
  2. import (
  3. "crypto/md5"
  4. "fmt"
  5. "log"
  6. "net/http"
  7. "net/mail"
  8. "os"
  9. "github.com/labstack/echo/v5"
  10. "github.com/pocketbase/dbx"
  11. "github.com/pocketbase/pocketbase"
  12. "github.com/pocketbase/pocketbase/apis"
  13. "github.com/pocketbase/pocketbase/core"
  14. "github.com/pocketbase/pocketbase/forms"
  15. "github.com/pocketbase/pocketbase/models"
  16. "github.com/pocketbase/pocketbase/tools/mailer"
  17. )
  18. type comment struct {
  19. Id string `json:"id"`
  20. Created string `json:"created"`
  21. Author string `json:"author"`
  22. Avatar string `json:"avatar"`
  23. Website string `json:"website"`
  24. Content string `json:"content"`
  25. IsMod bool `json:"is_mod"`
  26. Reply []comment `json:"reply"`
  27. }
  28. type newComment struct {
  29. Uri string `json:"uri"`
  30. Author string `json:"author"`
  31. Email string `json:"email"`
  32. Website string `json:"website"`
  33. Content string `json:"content"`
  34. Parent string `json:"parent"`
  35. }
  36. func main() {
  37. app := pocketbase.New()
  38. app.OnBeforeServe().Add(func(e *core.ServeEvent) error {
  39. // serves static files from the provided public dir (if exists)
  40. e.Router.GET("/*", apis.StaticDirectoryHandler(os.DirFS("./pb_public"), true))
  41. // get comments of a page
  42. e.Router.GET("api/comment", func(c echo.Context) error {
  43. uri := c.QueryParam("uri")
  44. commentList := []comment{}
  45. records, err := app.Dao().FindRecordsByExpr("comments",
  46. dbx.HashExp{"uri": uri},
  47. )
  48. if err != nil {
  49. return err
  50. }
  51. for _, v := range records {
  52. emailHash := calcMD5(v.GetString("email"))
  53. entry := comment{
  54. v.Id,
  55. v.GetString("created"),
  56. v.GetString("author"),
  57. emailHash,
  58. v.GetString("website"),
  59. v.GetString("content"),
  60. v.GetBool("is_mod"),
  61. []comment{},
  62. }
  63. if v.GetString("parent") == "" {
  64. commentList = append(commentList, entry)
  65. } else {
  66. for i := range commentList {
  67. if commentList[i].Id == v.GetString("parent") {
  68. commentList[i].Reply = append(commentList[i].Reply, entry)
  69. break
  70. }
  71. }
  72. }
  73. }
  74. body := struct {
  75. Count int `json:"count"`
  76. List []comment `json:"list"`
  77. }{len(records), commentList}
  78. return c.JSON(200, body)
  79. },
  80. apis.ActivityLogger(app),
  81. )
  82. // handle new comment
  83. e.Router.POST("api/comment", func(c echo.Context) error {
  84. newComment := new(newComment)
  85. if err := c.Bind(newComment); err != nil {
  86. return c.String(http.StatusBadRequest, "bad request")
  87. }
  88. collection, err := app.Dao().FindCollectionByNameOrId("comments")
  89. if err != nil {
  90. return err
  91. }
  92. record := models.NewRecord(collection)
  93. form := forms.NewRecordUpsert(app, record)
  94. form.LoadData(map[string]any{
  95. "uri": newComment.Uri,
  96. "author": newComment.Author,
  97. "email": newComment.Email,
  98. "website": newComment.Website,
  99. "content": newComment.Content,
  100. "parent": newComment.Parent,
  101. })
  102. // validate and submit (internally it calls app.Dao().SaveRecord(record) in a transaction)
  103. if err := form.Submit(); err != nil {
  104. return err
  105. }
  106. emailHash := calcMD5(record.GetString("email"))
  107. body := comment{
  108. record.Id,
  109. record.GetString("created"),
  110. record.GetString("author"),
  111. emailHash,
  112. record.GetString("website"),
  113. record.GetString("content"),
  114. record.GetBool("is_mod"),
  115. []comment{},
  116. }
  117. // send email notification if COMMENT_NOTIFY_EMAIL is set
  118. COMMENT_NOTIFY_EMAIL := os.Getenv("COMMENT_NOTIFY_EMAIL")
  119. if COMMENT_NOTIFY_EMAIL != "" {
  120. message := &mailer.Message{
  121. From: mail.Address{
  122. Address: app.Settings().Meta.SenderAddress,
  123. Name: app.Settings().Meta.SenderName,
  124. },
  125. To: []mail.Address{{Address: COMMENT_NOTIFY_EMAIL}},
  126. Subject: "📮新评论通知",
  127. HTML: "<p><b>" + body.Author + "</b> 说:</p><p>" + body.Content + "</p>",
  128. }
  129. go func() {
  130. app.NewMailClient().Send(message)
  131. }()
  132. }
  133. return c.JSON(200, body)
  134. },
  135. apis.ActivityLogger(app),
  136. )
  137. return nil
  138. })
  139. if err := app.Start(); err != nil {
  140. log.Fatal(err)
  141. }
  142. }
  143. // calc email hash helper
  144. func calcMD5(input string) string {
  145. data := []byte(input)
  146. return fmt.Sprintf("%x", md5.Sum(data))
  147. }