50 lines
1.1 KiB
Go
50 lines
1.1 KiB
Go
package upload
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/animenotifier/notify.moe/arn"
|
|
|
|
"github.com/aerogo/aero"
|
|
"github.com/animenotifier/notify.moe/utils"
|
|
)
|
|
|
|
// AnimeImage handles the anime image upload.
|
|
func AnimeImage(ctx aero.Context) error {
|
|
user := utils.GetUser(ctx)
|
|
animeID := ctx.Get("id")
|
|
|
|
if user == nil || (user.Role != "editor" && user.Role != "admin") {
|
|
return ctx.Error(http.StatusUnauthorized, "Not authorized")
|
|
}
|
|
|
|
anime, err := arn.GetAnime(animeID)
|
|
|
|
if err != nil {
|
|
return ctx.Error(http.StatusNotFound, "Anime not found", err)
|
|
}
|
|
|
|
// Retrieve file from post body
|
|
data, err := ctx.Request().Body().Bytes()
|
|
|
|
if err != nil {
|
|
return ctx.Error(http.StatusInternalServerError, "Reading request body failed", err)
|
|
}
|
|
|
|
// Set anime image file
|
|
err = anime.SetImageBytes(data)
|
|
|
|
if err != nil {
|
|
return ctx.Error(http.StatusInternalServerError, "Invalid image format", err)
|
|
}
|
|
|
|
// Save image information
|
|
anime.Save()
|
|
|
|
// Write log entry
|
|
logEntry := arn.NewEditLogEntry(user.ID, "edit", "Anime", anime.ID, "Image", "", "")
|
|
logEntry.Save()
|
|
|
|
return nil
|
|
}
|