28 lines
500 B
Go
Raw Normal View History

2017-07-22 13:04:54 +00:00
package home
import (
2018-04-03 20:53:53 +00:00
"strings"
2017-07-22 13:04:54 +00:00
"github.com/aerogo/aero"
"github.com/animenotifier/notify.moe/pages/frontpage"
"github.com/animenotifier/notify.moe/utils"
)
2017-07-22 14:31:25 +00:00
// Get the anime list or the frontpage when logged out.
2017-07-22 13:04:54 +00:00
func Get(ctx *aero.Context) string {
user := utils.GetUser(ctx)
if user == nil {
return frontpage.Get(ctx)
}
2018-04-03 20:53:53 +00:00
// Redirect
prefix := "/"
if strings.HasPrefix(ctx.URI(), "/_") {
prefix = "/_/"
}
return ctx.Redirect(prefix + "+" + user.Nick + "/animelist/watching")
2017-07-22 13:04:54 +00:00
}