main.go 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. package main
  2. import (
  3. "crypto/md5"
  4. "fmt"
  5. "log"
  6. "net/http"
  7. "net/mail"
  8. "os"
  9. "github.com/pocketbase/dbx"
  10. "github.com/pocketbase/pocketbase"
  11. "github.com/pocketbase/pocketbase/apis"
  12. "github.com/pocketbase/pocketbase/core"
  13. "github.com/pocketbase/pocketbase/tools/mailer"
  14. )
  15. type comment struct {
  16. Id string `json:"id"`
  17. Created string `json:"created"`
  18. Author string `json:"author"`
  19. Avatar string `json:"avatar"`
  20. Website string `json:"website"`
  21. Content string `json:"content"`
  22. IsMod bool `json:"is_mod"`
  23. Reply []comment `json:"reply"`
  24. }
  25. type newComment struct {
  26. Uri string `json:"uri"`
  27. Author string `json:"author"`
  28. Email string `json:"email"`
  29. Website string `json:"website"`
  30. Content string `json:"content"`
  31. Parent string `json:"parent"`
  32. }
  33. func main() {
  34. app := pocketbase.New()
  35. // app.OnBeforeServe().Add(func(e *core.ServeEvent) error {
  36. app.OnServe().BindFunc(func(se *core.ServeEvent) error {
  37. // serves static files from the provided public dir (if exists)
  38. se.Router.GET("/{path...}", apis.Static(os.DirFS("./pb_public"), true))
  39. // get comments of a page
  40. se.Router.GET("/api/comment/", func(e *core.RequestEvent) error {
  41. uri := e.Request.URL.Query().Get("uri")
  42. commentList := []comment{}
  43. records, err := app.FindAllRecords("comments",
  44. dbx.HashExp{"uri": uri},
  45. )
  46. if err != nil {
  47. return err
  48. }
  49. for _, v := range records {
  50. emailHash := calcMD5(v.GetString("email"))
  51. entry := comment{
  52. v.Id,
  53. v.GetString("created"),
  54. v.GetString("author"),
  55. emailHash,
  56. v.GetString("website"),
  57. v.GetString("content"),
  58. v.GetBool("is_mod"),
  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 e.JSON(http.StatusOK, body)
  77. })
  78. // handle new comment
  79. se.Router.POST("/api/comment/", func(e *core.RequestEvent) error {
  80. newComment := new(newComment)
  81. if err := e.BindBody(&newComment); err != nil {
  82. return e.BadRequestError("Failed to read request body", err)
  83. }
  84. collection, err := app.FindCollectionByNameOrId("comments")
  85. if err != nil {
  86. return err
  87. }
  88. record := core.NewRecord(collection)
  89. record.Load(map[string]any{
  90. "uri": newComment.Uri,
  91. "author": newComment.Author,
  92. "email": newComment.Email,
  93. "website": newComment.Website,
  94. "content": newComment.Content,
  95. "parent": newComment.Parent,
  96. })
  97. err = app.Save(record)
  98. if err != nil {
  99. return err
  100. }
  101. emailHash := calcMD5(record.GetString("email"))
  102. body := comment{
  103. record.Id,
  104. record.GetString("created"),
  105. record.GetString("author"),
  106. emailHash,
  107. record.GetString("website"),
  108. record.GetString("content"),
  109. record.GetBool("is_mod"),
  110. []comment{},
  111. }
  112. // send email notification if COMMENT_NOTIFY_EMAIL is set
  113. COMMENT_NOTIFY_EMAIL := os.Getenv("COMMENT_NOTIFY_EMAIL")
  114. if COMMENT_NOTIFY_EMAIL != "" {
  115. message := &mailer.Message{
  116. From: mail.Address{
  117. Address: app.Settings().Meta.SenderAddress,
  118. Name: app.Settings().Meta.SenderName,
  119. },
  120. To: []mail.Address{{Address: COMMENT_NOTIFY_EMAIL}},
  121. Subject: "📮新评论通知",
  122. HTML: "<p><b>" + body.Author + "</b> 说:</p><p>" + body.Content + "</p>",
  123. }
  124. go func() {
  125. app.NewMailClient().Send(message)
  126. }()
  127. }
  128. return e.JSON(http.StatusOK, body)
  129. })
  130. return se.Next()
  131. })
  132. if err := app.Start(); err != nil {
  133. log.Fatal(err)
  134. }
  135. }
  136. // calc email hash helper
  137. func calcMD5(input string) string {
  138. data := []byte(input)
  139. return fmt.Sprintf("%x", md5.Sum(data))
  140. }