mirror of
https://github.com/osmarks/mycorrhiza.git
synced 2024-10-30 11:46:16 +00:00
6a26c08d02
Makes more sense, actually
33 lines
618 B
Go
33 lines
618 B
Go
package web
|
|
|
|
import (
|
|
"github.com/bouncepaw/mycorrhiza/shroom"
|
|
"github.com/bouncepaw/mycorrhiza/user"
|
|
"github.com/bouncepaw/mycorrhiza/views"
|
|
"io"
|
|
"net/http"
|
|
|
|
"github.com/bouncepaw/mycorrhiza/util"
|
|
)
|
|
|
|
func initSearch() {
|
|
http.HandleFunc("/title-search/", handlerTitleSearch)
|
|
}
|
|
|
|
func handlerTitleSearch(w http.ResponseWriter, rq *http.Request) {
|
|
util.PrepareRq(rq)
|
|
_ = rq.ParseForm()
|
|
var (
|
|
query = rq.FormValue("q")
|
|
u = user.FromRequest(rq)
|
|
)
|
|
_, _ = io.WriteString(
|
|
w,
|
|
views.BaseHTML(
|
|
"Search: "+query,
|
|
views.TitleSearchHTML(query, shroom.YieldHyphaNamesContainingString),
|
|
u,
|
|
),
|
|
)
|
|
}
|