dorfylegends/backend/server/resource.go
Robert Janetzko 8b7fa14258 tables
2022-04-30 07:45:31 +00:00

43 lines
859 B
Go

package server
import (
"fmt"
"net/http"
"reflect"
"strconv"
"github.com/gorilla/mux"
)
type Parms map[string]string
func (srv *DfServer) RegisterWorldPage(path string, template string, accessor func(Parms) any) {
get := func(w http.ResponseWriter, r *http.Request) {
if srv.context.world == nil {
srv.renderLoading(w, r)
return
}
data := accessor(mux.Vars(r))
if reflect.ValueOf(data).IsNil() {
srv.notFound(w)
return
}
err := srv.templates.Render(w, template, data)
if err != nil {
fmt.Fprintln(w, err)
fmt.Println(err)
}
}
srv.router.HandleFunc(path, get).Methods("GET")
}
func (srv *DfServer) RegisterWorldResourcePage(path string, template string, accessor func(int) any) {
srv.RegisterWorldPage(path, template, func(params Parms) any {
id, _ := strconv.Atoi(params["id"])
return accessor(id)
})
}