73 lines
1.7 KiB
Go
73 lines
1.7 KiB
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"code.nonshy.com/nonshy/website/pkg/config"
|
|
"code.nonshy.com/nonshy/website/pkg/worker"
|
|
)
|
|
|
|
// RemoveOrphanedCommentPhotos API.
|
|
//
|
|
// URL: /v1/comment-photos/remove-orphaned
|
|
//
|
|
// Query parameters: ?apiKey={CronAPIKey}
|
|
//
|
|
// This endpoint looks for CommentPhotos having a blank CommentID that were created older
|
|
// than 24 hours ago and removes them. Configure the "CronAPIKey" in your settings.json
|
|
// and pass it as the query parameter.
|
|
func RemoveOrphanedCommentPhotos() http.HandlerFunc {
|
|
// Response JSON schema.
|
|
type Response struct {
|
|
OK bool `json:"OK"`
|
|
Error string `json:"error,omitempty"`
|
|
Total int64 `json:"total"`
|
|
Removed int64 `json:"removed"`
|
|
}
|
|
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
if r.Method != http.MethodGet {
|
|
SendJSON(w, http.StatusNotAcceptable, Response{
|
|
Error: "GET method only",
|
|
})
|
|
return
|
|
}
|
|
|
|
// Get and validate the API key.
|
|
var (
|
|
apiKey = r.FormValue("apiKey")
|
|
compare = config.Current.CronAPIKey
|
|
)
|
|
|
|
if compare == "" {
|
|
SendJSON(w, http.StatusInternalServerError, Response{
|
|
OK: false,
|
|
Error: "app CronAPIKey is not configured",
|
|
})
|
|
return
|
|
} else if apiKey == "" || apiKey != compare {
|
|
SendJSON(w, http.StatusInternalServerError, Response{
|
|
OK: false,
|
|
Error: "invalid apiKey query parameter",
|
|
})
|
|
return
|
|
}
|
|
|
|
// Do the needful.
|
|
total, err := worker.VacuumOrphanedCommentPhotos(false)
|
|
if err != nil {
|
|
SendJSON(w, http.StatusInternalServerError, Response{
|
|
Error: err.Error(),
|
|
})
|
|
return
|
|
}
|
|
|
|
// Send success response.
|
|
SendJSON(w, http.StatusOK, Response{
|
|
OK: true,
|
|
Total: total,
|
|
Removed: total,
|
|
})
|
|
})
|
|
}
|