2021-03-18 02:14:06 +00:00
|
|
|
package website
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"context"
|
2021-04-29 03:07:14 +00:00
|
|
|
"fmt"
|
2021-03-26 03:33:00 +00:00
|
|
|
"html"
|
2021-03-18 02:14:06 +00:00
|
|
|
"io"
|
|
|
|
"net/http"
|
|
|
|
"net/url"
|
2021-03-26 03:33:00 +00:00
|
|
|
"path"
|
2021-04-29 03:07:14 +00:00
|
|
|
"regexp"
|
2021-03-26 03:33:00 +00:00
|
|
|
"strings"
|
2021-03-18 02:14:06 +00:00
|
|
|
|
|
|
|
"git.handmade.network/hmn/hmn/src/logging"
|
2021-03-21 20:38:37 +00:00
|
|
|
"git.handmade.network/hmn/hmn/src/models"
|
2021-04-26 06:56:49 +00:00
|
|
|
"git.handmade.network/hmn/hmn/src/perf"
|
2021-03-18 02:14:06 +00:00
|
|
|
"git.handmade.network/hmn/hmn/src/templates"
|
2021-04-06 05:06:19 +00:00
|
|
|
"github.com/jackc/pgx/v4/pgxpool"
|
2021-03-18 02:14:06 +00:00
|
|
|
"github.com/rs/zerolog"
|
|
|
|
)
|
|
|
|
|
2021-04-29 03:07:14 +00:00
|
|
|
type Router struct {
|
|
|
|
Routes []Route
|
|
|
|
}
|
|
|
|
|
|
|
|
type Route struct {
|
|
|
|
Method string
|
|
|
|
Regex *regexp.Regexp
|
|
|
|
Handler Handler
|
|
|
|
}
|
|
|
|
|
|
|
|
type RouteBuilder struct {
|
|
|
|
Router *Router
|
|
|
|
Middleware Middleware
|
|
|
|
}
|
|
|
|
|
|
|
|
type Handler func(c *RequestContext) ResponseData
|
|
|
|
|
|
|
|
func WrapStdHandler(h http.Handler) Handler {
|
|
|
|
return func(c *RequestContext) (res ResponseData) {
|
|
|
|
h.ServeHTTP(&res, c.Req)
|
|
|
|
return res
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type Middleware func(h Handler) Handler
|
|
|
|
|
|
|
|
func (rb *RouteBuilder) Handle(method string, regexStr string, h Handler) {
|
|
|
|
h = rb.Middleware(h)
|
|
|
|
rb.Router.Routes = append(rb.Router.Routes, Route{
|
|
|
|
Method: method,
|
|
|
|
Regex: regexp.MustCompile(regexStr),
|
|
|
|
Handler: h,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func (rb *RouteBuilder) AnyMethod(regexStr string, h Handler) {
|
|
|
|
rb.Handle("", regexStr, h)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (rb *RouteBuilder) GET(regexStr string, h Handler) {
|
|
|
|
rb.Handle(http.MethodGet, regexStr, h)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (rb *RouteBuilder) POST(regexStr string, h Handler) {
|
2021-05-03 22:45:17 +00:00
|
|
|
rb.Handle(http.MethodPost, regexStr, h)
|
2021-04-29 03:07:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (rb *RouteBuilder) StdHandler(regexStr string, h http.Handler) {
|
2021-04-29 03:34:22 +00:00
|
|
|
rb.Handle("", regexStr, WrapStdHandler(h))
|
2021-04-29 03:07:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Router) ServeHTTP(rw http.ResponseWriter, req *http.Request) {
|
|
|
|
path := req.URL.Path
|
|
|
|
for _, route := range r.Routes {
|
|
|
|
if route.Method != "" && req.Method != route.Method {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
match := route.Regex.FindStringSubmatch(path)
|
|
|
|
if match == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
c := &RequestContext{
|
2021-04-29 03:34:22 +00:00
|
|
|
Route: route.Regex.String(),
|
2021-04-29 03:07:14 +00:00
|
|
|
Logger: logging.GlobalLogger(),
|
|
|
|
Req: req,
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(match) > 0 {
|
|
|
|
params := map[string]string{}
|
|
|
|
subexpNames := route.Regex.SubexpNames()
|
|
|
|
for i, paramValue := range match {
|
|
|
|
paramName := subexpNames[i]
|
|
|
|
if paramName == "" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
params[paramName] = paramValue
|
|
|
|
}
|
|
|
|
c.PathParams = params
|
|
|
|
}
|
|
|
|
|
|
|
|
doRequest(rw, c, route.Handler)
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-05-04 12:02:33 +00:00
|
|
|
// TODO(asaf): Replace this with a 404 handler? Isn't this going to crash the server?
|
|
|
|
// We're doing panic recovery in doRequest, but not here. I don't think we should have this line in production.
|
2021-04-29 03:07:14 +00:00
|
|
|
panic(fmt.Sprintf("Path '%s' did not match any routes! Make sure to register a wildcard route to act as a 404.", path))
|
2021-03-31 04:20:50 +00:00
|
|
|
}
|
|
|
|
|
2021-03-18 02:14:06 +00:00
|
|
|
type RequestContext struct {
|
2021-04-29 03:07:14 +00:00
|
|
|
Route string
|
2021-03-21 20:38:37 +00:00
|
|
|
Logger *zerolog.Logger
|
|
|
|
Req *http.Request
|
2021-04-29 03:07:14 +00:00
|
|
|
PathParams map[string]string
|
2021-03-21 20:38:37 +00:00
|
|
|
|
2021-04-06 05:06:19 +00:00
|
|
|
Conn *pgxpool.Pool
|
2021-04-06 03:30:11 +00:00
|
|
|
CurrentProject *models.Project
|
|
|
|
CurrentUser *models.User
|
2021-03-18 02:14:06 +00:00
|
|
|
|
2021-04-29 03:07:14 +00:00
|
|
|
Perf *perf.RequestPerf
|
2021-03-18 02:14:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *RequestContext) Context() context.Context {
|
2021-03-21 20:38:37 +00:00
|
|
|
return c.Req.Context()
|
2021-03-18 02:14:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *RequestContext) URL() *url.URL {
|
2021-03-21 20:38:37 +00:00
|
|
|
return c.Req.URL
|
2021-03-18 02:14:06 +00:00
|
|
|
}
|
|
|
|
|
2021-03-26 03:33:00 +00:00
|
|
|
func (c *RequestContext) GetFormValues() (url.Values, error) {
|
|
|
|
err := c.Req.ParseForm()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return c.Req.PostForm, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// The logic of this function is copy-pasted from the Go standard library.
|
|
|
|
// https://golang.org/pkg/net/http/#Redirect
|
2021-04-06 03:30:11 +00:00
|
|
|
func (c *RequestContext) Redirect(dest string, code int) ResponseData {
|
|
|
|
var res ResponseData
|
|
|
|
|
2021-03-26 03:33:00 +00:00
|
|
|
if u, err := url.Parse(dest); err == nil {
|
|
|
|
// If url was relative, make its path absolute by
|
|
|
|
// combining with request path.
|
|
|
|
// The client would probably do this for us,
|
|
|
|
// but doing it ourselves is more reliable.
|
|
|
|
// See RFC 7231, section 7.1.2
|
|
|
|
if u.Scheme == "" && u.Host == "" {
|
|
|
|
oldpath := c.Req.URL.Path
|
|
|
|
if oldpath == "" { // should not happen, but avoid a crash if it does
|
|
|
|
oldpath = "/"
|
|
|
|
}
|
|
|
|
|
|
|
|
// no leading http://server
|
|
|
|
if dest == "" || dest[0] != '/' {
|
|
|
|
// make relative path absolute
|
|
|
|
olddir, _ := path.Split(oldpath)
|
|
|
|
dest = olddir + dest
|
|
|
|
}
|
|
|
|
|
|
|
|
var query string
|
|
|
|
if i := strings.Index(dest, "?"); i != -1 {
|
|
|
|
dest, query = dest[:i], dest[i:]
|
|
|
|
}
|
|
|
|
|
|
|
|
// clean up but preserve trailing slash
|
|
|
|
trailing := strings.HasSuffix(dest, "/")
|
|
|
|
dest = path.Clean(dest)
|
|
|
|
if trailing && !strings.HasSuffix(dest, "/") {
|
|
|
|
dest += "/"
|
|
|
|
}
|
|
|
|
dest += query
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Escape stuff
|
|
|
|
destUrl, _ := url.Parse(dest)
|
|
|
|
dest = destUrl.String()
|
|
|
|
|
2021-04-29 03:07:14 +00:00
|
|
|
res.Header().Set("Location", dest)
|
2021-04-06 03:30:11 +00:00
|
|
|
if c.Req.Method == "GET" || c.Req.Method == "HEAD" {
|
2021-04-29 03:07:14 +00:00
|
|
|
res.Header().Set("Content-Type", "text/html; charset=utf-8")
|
2021-03-26 03:33:00 +00:00
|
|
|
}
|
2021-04-06 03:30:11 +00:00
|
|
|
res.StatusCode = code
|
2021-03-26 03:33:00 +00:00
|
|
|
|
|
|
|
// Shouldn't send the body for POST or HEAD; that leaves GET.
|
2021-04-06 03:30:11 +00:00
|
|
|
if c.Req.Method == "GET" {
|
|
|
|
res.Write([]byte("<a href=\"" + html.EscapeString(dest) + "\">" + http.StatusText(code) + "</a>.\n"))
|
2021-03-26 03:33:00 +00:00
|
|
|
}
|
|
|
|
|
2021-04-06 03:30:11 +00:00
|
|
|
return res
|
2021-03-18 02:14:06 +00:00
|
|
|
}
|
|
|
|
|
2021-04-06 05:06:19 +00:00
|
|
|
type ResponseData struct {
|
|
|
|
StatusCode int
|
|
|
|
Body *bytes.Buffer
|
|
|
|
Errors []error
|
|
|
|
|
|
|
|
header http.Header
|
|
|
|
}
|
|
|
|
|
2021-04-29 03:07:14 +00:00
|
|
|
var _ http.ResponseWriter = &ResponseData{}
|
|
|
|
|
|
|
|
func (rd *ResponseData) Header() http.Header {
|
2021-04-06 05:06:19 +00:00
|
|
|
if rd.header == nil {
|
|
|
|
rd.header = make(http.Header)
|
|
|
|
}
|
|
|
|
|
|
|
|
return rd.header
|
|
|
|
}
|
|
|
|
|
|
|
|
func (rd *ResponseData) Write(p []byte) (n int, err error) {
|
|
|
|
if rd.Body == nil {
|
|
|
|
rd.Body = new(bytes.Buffer)
|
|
|
|
}
|
|
|
|
|
|
|
|
return rd.Body.Write(p)
|
|
|
|
}
|
|
|
|
|
2021-04-29 03:07:14 +00:00
|
|
|
func (rd *ResponseData) WriteHeader(status int) {
|
|
|
|
rd.StatusCode = status
|
|
|
|
}
|
|
|
|
|
2021-04-06 05:06:19 +00:00
|
|
|
func (rd *ResponseData) SetCookie(cookie *http.Cookie) {
|
2021-04-29 03:07:14 +00:00
|
|
|
rd.Header().Add("Set-Cookie", cookie.String())
|
2021-04-06 05:06:19 +00:00
|
|
|
}
|
|
|
|
|
2021-04-26 06:56:49 +00:00
|
|
|
func (rd *ResponseData) WriteTemplate(name string, data interface{}, rp *perf.RequestPerf) error {
|
|
|
|
if rp != nil {
|
|
|
|
rp.StartBlock("TEMPLATE", name)
|
|
|
|
defer rp.EndBlock()
|
|
|
|
}
|
2021-04-06 03:30:11 +00:00
|
|
|
return templates.Templates[name].Execute(rd, data)
|
2021-03-21 20:38:37 +00:00
|
|
|
}
|
|
|
|
|
2021-04-06 03:30:11 +00:00
|
|
|
func ErrorResponse(status int, errs ...error) ResponseData {
|
|
|
|
return ResponseData{
|
|
|
|
StatusCode: status,
|
|
|
|
Errors: errs,
|
|
|
|
}
|
2021-03-21 20:38:37 +00:00
|
|
|
}
|
|
|
|
|
2021-04-29 03:07:14 +00:00
|
|
|
func doRequest(rw http.ResponseWriter, c *RequestContext, h Handler) {
|
2021-04-06 03:30:11 +00:00
|
|
|
defer func() {
|
|
|
|
/*
|
|
|
|
This panic recovery is the last resort. If you want to render
|
|
|
|
an error page or something, make it a request wrapper.
|
|
|
|
*/
|
|
|
|
if recovered := recover(); recovered != nil {
|
|
|
|
rw.WriteHeader(http.StatusInternalServerError)
|
|
|
|
logging.LogPanicValue(c.Logger, recovered, "request panicked and was not handled")
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
res := h(c)
|
2021-03-21 20:38:37 +00:00
|
|
|
|
2021-04-06 03:30:11 +00:00
|
|
|
if res.StatusCode == 0 {
|
|
|
|
res.StatusCode = http.StatusOK
|
|
|
|
}
|
2021-03-18 02:14:06 +00:00
|
|
|
|
2021-04-29 03:07:14 +00:00
|
|
|
for name, vals := range res.Header() {
|
2021-04-06 03:30:11 +00:00
|
|
|
for _, val := range vals {
|
|
|
|
rw.Header().Add(name, val)
|
|
|
|
}
|
2021-03-18 02:14:06 +00:00
|
|
|
}
|
2021-04-06 03:30:11 +00:00
|
|
|
rw.WriteHeader(res.StatusCode)
|
2021-04-22 23:02:50 +00:00
|
|
|
|
|
|
|
if res.Body != nil {
|
|
|
|
io.Copy(rw, res.Body)
|
|
|
|
}
|
2021-03-18 02:14:06 +00:00
|
|
|
}
|