2018-05-27 22:40:42 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
2021-02-28 15:09:31 +08:00
|
|
|
"time"
|
2018-05-27 22:40:42 +08:00
|
|
|
)
|
|
|
|
|
2021-02-28 15:09:31 +08:00
|
|
|
func commentDelete(commentHex string, deleterHex string) error {
|
|
|
|
if commentHex == "" || deleterHex == "" {
|
2018-05-27 22:40:42 +08:00
|
|
|
return errorMissingField
|
|
|
|
}
|
|
|
|
|
|
|
|
statement := `
|
2019-09-14 09:13:38 +08:00
|
|
|
UPDATE comments
|
2021-02-28 15:09:31 +08:00
|
|
|
SET
|
|
|
|
deleted = true,
|
|
|
|
markdown = '[deleted]',
|
|
|
|
html = '[deleted]',
|
|
|
|
commenterHex = 'anonymous',
|
|
|
|
deleterHex = $2,
|
|
|
|
deletionDate = $3
|
2019-09-14 09:13:38 +08:00
|
|
|
WHERE commentHex = $1;
|
2018-05-27 22:40:42 +08:00
|
|
|
`
|
2021-02-28 15:09:31 +08:00
|
|
|
_, err := db.Exec(statement, commentHex, deleterHex, time.Now().UTC())
|
2018-05-27 22:40:42 +08:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
// TODO: make sure this is the error is actually non-existant commentHex
|
|
|
|
return errorNoSuchComment
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func commentDeleteHandler(w http.ResponseWriter, r *http.Request) {
|
|
|
|
type request struct {
|
2018-06-20 11:29:55 +08:00
|
|
|
CommenterToken *string `json:"commenterToken"`
|
2018-06-20 11:50:11 +08:00
|
|
|
CommentHex *string `json:"commentHex"`
|
2018-05-27 22:40:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
var x request
|
2018-07-24 14:58:43 +08:00
|
|
|
if err := bodyUnmarshal(r, &x); err != nil {
|
|
|
|
bodyMarshal(w, response{"success": false, "message": err.Error()})
|
2018-05-27 22:40:42 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-06-20 11:29:55 +08:00
|
|
|
c, err := commenterGetByCommenterToken(*x.CommenterToken)
|
2018-05-27 22:40:42 +08:00
|
|
|
if err != nil {
|
2018-07-24 14:58:43 +08:00
|
|
|
bodyMarshal(w, response{"success": false, "message": err.Error()})
|
2018-05-27 22:40:42 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-05-16 00:13:39 +08:00
|
|
|
cm, err := commentGetByCommentHex(*x.CommentHex)
|
|
|
|
if err != nil {
|
|
|
|
bodyMarshal(w, response{"success": false, "message": err.Error()})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-07-25 02:34:42 +08:00
|
|
|
domain, _, err := commentDomainPathGet(*x.CommentHex)
|
2018-05-27 22:40:42 +08:00
|
|
|
if err != nil {
|
2018-07-24 14:58:43 +08:00
|
|
|
bodyMarshal(w, response{"success": false, "message": err.Error()})
|
2018-05-27 22:40:42 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-06-07 15:35:52 +08:00
|
|
|
isModerator, err := isDomainModerator(domain, c.Email)
|
2018-05-27 22:40:42 +08:00
|
|
|
if err != nil {
|
2018-07-24 14:58:43 +08:00
|
|
|
bodyMarshal(w, response{"success": false, "message": err.Error()})
|
2018-05-27 22:40:42 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-05-16 00:13:39 +08:00
|
|
|
if !isModerator && cm.CommenterHex != c.CommenterHex {
|
2018-07-24 14:58:43 +08:00
|
|
|
bodyMarshal(w, response{"success": false, "message": errorNotModerator.Error()})
|
2018-05-27 22:40:42 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-02-28 15:09:31 +08:00
|
|
|
if err = commentDelete(*x.CommentHex, c.CommenterHex); err != nil {
|
2018-07-24 14:58:43 +08:00
|
|
|
bodyMarshal(w, response{"success": false, "message": err.Error()})
|
2018-05-27 22:40:42 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-07-24 14:58:43 +08:00
|
|
|
bodyMarshal(w, response{"success": true})
|
2018-05-27 22:40:42 +08:00
|
|
|
}
|