httpr/httpr.go

208 lines
4.5 KiB
Go
Raw Normal View History

2023-05-26 04:06:35 +04:00
package httpr
import (
"context"
"errors"
"net/http"
"strings"
)
type path []string
// newPath splits a path and ensures that it starts with a slash (/) and doesn't
// have more than 1 catch-all parameter.
2023-05-26 04:06:35 +04:00
func newPath(path string) (path, error) {
if path[0] != '/' {
2023-05-26 04:06:35 +04:00
return nil, errors.New("path should start with a slash (/) symbol")
}
if strings.Count(path, "*") > 1 {
return nil, errors.New("there can be only one catch-all (*) parameter in path")
}
parts := strings.Split(strings.TrimSuffix(path, "/"), "/")
2023-05-26 04:06:35 +04:00
parts[0] = "/"
2023-05-26 04:06:35 +04:00
return parts, nil
}
// Params holds path parameters that are set as :key.
type Params map[string]string
type paramsKey struct{}
// ParamsKey is used as a key for Params in a request's Context.
var ParamsKey paramsKey = paramsKey{}
type node struct {
endpoint string
children []*node
handler http.HandlerFunc
}
func (n *node) get(path path) (http.HandlerFunc, Params) {
pathLen := len(path)
curNode := n
outer:
for i := range path {
// Check if this node is a catch-all endpoint.
if curNode.endpoint[0] == '*' {
var p Params = Params{}
p[curNode.endpoint[1:]] = strings.Join(path[i:], "/")
return curNode.handler, p
}
2023-05-26 04:06:35 +04:00
// If this is a parametrised endpoint, then add its name to
// a path's part. It will be used further to parse parameters.
if curNode.endpoint[0] == ':' {
path[i] = curNode.endpoint + ":" + path[i]
}
2023-05-26 04:06:35 +04:00
if pathLen == i+1 {
var params Params = make(Params)
2023-05-26 04:06:35 +04:00
for _, part := range path {
if part[0] == ':' {
param := strings.Split(part[1:], ":")
params[param[0]] = param[1]
}
2023-05-26 04:06:35 +04:00
}
return n.handler, params
}
2023-05-26 04:06:35 +04:00
if pathLen > i+1 {
var paramNode *node
for _, next := range n.children {
if next.endpoint == path[i+1] {
curNode = next
continue outer
}
if next.endpoint[0] == ':' || next.endpoint[0] == '*' {
paramNode = next
}
2023-05-26 04:06:35 +04:00
}
if paramNode != nil {
curNode = paramNode
continue
2023-05-26 04:06:35 +04:00
}
}
}
return nil, nil
}
func (n *node) add(path path, handler http.HandlerFunc) error {
pathLen := len(path)
curNode := n
2023-05-26 04:06:35 +04:00
outer:
for i := range path {
if pathLen == i+1 {
if curNode.handler != nil {
return errors.New("attempt to redefine a handler for already existing path")
2023-05-26 04:06:35 +04:00
}
curNode.endpoint = path[i]
curNode.handler = handler
return nil
2023-05-26 04:06:35 +04:00
}
2023-05-28 02:43:09 +04:00
for _, child := range curNode.children {
firstChar := path[i+1][0]
if (firstChar == ':' || firstChar == '*') && firstChar == child.endpoint[0] {
curNode = child
continue outer
}
if child.endpoint == path[i+1] {
curNode = child
continue outer
}
2023-05-26 04:06:35 +04:00
}
newChild := &node{endpoint: path[i+1]}
curNode.children = append(curNode.children, newChild)
curNode = newChild
}
2023-05-26 04:06:35 +04:00
return nil
}
type Router struct {
tree map[string]*node
NotFoundHandler http.HandlerFunc
}
func New() *Router {
return &Router{tree: make(map[string]*node)}
}
func (rr *Router) ServeHTTP(w http.ResponseWriter, r *http.Request) {
if tree, ok := rr.tree[r.Method]; ok {
path, err := newPath(r.URL.Path)
if err != nil {
http.Error(w, err.Error(), http.StatusNotAcceptable)
return
2023-05-26 04:06:35 +04:00
}
if handler, params := tree.get(path); handler != nil {
2023-05-26 04:06:35 +04:00
if params != nil {
r = r.WithContext(context.WithValue(r.Context(), ParamsKey, params))
}
handler(w, r)
} else {
if rr.NotFoundHandler != nil {
rr.NotFoundHandler(w, r)
} else {
http.Error(w, "Not Found", http.StatusNotFound)
}
}
} else {
http.Error(w, http.StatusText(http.StatusMethodNotAllowed), http.StatusMethodNotAllowed)
}
}
// Handler registers a handler for provided pattern for a given HTTP method.
func (rr *Router) Handler(method, pattern string, handler http.HandlerFunc) error {
path, err := newPath(pattern)
if err != nil {
return err
2023-05-26 04:06:35 +04:00
}
if rr.tree[method] == nil {
rr.tree[method] = &node{endpoint: "/"}
}
if err := rr.tree[method].add(path, handler); err != nil {
return err
}
2023-05-26 04:06:35 +04:00
return nil
2023-05-26 04:06:35 +04:00
}
// ServeStatic serves a given file system.
//
// Path should end with /*filepath to work.
2023-05-28 01:49:21 +04:00
func (rr *Router) ServeStatic(path string, root http.FileSystem) error {
2023-05-26 04:06:35 +04:00
fileServer := http.FileServer(root)
2023-05-28 01:49:21 +04:00
return rr.Handler(http.MethodGet, path, func(w http.ResponseWriter, r *http.Request) {
2023-05-26 04:06:35 +04:00
r.URL.Path = Param(r, "filepath")
fileServer.ServeHTTP(w, r)
})
}
2023-05-28 03:16:41 +04:00
// Param returns a URL parameter (that is set like `/a/b/:key/d`) with a key
// or an empty string if no such parameter found.
2023-05-26 04:06:35 +04:00
func Param(r *http.Request, key string) string {
if params := r.Context().Value(ParamsKey).(Params); params != nil {
return params[key]
}
return ""
}