2017-06-16 23:25:02 +00:00
|
|
|
package profile
|
2017-06-08 12:46:38 +00:00
|
|
|
|
2018-11-24 06:57:52 +00:00
|
|
|
// import (
|
|
|
|
// "net/http"
|
2017-06-08 12:46:38 +00:00
|
|
|
|
2018-11-24 06:57:52 +00:00
|
|
|
// "github.com/aerogo/aero"
|
2019-06-03 09:32:43 +00:00
|
|
|
// "github.com/animenotifier/notify.moe/arn"
|
2018-11-24 06:57:52 +00:00
|
|
|
// "github.com/animenotifier/notify.moe/components"
|
|
|
|
// "github.com/animenotifier/notify.moe/utils"
|
|
|
|
// )
|
2017-06-08 12:46:38 +00:00
|
|
|
|
2018-11-24 06:57:52 +00:00
|
|
|
// const maxThreads = 20
|
2017-07-03 15:33:57 +00:00
|
|
|
|
2018-11-24 06:57:52 +00:00
|
|
|
// // GetThreadsByUser shows all forum threads of a particular user.
|
2019-06-01 04:55:49 +00:00
|
|
|
// func GetThreadsByUser(ctx aero.Context) error {
|
2018-11-24 06:57:52 +00:00
|
|
|
// nick := ctx.Get("nick")
|
|
|
|
// viewUser, err := arn.GetUserByNick(nick)
|
2017-06-08 12:46:38 +00:00
|
|
|
|
2018-11-24 06:57:52 +00:00
|
|
|
// if err != nil {
|
|
|
|
// return ctx.Error(http.StatusNotFound, "User not found", err)
|
|
|
|
// }
|
2017-06-08 12:46:38 +00:00
|
|
|
|
2018-11-24 06:57:52 +00:00
|
|
|
// threads := viewUser.Threads()
|
|
|
|
// arn.SortThreadsLatestFirst(threads)
|
2017-06-08 12:46:38 +00:00
|
|
|
|
2018-11-24 06:57:52 +00:00
|
|
|
// if len(threads) > maxThreads {
|
|
|
|
// threads = threads[:maxThreads]
|
|
|
|
// }
|
2017-07-03 15:33:57 +00:00
|
|
|
|
2019-06-01 04:55:49 +00:00
|
|
|
// return ctx.HTML(components.ProfileThreads(threads, viewUser, utils.GetUser(ctx), ctx.Path()))
|
2018-11-24 06:57:52 +00:00
|
|
|
// }
|