50 lines
1011 B
Go
Raw Normal View History

2018-04-15 08:36:51 +00:00
package upload
import (
"net/http"
2019-06-03 09:32:43 +00:00
"github.com/animenotifier/notify.moe/arn"
2018-04-15 08:36:51 +00:00
"github.com/aerogo/aero"
"github.com/animenotifier/notify.moe/utils"
)
// AMVFile handles the video upload for AMV files.
2019-06-01 04:55:49 +00:00
func AMVFile(ctx aero.Context) error {
2018-04-15 08:36:51 +00:00
user := utils.GetUser(ctx)
amvID := ctx.Get("id")
if user == nil {
2018-07-07 03:42:00 +00:00
return ctx.Error(http.StatusUnauthorized, "Not logged in")
2018-04-15 08:36:51 +00:00
}
amv, err := arn.GetAMV(amvID)
if err != nil {
return ctx.Error(http.StatusNotFound, "AMV 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 amv image file
err = amv.SetVideoBytes(data)
if err != nil {
return ctx.Error(http.StatusInternalServerError, "Invalid video format", err)
}
// Save image information
amv.Save()
// Write log entry
logEntry := arn.NewEditLogEntry(user.ID, "edit", "AMV", amv.ID, "File", "", "")
logEntry.Save()
2019-06-01 04:55:49 +00:00
return nil
2018-04-15 08:36:51 +00:00
}