henwen/http/server.go

267 lines
6.2 KiB
Go
Raw Normal View History

2020-03-24 14:59:27 +00:00
package main
import (
2020-03-31 12:58:44 +00:00
"bytes"
2020-03-31 14:47:40 +00:00
"context"
2020-03-31 12:58:44 +00:00
"crypto/rand"
"flag"
2020-03-24 14:59:27 +00:00
"fmt"
"io"
"log"
2020-03-31 12:58:44 +00:00
"math/big"
2020-03-24 14:59:27 +00:00
"net/http"
2020-03-31 14:47:40 +00:00
"net/url"
2020-03-24 14:59:27 +00:00
"time"
2020-04-01 05:49:08 +00:00
hm "gitlab.codemonkeysoftware.net/b/hatmill"
2020-03-24 14:59:27 +00:00
a "gitlab.codemonkeysoftware.net/b/hatmill/attribute"
e "gitlab.codemonkeysoftware.net/b/hatmill/element"
2020-03-31 12:58:44 +00:00
"gitlab.codemonkeysoftware.net/b/henwen"
2020-03-24 14:59:27 +00:00
_ "gitlab.codemonkeysoftware.net/b/henwen"
)
const (
2020-03-31 14:47:40 +00:00
pathRoot = "/"
pathCreate = "/create"
pathDoCreate = "/create/do"
pathAdmin = "/admin"
2020-03-24 14:59:27 +00:00
)
2020-04-01 05:31:30 +00:00
type handler struct {
mux *http.ServeMux
store *henwen.Store
title string
baseURL string
}
type HandlerParams struct {
Title string
Store *henwen.Store
BaseURL string
2020-04-01 05:31:30 +00:00
}
func NewHandler(params HandlerParams) http.Handler {
2020-04-01 05:31:30 +00:00
h := &handler{
store: params.Store,
title: params.Title,
baseURL: params.BaseURL,
mux: http.NewServeMux(),
2020-04-01 05:31:30 +00:00
}
h.mux.HandleFunc(pathRoot, h.handleRoot)
h.mux.HandleFunc(pathCreate, h.handleCreate)
h.mux.HandleFunc(pathDoCreate, h.handleDoCreate)
h.mux.HandleFunc(pathAdmin, h.handleAdmin)
return h
}
func (h *handler) handleRoot(w http.ResponseWriter, r *http.Request) {
2020-04-01 05:49:08 +00:00
body := hm.Terms{
e.H2()(hm.Text("Welcome!")),
e.A(a.Href(pathCreate))(
hm.Text("Create event"),
),
}
_ = h.writePage(w, body)
2020-04-01 05:31:30 +00:00
}
func (h *handler) handleCreate(w http.ResponseWriter, r *http.Request) {
2020-04-01 05:49:08 +00:00
body := hm.Terms{
e.H2()(hm.Text("Create an event")),
e.Form(a.Action(pathDoCreate), a.Method(http.MethodPost))(
e.Label(a.For(fieldNameEventName))(hm.Text("Event name")),
e.Input(a.Name(fieldNameEventName)),
e.Label(a.For(fieldNameDescription))(hm.Text("Description")),
e.Textarea(a.Name(fieldNameDescription), a.Placeholder("What's going on?"))(),
e.Label(a.For(fieldNameEarliest))(hm.Text("Earliest date")),
e.Input(a.Name(fieldNameEarliest), a.Type("date")),
e.Label(a.For(fieldNameLatest))(hm.Text("Latest date")),
e.Input(a.Name(fieldNameLatest), a.Type("date")),
e.Input(a.Type("submit")),
),
}
_ = h.writePage(w, body)
2020-04-01 05:31:30 +00:00
}
func (h *handler) handleDoCreate(w http.ResponseWriter, r *http.Request) {
earliest, err := time.Parse(dateFmt, r.FormValue(fieldNameEarliest))
if err != nil {
fmt.Fprint(w, "bad earliest date")
return
}
latest, err := time.Parse(dateFmt, r.FormValue(fieldNameLatest))
if err != nil {
fmt.Fprint(w, "bad latest date")
return
}
eventName := r.FormValue(fieldNameEventName)
if eventName == "" {
fmt.Fprint(w, "event name is required")
return
}
description := r.FormValue(fieldNameDescription)
2020-04-01 05:52:29 +00:00
event, err := h.store.CreateEvent(context.Background(), henwen.CreateEventCommand{
2020-04-01 05:49:08 +00:00
Name: eventName,
Description: description,
EarliestDate: earliest,
LatestDate: latest,
})
if err != nil {
fmt.Fprint(w, err)
return
2020-03-24 14:59:27 +00:00
}
2020-04-01 05:49:08 +00:00
var adminQuery = make(url.Values)
adminQuery.Add(keyEventID, event.AlphaID)
adminQuery.Add(keyAdminCode, event.AdminCode)
adminURL := h.baseURL + pathAdmin + "?" + adminQuery.Encode()
2020-03-24 14:59:27 +00:00
2020-04-01 05:49:08 +00:00
const dateDisplayFmt = "Monday, January 2, 2006"
2020-03-24 14:59:27 +00:00
2020-04-01 05:49:08 +00:00
body := hm.Terms{
e.H2()(hm.Text("Created event!")),
e.P()(
hm.Text("You can find it again at "),
e.A(a.Href(adminURL))(hm.Text(adminURL)),
hm.Text("."),
),
2020-03-24 14:59:27 +00:00
2020-04-01 05:49:08 +00:00
e.H3()(hm.Text("Name")),
hm.Text(eventName),
2020-04-01 04:36:41 +00:00
2020-04-01 05:49:08 +00:00
e.H3()(hm.Text("Description")),
hm.Text(description),
2020-03-24 14:59:27 +00:00
2020-04-01 05:49:08 +00:00
e.H3()(hm.Text("Earliest date")),
hm.Text(earliest.Format(dateDisplayFmt)),
2020-03-24 14:59:27 +00:00
2020-04-01 05:49:08 +00:00
e.H3()(hm.Text("Latest date")),
hm.Text(latest.Format(dateDisplayFmt)),
2020-03-24 14:59:27 +00:00
}
_ = h.writePage(w, body)
2020-03-24 14:59:27 +00:00
}
2020-04-01 05:49:08 +00:00
func (h *handler) handleAdmin(w http.ResponseWriter, r *http.Request) {
query := r.URL.Query()
2020-04-01 05:52:29 +00:00
event, err := h.store.GetEvent(context.Background(), henwen.GetEventQuery{
2020-04-01 05:49:08 +00:00
AlphaID: query.Get(keyEventID),
AdminCode: query.Get(keyAdminCode),
2020-04-01 04:36:41 +00:00
})
if err != nil {
2020-04-01 05:49:08 +00:00
fmt.Fprint(w, err)
return
2020-04-01 04:36:41 +00:00
}
2020-04-01 05:49:08 +00:00
body := hm.Terms{
e.H2()(hm.Text("Edit your event")),
2020-04-01 04:36:41 +00:00
e.Form(a.Action(pathDoCreate), a.Method(http.MethodPost))(
2020-04-01 05:49:08 +00:00
e.Label(a.For(fieldNameEventName))(hm.Text("Event name")),
2020-04-01 04:36:41 +00:00
e.Input(
a.Name(fieldNameEventName),
a.Value(event.Name),
),
e.Br(),
2020-04-01 05:49:08 +00:00
e.Label(a.For(fieldNameDescription))(hm.Text("Description")),
e.Textarea(a.Name(fieldNameEventName))(hm.Text(event.Description)),
2020-04-01 04:36:41 +00:00
e.Br(),
2020-04-01 05:49:08 +00:00
e.Label(a.For(fieldNameEarliest))(hm.Text("Earliest date")),
2020-04-01 04:36:41 +00:00
e.Input(
a.Name(fieldNameEarliest),
a.Type("date"),
a.Value(event.EarliestDate.Format(dateFmt)),
),
e.Br(),
2020-04-01 05:49:08 +00:00
e.Label(a.For(fieldNameLatest))(hm.Text("Latest date")),
2020-04-01 04:36:41 +00:00
e.Input(
a.Name(fieldNameLatest),
a.Type("date"),
a.Value(event.LatestDate.Format(dateFmt)),
),
e.Br(),
e.Input(a.Type("submit")),
),
}
_ = h.writePage(w, body)
2020-03-31 12:58:44 +00:00
}
2020-04-01 05:49:08 +00:00
func (h *handler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
h.mux.ServeHTTP(w, r)
}
2020-04-01 04:36:41 +00:00
func (h *handler) writePage(w io.Writer, contents hm.Term) error {
2020-04-01 05:49:08 +00:00
page := e.Html()(
e.Head()(
e.Title()(hm.Text(h.title)),
2020-03-31 12:58:44 +00:00
),
2020-04-01 05:49:08 +00:00
e.Body()(
e.H1()(hm.Text(h.title)),
2020-04-01 05:49:08 +00:00
e.Div()(contents),
),
)
_, err := hm.WriteDocument(w, page)
return err
}
2020-03-24 14:59:27 +00:00
2020-04-01 05:49:08 +00:00
const (
fieldNameEarliest = "earliestDate"
fieldNameLatest = "latestDate"
fieldNameEventName = "eventName"
fieldNameDescription = "eventDescription"
)
2020-03-24 14:59:27 +00:00
2020-04-01 05:49:08 +00:00
const keyEventID = "event_id"
const keyAdminCode = "admin_code"
2020-03-24 14:59:27 +00:00
2020-03-31 12:58:44 +00:00
var chars = []byte("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ")
func genString() (string, error) {
const length = 10
charsLength := big.NewInt(int64(len(chars)))
var maxN big.Int
maxN.Exp(charsLength, big.NewInt(length), nil)
n, err := rand.Int(rand.Reader, &maxN)
if err != nil {
return "", err
}
var buf bytes.Buffer
for n.Cmp(&big.Int{}) == 1 {
var charIdx big.Int
n.DivMod(n, charsLength, &charIdx)
_ = buf.WriteByte(chars[charIdx.Int64()])
}
return buf.String(), nil
}
2020-04-01 04:36:41 +00:00
const dateFmt = "2006-01-02"
2020-03-24 14:59:27 +00:00
func main() {
addr := flag.String("address", ":8080", "bind address for HTTP server as host:port")
title := flag.String("title", "Henwen", "website title")
baseURL := flag.String("baseURL", "http://localhost:8080", "base URL for HTTP routes")
dbFileName := flag.String("db", "./henwen.db", "name of database file")
flag.Parse()
store, err := henwen.NewStore(*dbFileName, genString)
2020-03-31 14:47:40 +00:00
if err != nil {
log.Fatal(err)
}
2020-03-24 14:59:27 +00:00
srv := http.Server{
Addr: *addr,
Handler: NewHandler(HandlerParams{
Store: store,
Title: *title,
BaseURL: *baseURL,
}),
2020-03-24 14:59:27 +00:00
}
log.Println(srv.ListenAndServe())
}