41 lines
822 B
Go
Raw Normal View History

2018-03-07 14:00:14 +01:00
package upload
import (
"net/http"
"github.com/aerogo/aero"
2019-11-17 16:59:34 +09:00
"github.com/animenotifier/notify.moe/arn"
2018-03-07 14:00:14 +01:00
)
// UserCover handles the cover image upload.
func UserCover(ctx aero.Context) error {
2019-11-17 16:59:34 +09:00
user := arn.GetUserFromContext(ctx)
2018-03-07 14:00:14 +01:00
if user == nil {
2018-07-07 12:42:00 +09:00
return ctx.Error(http.StatusUnauthorized, "Not logged in")
2018-03-07 14:00:14 +01:00
}
2018-03-07 14:52:56 +01:00
if !user.IsPro() {
2018-07-07 12:42:00 +09:00
return ctx.Error(http.StatusUnauthorized, "Only available for PRO users")
2018-03-07 14:52:56 +01:00
}
2018-03-07 14:00:14 +01:00
// 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 cover image file
err = user.SetCoverBytes(data)
if err != nil {
return ctx.Error(http.StatusInternalServerError, "Invalid image format", err)
}
// Save cover image information
user.Save()
2019-06-01 13:55:49 +09:00
return nil
2018-03-07 14:00:14 +01:00
}