25 lines
489 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
func Get(ctx *aero.Context) string {
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)
}