mirror of
https://github.com/osmarks/mycorrhiza.git
synced 2024-10-30 11:46:16 +00:00
ba0b12a803
Also change /primitive-search/ syntax
33 lines
634 B
Go
33 lines
634 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("/primitive-search/", handlerPrimitiveSearch)
|
|
}
|
|
|
|
func handlerPrimitiveSearch(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.PrimitiveSearchHTML(query, shroom.YieldHyphaNamesContainingString),
|
|
u,
|
|
),
|
|
)
|
|
}
|