henwen/front/server.go

335 lines
8.3 KiB
Go
Raw Normal View History

2020-04-01 06:35:15 +00:00
package front
2020-03-24 14:59:27 +00:00
import (
2020-03-31 14:47:40 +00:00
"context"
2020-03-24 14:59:27 +00:00
"fmt"
"io"
"net/http"
2020-03-31 14:47:40 +00:00
"net/url"
2020-04-16 13:51:24 +00:00
"strconv"
2020-03-24 14:59:27 +00:00
"time"
2020-04-21 14:25:15 +00:00
"github.com/rickb777/date"
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-04-01 06:35:15 +00:00
"gitlab.codemonkeysoftware.net/b/henwen/back"
2020-03-24 14:59:27 +00:00
)
const (
2020-03-31 14:47:40 +00:00
pathRoot = "/"
pathCreate = "/create"
pathDoCreate = "/create/do"
pathAdmin = "/admin"
2020-04-14 04:09:48 +00:00
pathVote = "/vote"
pathDoVote = "/vote/do"
2020-03-24 14:59:27 +00:00
)
2020-04-01 05:31:30 +00:00
type handler struct {
mux *http.ServeMux
2020-04-01 06:35:15 +00:00
store *back.Store
title string
baseURL string
}
type HandlerParams struct {
Title string
2020-04-01 06:35:15 +00:00
Store *back.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)
2020-04-14 04:09:48 +00:00
h.mux.HandleFunc(pathVote, h.handleVote)
h.mux.HandleFunc(pathDoVote, h.handleDoVote)
2020-04-01 05:31:30 +00:00
return h
}
func (h *handler) handleRoot(w http.ResponseWriter, r *http.Request) {
2020-04-01 05:49:08 +00:00
body := hm.Terms{
e.A(a.Href(pathCreate))(
hm.Text("Create event"),
),
}
2020-04-14 05:43:04 +00:00
_ = h.writePage(w, "Welcome!", body)
2020-04-01 05:31:30 +00:00
}
2020-04-14 04:09:48 +00:00
var timeLabels = []string{
"12 AM", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11",
"12 PM", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11",
}
2020-04-14 04:37:36 +00:00
type voteState struct {
2020-04-21 14:25:15 +00:00
name string
earliest, latest date.Date
2020-04-14 04:37:36 +00:00
}
func voteForm(disabled bool, st voteState) hm.Term {
2020-04-21 14:25:15 +00:00
dateSpan := st.latest.Sub(st.earliest)
var dates []date.Date
for offset := date.PeriodOfDays(0); offset <= dateSpan; offset++ {
dates = append(dates, st.earliest.Add(offset))
2020-04-14 05:00:37 +00:00
}
var ths = hm.Terms{e.Th()()}
for _, date := range dates {
ths = append(ths, e.Th()(hm.Text(date.Format("Jan 2"))))
2020-04-14 04:09:48 +00:00
}
2020-04-14 05:00:37 +00:00
var rows = hm.Terms{e.Thead()(ths)}
for hour := 0; hour < 24; hour++ {
2020-04-14 04:09:48 +00:00
var row = hm.Terms{
2020-04-14 05:00:37 +00:00
e.Td()(hm.Text(timeLabels[hour])),
2020-04-14 04:09:48 +00:00
}
2020-04-14 05:00:37 +00:00
for day := 0; day < len(dates); day++ {
2020-05-26 01:43:10 +00:00
row = append(row, e.Td()(e.Input(a.Type("checkbox"), a.Disabled(disabled))))
2020-04-14 04:09:48 +00:00
}
rows = append(rows, e.Tr()(row))
}
2020-04-14 04:37:36 +00:00
return e.Form(a.Method(http.MethodPost), a.Action(pathDoVote))(
e.Label()(hm.Text("What's your name?")),
e.Br(),
2020-05-26 01:43:10 +00:00
e.Input(a.Size(40), a.Value(st.name), a.Disabled(disabled)),
2020-04-14 04:37:36 +00:00
e.Fieldset()(
e.Legend()(hm.Text("When are you available?")),
e.Table()(rows),
),
e.Input(a.Type("submit"), a.Value("Submit")),
)
}
func (h *handler) handleVote(w http.ResponseWriter, r *http.Request) {
2020-04-14 05:29:40 +00:00
query := r.URL.Query()
2020-04-16 13:51:24 +00:00
event, err := h.store.GetEventMetadata(context.Background(), back.GetEventMetadataQuery{
2020-04-14 05:29:40 +00:00
AlphaID: query.Get(keyEventID),
})
// TODO return 404 if event not found
if err != nil {
fmt.Fprint(w, err)
return
}
2020-04-14 05:00:37 +00:00
state := voteState{
2020-04-21 14:25:15 +00:00
earliest: event.Earliest,
latest: event.Latest,
2020-04-14 05:00:37 +00:00
}
2020-04-14 04:09:48 +00:00
body := hm.Terms{
2020-04-14 05:29:40 +00:00
e.P()(hm.Text(event.Description)),
2020-04-14 05:00:37 +00:00
voteForm(false, state),
2020-04-14 04:09:48 +00:00
}
2020-04-14 05:43:04 +00:00
_ = h.writePage(w, event.Name, body)
2020-04-14 04:09:48 +00:00
}
func (h *handler) handleDoVote(w http.ResponseWriter, r *http.Request) {
2020-04-14 05:43:04 +00:00
// TODO Consider redirecting to vote edit page once that exists.
// TODO Use actual data.
2020-04-14 05:00:37 +00:00
state := voteState{
2020-04-21 14:25:15 +00:00
name: "Suzie Q",
earliest: date.New(2006, time.May, 3),
latest: date.New(2006, time.May, 8),
2020-04-14 05:00:37 +00:00
}
2020-04-14 04:09:48 +00:00
body := hm.Terms{
e.P()(hm.Text("At Billy's house. Bring presents. Eat cake.")),
e.H3()(hm.Text("Thanks for voting!")),
e.P()(
hm.Text("You can edit your response anytime at "),
e.A(a.Href("#"))(hm.Text("this link")),
hm.Text("."),
),
2020-04-14 05:00:37 +00:00
voteForm(true, state),
2020-04-14 04:09:48 +00:00
}
2020-04-14 05:43:04 +00:00
_ = h.writePage(w, "Billy's birthday party", body)
2020-04-14 04:09:48 +00:00
}
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.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")),
),
}
2020-04-14 05:43:04 +00:00
_ = h.writePage(w, "Create an event", body)
2020-04-01 05:31:30 +00:00
}
func (h *handler) handleDoCreate(w http.ResponseWriter, r *http.Request) {
2020-04-14 05:43:04 +00:00
// TODO consider redirecting to admin
2020-04-21 14:25:15 +00:00
earliest, err := date.Parse(formDateLayout, r.FormValue(fieldNameEarliest))
2020-04-01 05:31:30 +00:00
if err != nil {
fmt.Fprint(w, "bad earliest date")
return
}
2020-04-21 14:25:15 +00:00
latest, err := date.Parse(formDateLayout, r.FormValue(fieldNameLatest))
2020-04-01 05:31:30 +00:00
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 06:35:15 +00:00
event, err := h.store.CreateEvent(context.Background(), back.CreateEventCommand{
2020-04-21 14:25:15 +00:00
Name: eventName,
Description: description,
Earliest: earliest,
Latest: latest,
2020-04-01 05:49:08 +00:00
})
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-14 05:29:40 +00:00
var voteQuery = make(url.Values)
voteQuery.Add(keyEventID, event.AlphaID)
voteURL := h.baseURL + pathVote + "?" + voteQuery.Encode()
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.P()(
hm.Text("You can find it again at "),
e.A(a.Href(adminURL))(hm.Text(adminURL)),
hm.Text("."),
),
2020-04-14 05:29:40 +00:00
e.P()(
hm.Text("Your guests can vote on times at "),
e.A(a.Href(voteURL))(hm.Text(voteURL)),
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
}
2020-04-14 05:43:04 +00:00
_ = h.writePage(w, "Created event", 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-16 13:51:24 +00:00
eventID := query.Get(keyEventID)
2020-04-14 05:29:40 +00:00
// TODO authenticate with admin code
2020-04-16 13:51:24 +00:00
metadata, err := h.store.GetEventMetadata(context.Background(), back.GetEventMetadataQuery{
AlphaID: eventID,
2020-04-01 04:36:41 +00:00
})
2020-04-14 05:29:40 +00:00
// TODO return 404 if event not found
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
2020-04-16 13:51:24 +00:00
responses, err := h.store.GetEventResponses(context.Background(), back.GetEventResponsesQuery{
AlphaID: eventID,
})
if err != nil {
fmt.Fprint(w, err)
return
}
// TODO show results (number of responses, grid)
2020-04-01 05:49:08 +00:00
body := hm.Terms{
2020-04-01 06:37:39 +00:00
e.Form()(
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),
2020-04-16 13:51:24 +00:00
a.Value(metadata.Name),
2020-04-01 04:36:41 +00:00
),
e.Br(),
2020-04-01 05:49:08 +00:00
e.Label(a.For(fieldNameDescription))(hm.Text("Description")),
2020-04-16 13:51:24 +00:00
e.Textarea(a.Name(fieldNameDescription))(hm.Text(metadata.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"),
2020-04-21 14:25:15 +00:00
a.Value(metadata.Earliest.Format(formDateLayout)),
2020-04-01 04:36:41 +00:00
),
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"),
2020-04-21 14:25:15 +00:00
a.Value(metadata.Latest.Format(formDateLayout)),
2020-04-01 04:36:41 +00:00
),
e.Br(),
e.Input(a.Type("submit")),
),
2020-04-16 13:51:24 +00:00
e.H3()(hm.Text("Responses")),
e.P()(hm.Text(strconv.Itoa(responses.TotalResponses))),
2020-04-01 04:36:41 +00:00
}
2020-04-14 05:43:04 +00:00
_ = h.writePage(w, "Edit your event", 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
2020-04-14 05:43:04 +00:00
func (h *handler) writePage(w io.Writer, title string, contents hm.Term) error {
// TODO Need optional subtitles, and titles should be optional.
// Take a Page struct with title, subtitle, and contents.
2020-04-01 05:49:08 +00:00
page := e.Html()(
e.Head()(
2020-04-14 05:43:04 +00:00
e.Title()(hm.Text(h.title+" — "+title)),
2020-03-31 12:58:44 +00:00
),
2020-04-01 05:49:08 +00:00
e.Body()(
2020-04-14 05:33:31 +00:00
e.H1()(e.A(a.Href(h.baseURL+pathRoot))(hm.Text(h.title))),
2020-04-14 05:43:04 +00:00
e.Div()(
e.H2()(hm.Text(title)),
contents,
),
2020-04-01 05:49:08 +00:00
),
)
_, 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-04-01 06:10:55 +00:00
const formDateLayout = "2006-01-02"