51 lines
1.2 KiB
Go
Raw Normal View History

2016-11-20 10:26:11 +00:00
package profile
import (
"github.com/aerogo/aero"
"github.com/animenotifier/arn"
"github.com/animenotifier/notify.moe/components"
2017-06-08 12:46:38 +00:00
"github.com/animenotifier/notify.moe/utils"
2016-11-20 10:26:11 +00:00
)
2017-06-08 12:46:38 +00:00
const maxPosts = 5
2018-03-14 15:33:42 +00:00
const maxTracks = 12
2017-06-08 12:46:38 +00:00
2017-06-16 23:25:02 +00:00
// Get user profile page.
2016-11-20 10:26:11 +00:00
func Get(ctx *aero.Context) string {
nick := ctx.Get("nick")
2017-06-08 12:46:38 +00:00
viewUser, err := arn.GetUserByNick(nick)
2016-11-20 10:26:11 +00:00
if err != nil {
2016-11-23 05:26:59 +00:00
return ctx.Error(404, "User not found", err)
2016-11-20 10:26:11 +00:00
}
2017-06-20 12:16:23 +00:00
return Profile(ctx, viewUser)
}
// Profile renders the user profile page of the given viewUser.
func Profile(ctx *aero.Context, viewUser *arn.User) string {
2017-11-28 23:15:43 +00:00
user := utils.GetUser(ctx)
animeList := viewUser.AnimeList()
animeList.SortByRating()
2017-06-22 14:21:26 +00:00
2017-07-21 06:09:22 +00:00
openGraph := &arn.OpenGraph{
Tags: map[string]string{
"og:title": viewUser.Nick,
2018-03-05 16:49:24 +00:00
"og:image": viewUser.AvatarLink("large"),
2017-07-21 06:09:22 +00:00
"og:url": "https://" + ctx.App.Config.Domain + viewUser.Link(),
"og:site_name": "notify.moe",
"og:description": viewUser.Tagline,
"og:type": "profile",
"profile:username": viewUser.Nick,
},
Meta: map[string]string{
"description": viewUser.Tagline,
"keywords": viewUser.Nick + ",profile",
},
}
ctx.Data = openGraph
2017-11-28 23:15:43 +00:00
return ctx.HTML(components.Profile(viewUser, user, animeList, ctx.URI()))
2016-11-20 10:26:11 +00:00
}