main.go 4.0 KB

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