General improvements

This commit is contained in:
2017-06-20 14:16:23 +02:00
parent 009c73629f
commit 877b2433e4
11 changed files with 68 additions and 9 deletions

24
pages/user/user.go Normal file
View File

@ -0,0 +1,24 @@
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 {
return ctx.Error(http.StatusBadRequest, "Not logged in", nil)
}
if user.Nick == "" {
return ctx.Error(http.StatusInternalServerError, "User did not set a nickname", nil)
}
return profile.Profile(ctx, user)
}