21 lines
522 B
Go
Raw Normal View History

package search
import (
"github.com/aerogo/aero"
2017-06-20 22:54:45 +02:00
"github.com/animenotifier/arn"
"github.com/animenotifier/notify.moe/components"
)
2017-11-05 09:32:46 +01:00
const maxUsers = 36
const maxAnime = 26
2017-07-20 14:26:43 +02:00
const maxPosts = 3
const maxThreads = 3
2017-06-20 22:54:45 +02:00
2017-06-17 01:25:02 +02:00
// Get search page.
func Get(ctx *aero.Context) string {
2017-07-02 17:51:17 +02:00
term := ctx.Query("q")
2017-06-20 22:54:45 +02:00
2017-07-20 14:26:43 +02:00
userResults, animeResults, postResults, threadResults := arn.Search(term, maxUsers, maxAnime, maxPosts, maxThreads)
return ctx.HTML(components.SearchResults(term, userResults, animeResults, postResults, threadResults))
}