32 lines
677 B
Go
32 lines
677 B
Go
package home
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/aerogo/aero"
|
|
"github.com/animenotifier/notify.moe/components"
|
|
"github.com/animenotifier/notify.moe/pages/frontpage"
|
|
"github.com/animenotifier/notify.moe/utils"
|
|
)
|
|
|
|
// Get the anime list or the frontpage when logged out.
|
|
func Get(ctx *aero.Context) string {
|
|
user := utils.GetUser(ctx)
|
|
|
|
if user == nil {
|
|
return frontpage.Get(ctx)
|
|
}
|
|
|
|
viewUser := user
|
|
animeList := viewUser.AnimeList()
|
|
|
|
if animeList == nil {
|
|
return ctx.Error(http.StatusNotFound, "Anime list not found", nil)
|
|
}
|
|
|
|
animeList.PrefetchAnime()
|
|
animeList.Sort()
|
|
|
|
return ctx.HTML(components.Home(animeList.Watching(), animeList.User(), user, "watching"))
|
|
}
|