25 lines
487 B
Go
Raw Normal View History

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