1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2024-10-30 11:46:16 +00:00
mycorrhiza/categories/handlers.go

80 lines
2.5 KiB
Go
Raw Normal View History

package categories
2022-03-20 08:21:59 +00:00
import (
"github.com/bouncepaw/mycorrhiza/user"
2022-03-20 08:21:59 +00:00
"github.com/bouncepaw/mycorrhiza/util"
2022-03-29 20:59:36 +00:00
"github.com/bouncepaw/mycorrhiza/viewutil"
2022-03-20 08:21:59 +00:00
"github.com/gorilla/mux"
"io"
"log"
2022-03-20 08:21:59 +00:00
"net/http"
"strings"
2022-03-20 08:21:59 +00:00
)
2022-04-01 22:01:54 +00:00
// InitHandlers initializes HTTP handlers for the given router. Call somewhere in package web.
func InitHandlers(r *mux.Router) {
2022-03-20 08:21:59 +00:00
r.PathPrefix("/add-to-category").HandlerFunc(handlerAddToCategory).Methods("POST")
r.PathPrefix("/remove-from-category").HandlerFunc(handlerRemoveFromCategory).Methods("POST")
r.PathPrefix("/category/").HandlerFunc(handlerCategory).Methods("GET")
r.PathPrefix("/category").HandlerFunc(handlerListCategory).Methods("GET")
prepareViews()
}
func handlerListCategory(w http.ResponseWriter, rq *http.Request) {
log.Println("Viewing list of categories")
categoryList(viewutil.MetaFrom(w, rq))
2022-03-20 08:21:59 +00:00
}
func handlerCategory(w http.ResponseWriter, rq *http.Request) {
util.PrepareRq(rq)
catName := util.CanonicalName(strings.TrimPrefix(strings.TrimPrefix(rq.URL.Path, "/category"), "/"))
if catName == "" {
handlerListCategory(w, rq)
return
}
log.Println("Viewing category", catName)
categoryPage(viewutil.MetaFrom(w, rq), catName)
2022-03-20 08:21:59 +00:00
}
func handlerRemoveFromCategory(w http.ResponseWriter, rq *http.Request) {
util.PrepareRq(rq)
var (
hyphaName = util.CanonicalName(rq.PostFormValue("hypha"))
catName = util.CanonicalName(rq.PostFormValue("cat"))
redirectTo = rq.PostFormValue("redirect-to")
)
if !user.FromRequest(rq).CanProceed("remove-from-category") {
w.WriteHeader(http.StatusForbidden)
_, _ = io.WriteString(w, "403 Forbidden")
return
}
if hyphaName == "" || catName == "" {
http.Redirect(w, rq, redirectTo, http.StatusSeeOther)
return
}
2022-04-01 21:45:58 +00:00
log.Println(user.FromRequest(rq).Name, "removed", hyphaName, "from", catName)
2022-04-01 21:43:11 +00:00
removeHyphaFromCategory(hyphaName, catName)
http.Redirect(w, rq, redirectTo, http.StatusSeeOther)
2022-03-20 08:21:59 +00:00
}
func handlerAddToCategory(w http.ResponseWriter, rq *http.Request) {
util.PrepareRq(rq)
var (
hyphaName = util.CanonicalName(rq.PostFormValue("hypha"))
catName = util.CanonicalName(rq.PostFormValue("cat"))
redirectTo = rq.PostFormValue("redirect-to")
)
if !user.FromRequest(rq).CanProceed("add-to-category") {
w.WriteHeader(http.StatusForbidden)
_, _ = io.WriteString(w, "403 Forbidden")
return
}
if hyphaName == "" || catName == "" {
http.Redirect(w, rq, redirectTo, http.StatusSeeOther)
return
}
2022-04-01 21:45:58 +00:00
log.Println(user.FromRequest(rq).Name, "added", hyphaName, "to", catName)
2022-04-01 21:43:11 +00:00
addHyphaToCategory(hyphaName, catName)
http.Redirect(w, rq, redirectTo, http.StatusSeeOther)
2022-03-20 08:21:59 +00:00
}