64 lines
1.3 KiB
Go
Raw Normal View History

2016-11-20 10:26:11 +00:00
package profile
import (
"github.com/aerogo/aero"
2017-06-23 16:22:48 +00:00
"github.com/aerogo/flow"
2016-11-20 10:26:11 +00:00
"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
2017-06-27 16:44:22 +00:00
const maxTracks = 3
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-06-10 00:19:31 +00:00
var user *arn.User
var threads []*arn.Thread
var animeList *arn.AnimeList
2017-06-27 15:51:15 +00:00
var tracks []*arn.SoundTrack
2017-06-22 14:21:26 +00:00
var posts []*arn.Post
2017-06-22 15:03:43 +00:00
2017-06-23 16:22:48 +00:00
flow.Parallel(func() {
2017-06-10 00:19:31 +00:00
user = utils.GetUser(ctx)
}, func() {
animeList = viewUser.AnimeList()
}, func() {
threads = viewUser.Threads()
2017-06-08 12:46:38 +00:00
2017-06-10 00:19:31 +00:00
arn.SortThreadsByDate(threads)
2017-06-08 12:46:38 +00:00
2017-06-10 00:19:31 +00:00
if len(threads) > maxPosts {
threads = threads[:maxPosts]
}
2017-06-22 15:03:43 +00:00
}, func() {
posts = viewUser.Posts()
2017-06-22 15:49:32 +00:00
arn.SortPostsLatestFirst(posts)
2017-06-22 15:03:43 +00:00
if len(posts) > maxPosts {
posts = posts[:maxPosts]
}
2017-06-27 15:51:15 +00:00
}, func() {
tracks = viewUser.SoundTracks()
arn.SortSoundTracksLatestFirst(tracks)
if len(tracks) > maxTracks {
tracks = tracks[:maxTracks]
}
2017-06-22 15:03:43 +00:00
})
2017-06-22 14:21:26 +00:00
2017-06-27 15:51:15 +00:00
return ctx.HTML(components.Profile(viewUser, user, animeList, threads, posts, tracks))
2016-11-20 10:26:11 +00:00
}