summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--main.go37
1 files changed, 0 insertions, 37 deletions
diff --git a/main.go b/main.go
index 896da78..20200c3 100644
--- a/main.go
+++ b/main.go
@@ -1,9 +1,7 @@
package main
import (
- "encoding/gob"
"flag"
- "fmt"
"log"
"net"
"net/http"
@@ -11,7 +9,6 @@ import (
"strconv"
"github.com/gorilla/handlers"
- "github.com/gorilla/schema"
"gosten/model"
"gosten/templ"
@@ -26,24 +23,19 @@ var (
func init() {
flag.StringVar(&host, "h", "localhost", "address to listen on")
flag.Uint64Var(&port, "p", 8080, "port to listen on")
-
- gob.Register(SessionData{})
}
var Q *model.Queries
-var s *schema.Decoder
func main() {
flag.Parse()
db := openDB("")
-
if err := db.Ping(); err != nil {
log.Fatal(err)
}
Q = model.New(db)
- s = schema.NewDecoder()
mux := http.NewServeMux()
@@ -67,41 +59,12 @@ func main() {
log.Fatal(http.ListenAndServe(address, handler))
}
-type User struct {
- Name string `form:"options=required"`
- Password string `form:"type=password;options=required"`
- RememberMe bool `form:"type=checkbox;value=y;options=checked"`
- Errors []error `form:"-"`
-}
-
-type fieldError struct {
- Field string
- Issue string
-}
-
-func (fe fieldError) Error() string {
- return fmt.Sprintf("%s: %v", fe.Field, fe.Issue)
-}
-
-func (fe fieldError) FieldError() (field, err string) {
- return fe.Field, fe.Issue
-}
-
func showTemplate(w http.ResponseWriter, tpl string, data any) {
if err := templ.Lookup(tpl).Execute(w, data); err != nil {
log.Panicf("Executing '%s' with %+v: %v", tpl, data, err)
}
}
-func parseForm[T any](r *http.Request, data *T) {
- if err := r.ParseForm(); err != nil {
- log.Panic("Parsing form: ", err)
- }
- if err := s.Decode(data, r.PostForm); err != nil {
- log.Panic("Decoding form: ", err)
- }
-}
-
func indexPage() http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
uid := userId(r)