53 lines
1.4 KiB
Go
53 lines
1.4 KiB
Go
package profile
|
|
|
|
import (
|
|
"github.com/aerogo/aero"
|
|
"github.com/animenotifier/arn"
|
|
"github.com/animenotifier/notify.moe/components"
|
|
"github.com/animenotifier/notify.moe/utils"
|
|
)
|
|
|
|
// Get user profile page.
|
|
func Get(ctx *aero.Context) string {
|
|
nick := ctx.Get("nick")
|
|
viewUser, err := arn.GetUserByNick(nick)
|
|
|
|
if err != nil {
|
|
return ctx.Error(404, "User not found", err)
|
|
}
|
|
|
|
return Profile(ctx, viewUser)
|
|
}
|
|
|
|
// Profile renders the user profile page of the given viewUser.
|
|
func Profile(ctx *aero.Context, viewUser *arn.User) string {
|
|
user := utils.GetUser(ctx)
|
|
animeList := viewUser.AnimeList()
|
|
|
|
if user == nil || user.ID != viewUser.ID {
|
|
animeList = animeList.WithoutPrivateItems()
|
|
}
|
|
|
|
animeList.SortByRating()
|
|
|
|
openGraph := &arn.OpenGraph{
|
|
Tags: map[string]string{
|
|
"og:title": viewUser.Nick,
|
|
"og:image": viewUser.AvatarLink("large"),
|
|
"og:url": "https://" + ctx.App.Config.Domain + viewUser.Link(),
|
|
"og:site_name": "notify.moe",
|
|
"og:description": utils.CutLongDescription(viewUser.Introduction),
|
|
"og:type": "profile",
|
|
"profile:username": viewUser.Nick,
|
|
},
|
|
Meta: map[string]string{
|
|
"description": utils.CutLongDescription(viewUser.Introduction),
|
|
"keywords": viewUser.Nick + ",profile",
|
|
},
|
|
}
|
|
|
|
ctx.Data = openGraph
|
|
|
|
return ctx.HTML(components.Profile(viewUser, user, animeList, ctx.URI()))
|
|
}
|