30 lines
598 B
Go
30 lines
598 B
Go
package threads
|
|
|
|
import (
|
|
"github.com/aerogo/aero"
|
|
"github.com/animenotifier/arn"
|
|
"github.com/animenotifier/notify.moe/components"
|
|
)
|
|
|
|
// Get ...
|
|
func Get(ctx *aero.Context) string {
|
|
id := ctx.Get("id")
|
|
thread, err := arn.GetThread(id)
|
|
|
|
if err != nil {
|
|
return ctx.Error(404, "Thread not found", err)
|
|
}
|
|
|
|
replies, filterErr := arn.FilterPosts(func(post *arn.Post) bool {
|
|
return post.ThreadID == thread.ID
|
|
})
|
|
|
|
arn.SortPostsLatestLast(replies)
|
|
|
|
if filterErr != nil {
|
|
return ctx.Error(500, "Error fetching thread replies", err)
|
|
}
|
|
|
|
return ctx.HTML(components.Thread(thread, replies))
|
|
}
|