37 lines
694 B
Go
Raw Normal View History

2018-03-02 20:42:34 +00:00
package upload
import (
"net/http"
"github.com/aerogo/aero"
"github.com/animenotifier/notify.moe/utils"
)
// Avatar ...
func Avatar(ctx *aero.Context) string {
user := utils.GetUser(ctx)
if user == nil {
return ctx.Error(http.StatusUnauthorized, "Not logged in", nil)
}
2018-03-03 15:03:18 +00:00
// Retrieve file from post body
2018-03-02 20:42:34 +00:00
data, err := ctx.Request().Body().Bytes()
if err != nil {
return ctx.Error(http.StatusInternalServerError, "Reading request body failed", err)
}
2018-03-03 15:03:18 +00:00
// Set avatar file
err = user.SetAvatarBytes(data)
2018-03-02 20:42:34 +00:00
if err != nil {
2018-03-03 15:03:18 +00:00
return ctx.Error(http.StatusInternalServerError, "Invalid image format", err)
2018-03-02 20:42:34 +00:00
}
2018-03-03 15:03:18 +00:00
// Save avatar information
user.Save()
return user.SmallAvatar()
2018-03-02 20:42:34 +00:00
}