132 lines
3.1 KiB
Go
132 lines
3.1 KiB
Go
package profile
|
|
|
|
import (
|
|
"sort"
|
|
"time"
|
|
|
|
"github.com/aerogo/aero"
|
|
"github.com/animenotifier/arn"
|
|
"github.com/animenotifier/notify.moe/components"
|
|
"github.com/animenotifier/notify.moe/utils"
|
|
)
|
|
|
|
const (
|
|
maxCharacters = 6
|
|
maxFriends = 7
|
|
)
|
|
|
|
// 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)
|
|
|
|
// Anime list
|
|
animeList := viewUser.AnimeList()
|
|
|
|
if user == nil || user.ID != viewUser.ID {
|
|
animeList = animeList.WithoutPrivateItems()
|
|
}
|
|
|
|
animeList.SortByRating()
|
|
|
|
// Genres
|
|
topGenres := animeList.TopGenres(5)
|
|
|
|
// Open graph
|
|
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",
|
|
},
|
|
}
|
|
|
|
// Friends
|
|
friends := viewUser.Follows().UsersWhoFollowBack()
|
|
|
|
arn.SortUsersFollowers(friends)
|
|
|
|
if len(friends) > maxFriends {
|
|
friends = friends[:maxFriends]
|
|
}
|
|
|
|
// Activities
|
|
activities := arn.FilterActivities(func(activity arn.Activity) bool {
|
|
return activity.GetCreatedBy() == viewUser.ID
|
|
})
|
|
|
|
// Time zone offset
|
|
var timeZoneOffset time.Duration
|
|
analytics := viewUser.Analytics()
|
|
|
|
if analytics != nil {
|
|
timeZoneOffset = time.Duration(-analytics.General.TimezoneOffset) * time.Minute
|
|
}
|
|
|
|
now := time.Now().UTC().Add(timeZoneOffset)
|
|
weekDay := int(now.Weekday())
|
|
currentYearDay := int(now.YearDay())
|
|
|
|
// Day offset is the number of days we need to reach Sunday
|
|
dayOffset := 0
|
|
|
|
if weekDay > 0 {
|
|
dayOffset = 7 - weekDay
|
|
}
|
|
|
|
dayToActivityCount := map[int]int{}
|
|
|
|
for _, activity := range activities {
|
|
activityTime := activity.GetCreatedTime().Add(timeZoneOffset)
|
|
activityYearDay := activityTime.YearDay()
|
|
days := currentYearDay - activityYearDay
|
|
dayToActivityCount[days+dayOffset]++
|
|
}
|
|
|
|
// Characters
|
|
characters := []*arn.Character{}
|
|
|
|
for character := range arn.StreamCharacters() {
|
|
if arn.Contains(character.Likes, viewUser.ID) {
|
|
characters = append(characters, character)
|
|
}
|
|
}
|
|
|
|
sort.Slice(characters, func(i, j int) bool {
|
|
aLikes := len(characters[i].Likes)
|
|
bLikes := len(characters[j].Likes)
|
|
|
|
if aLikes == bLikes {
|
|
return characters[i].Name.Canonical < characters[j].Name.Canonical
|
|
}
|
|
|
|
return aLikes > bLikes
|
|
})
|
|
|
|
if len(characters) > maxCharacters {
|
|
characters = characters[:maxCharacters]
|
|
}
|
|
|
|
ctx.Data = openGraph
|
|
return ctx.HTML(components.Profile(viewUser, user, animeList, characters, friends, topGenres, dayToActivityCount, ctx.URI()))
|
|
}
|