25 lines
494 B
Go
Raw Normal View History

2017-06-20 14:16:23 +02:00
package user
import (
"net/http"
"github.com/aerogo/aero"
2019-11-17 16:59:34 +09:00
"github.com/animenotifier/notify.moe/arn"
2017-06-20 14:16:23 +02:00
"github.com/animenotifier/notify.moe/pages/profile"
)
// Get redirects /+ to /+UserName
2019-06-01 13:55:49 +09:00
func Get(ctx aero.Context) error {
2019-11-17 16:59:34 +09:00
user := arn.GetUserFromContext(ctx)
2017-06-20 14:16:23 +02:00
if user == nil {
2018-07-07 12:42:00 +09:00
return ctx.Error(http.StatusBadRequest, "Not logged in")
2017-06-20 14:16:23 +02:00
}
if user.Nick == "" {
2018-07-07 12:42:00 +09:00
return ctx.Error(http.StatusInternalServerError, "User did not set a nickname")
2017-06-20 14:16:23 +02:00
}
return profile.Profile(ctx, user)
}