forked from Fuyu/router
Compare commits
No commits in common. "master" and "master" have entirely different histories.
10
context.go
10
context.go
@ -70,17 +70,9 @@ func (c *Context) NoContent(code int) error {
|
|||||||
|
|
||||||
// JSON returns the given status code and writes JSON to the body
|
// JSON returns the given status code and writes JSON to the body
|
||||||
func (c *Context) JSON(code int, data interface{}) error {
|
func (c *Context) JSON(code int, data interface{}) error {
|
||||||
// write to buffer first in case of error
|
|
||||||
var buf bytes.Buffer
|
|
||||||
err := json.NewEncoder(&buf).Encode(data)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
c.Response.Header().Set(`Content-Type`, `application/json`)
|
c.Response.Header().Set(`Content-Type`, `application/json`)
|
||||||
c.Response.WriteHeader(code)
|
c.Response.WriteHeader(code)
|
||||||
_, err = io.Copy(c.Response, &buf)
|
return json.NewEncoder(c.Response).Encode(data) // TODO: Encode to buffer first to prevent partial responses on error
|
||||||
return err
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Render renders a templating using the Renderer set in router
|
// Render renders a templating using the Renderer set in router
|
||||||
|
@ -13,7 +13,7 @@ func defaultMethodNotAllowedHandler(c *Context) error {
|
|||||||
return c.StatusText(http.StatusMethodNotAllowed)
|
return c.StatusText(http.StatusMethodNotAllowed)
|
||||||
}
|
}
|
||||||
|
|
||||||
func defaultErrorHandler(c *Context, _ interface{}) {
|
func defaultErrorHandler(c *Context, err interface{}) {
|
||||||
_ = c.StatusText(http.StatusInternalServerError)
|
_ = c.StatusText(http.StatusInternalServerError)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
5
go.mod
5
go.mod
@ -1,5 +0,0 @@
|
|||||||
module git.fuyu.moe/Fuyu/router
|
|
||||||
|
|
||||||
go 1.22.0
|
|
||||||
|
|
||||||
require github.com/julienschmidt/httprouter v1.3.0
|
|
2
go.sum
2
go.sum
@ -1,2 +0,0 @@
|
|||||||
github.com/julienschmidt/httprouter v1.3.0 h1:U0609e9tgbseu3rBINet9P48AI/D3oJs4dN7jwJOQ1U=
|
|
||||||
github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM=
|
|
21
group.go
21
group.go
@ -1,9 +1,6 @@
|
|||||||
package router
|
package router
|
||||||
|
|
||||||
import (
|
import urlpath "path"
|
||||||
urlpath "path"
|
|
||||||
"slices"
|
|
||||||
)
|
|
||||||
|
|
||||||
func join(prefix, path string) string {
|
func join(prefix, path string) string {
|
||||||
return urlpath.Join(prefix, urlpath.Clean(path))
|
return urlpath.Join(prefix, urlpath.Clean(path))
|
||||||
@ -18,40 +15,40 @@ type Group struct {
|
|||||||
|
|
||||||
// Group creates a new router group with a shared prefix and set of middlewares
|
// Group creates a new router group with a shared prefix and set of middlewares
|
||||||
func (g *Group) Group(prefix string, middleware ...Middleware) *Group {
|
func (g *Group) Group(prefix string, middleware ...Middleware) *Group {
|
||||||
return &Group{prefix: join(g.prefix, prefix), router: g.router, middleware: slices.Concat(g.middleware, middleware)}
|
return &Group{prefix: join(g.prefix, prefix), router: g.router, middleware: append(g.middleware, middleware...)}
|
||||||
}
|
}
|
||||||
|
|
||||||
// GET adds a GET route
|
// GET adds a GET route
|
||||||
func (g *Group) GET(path string, handle Handle, middleware ...Middleware) {
|
func (g *Group) GET(path string, handle Handle, middleware ...Middleware) {
|
||||||
g.router.GET(join(g.prefix, path), handle, slices.Concat(g.middleware, middleware)...)
|
g.router.GET(join(g.prefix, path), handle, append(g.middleware, middleware...)...)
|
||||||
}
|
}
|
||||||
|
|
||||||
// POST adds a POST route
|
// POST adds a POST route
|
||||||
func (g *Group) POST(path string, handle interface{}, middleware ...Middleware) {
|
func (g *Group) POST(path string, handle interface{}, middleware ...Middleware) {
|
||||||
g.router.POST(join(g.prefix, path), handle, slices.Concat(g.middleware, middleware)...)
|
g.router.POST(join(g.prefix, path), handle, append(g.middleware, middleware...)...)
|
||||||
}
|
}
|
||||||
|
|
||||||
// DELETE adds a DELETE route
|
// DELETE adds a DELETE route
|
||||||
func (g *Group) DELETE(path string, handle Handle, middleware ...Middleware) {
|
func (g *Group) DELETE(path string, handle Handle, middleware ...Middleware) {
|
||||||
g.router.DELETE(join(g.prefix, path), handle, slices.Concat(g.middleware, middleware)...)
|
g.router.DELETE(join(g.prefix, path), handle, append(g.middleware, middleware...)...)
|
||||||
}
|
}
|
||||||
|
|
||||||
// PUT adds a PUT route
|
// PUT adds a PUT route
|
||||||
func (g *Group) PUT(path string, handle interface{}, middleware ...Middleware) {
|
func (g *Group) PUT(path string, handle interface{}, middleware ...Middleware) {
|
||||||
g.router.PUT(join(g.prefix, path), handle, slices.Concat(g.middleware, middleware)...)
|
g.router.PUT(join(g.prefix, path), handle, append(g.middleware, middleware...)...)
|
||||||
}
|
}
|
||||||
|
|
||||||
// PATCH adds a PATCH route
|
// PATCH adds a PATCH route
|
||||||
func (g *Group) PATCH(path string, handle interface{}, middleware ...Middleware) {
|
func (g *Group) PATCH(path string, handle interface{}, middleware ...Middleware) {
|
||||||
g.router.PATCH(join(g.prefix, path), handle, slices.Concat(g.middleware, middleware)...)
|
g.router.PATCH(join(g.prefix, path), handle, append(g.middleware, middleware...)...)
|
||||||
}
|
}
|
||||||
|
|
||||||
// HEAD adds a HEAD route
|
// HEAD adds a HEAD route
|
||||||
func (g *Group) HEAD(path string, handle Handle, middleware ...Middleware) {
|
func (g *Group) HEAD(path string, handle Handle, middleware ...Middleware) {
|
||||||
g.router.HEAD(join(g.prefix, path), handle, slices.Concat(g.middleware, middleware)...)
|
g.router.HEAD(join(g.prefix, path), handle, append(g.middleware, middleware...)...)
|
||||||
}
|
}
|
||||||
|
|
||||||
// OPTIONS adds a OPTIONS route
|
// OPTIONS adds a OPTIONS route
|
||||||
func (g *Group) OPTIONS(path string, handle Handle, middleware ...Middleware) {
|
func (g *Group) OPTIONS(path string, handle Handle, middleware ...Middleware) {
|
||||||
g.router.OPTIONS(join(g.prefix, path), handle, slices.Concat(g.middleware, middleware)...)
|
g.router.OPTIONS(join(g.prefix, path), handle, append(g.middleware, middleware...)...)
|
||||||
}
|
}
|
||||||
|
20
router.go
20
router.go
@ -3,10 +3,8 @@ package router
|
|||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"crypto/tls"
|
"crypto/tls"
|
||||||
"errors"
|
|
||||||
"net/http"
|
"net/http"
|
||||||
"reflect"
|
"reflect"
|
||||||
"slices"
|
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/julienschmidt/httprouter"
|
"github.com/julienschmidt/httprouter"
|
||||||
@ -46,12 +44,7 @@ type Router struct {
|
|||||||
|
|
||||||
// New returns a new Router
|
// New returns a new Router
|
||||||
func New() *Router {
|
func New() *Router {
|
||||||
return &Router{
|
return &Router{Reader: defaultReader, NotFoundHandler: defaultNotFoundHandler, MethodNotAllowedHandler: defaultMethodNotAllowedHandler, ErrorHandler: defaultErrorHandler}
|
||||||
Reader: defaultReader,
|
|
||||||
NotFoundHandler: defaultNotFoundHandler,
|
|
||||||
MethodNotAllowedHandler: defaultMethodNotAllowedHandler,
|
|
||||||
ErrorHandler: defaultErrorHandler,
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Use adds a global middleware
|
// Use adds a global middleware
|
||||||
@ -127,7 +120,7 @@ func (r *Router) Stop() error {
|
|||||||
ctx, cancel := context.WithTimeout(context.Background(), time.Second*5)
|
ctx, cancel := context.WithTimeout(context.Background(), time.Second*5)
|
||||||
defer cancel()
|
defer cancel()
|
||||||
err := r.server.Shutdown(ctx)
|
err := r.server.Shutdown(ctx)
|
||||||
if errors.Is(err, context.DeadlineExceeded) {
|
if err == context.DeadlineExceeded {
|
||||||
err = r.server.Close()
|
err = r.server.Close()
|
||||||
}
|
}
|
||||||
r.server = nil
|
r.server = nil
|
||||||
@ -144,9 +137,11 @@ func (r *Router) getHttpr() http.Handler {
|
|||||||
handle = handlePOST(r, v.Handle)
|
handle = handlePOST(r, v.Handle)
|
||||||
}
|
}
|
||||||
|
|
||||||
httpr.Handle(v.Method, v.Path, handleReq(r, handle,
|
middleware := make([]Middleware, len(r.middleware)+len(v.Middleware))
|
||||||
slices.Concat(r.middleware, v.Middleware),
|
copy(middleware, r.middleware)
|
||||||
))
|
copy(middleware[len(r.middleware):], v.Middleware)
|
||||||
|
|
||||||
|
httpr.Handle(v.Method, v.Path, handleReq(r, handle, middleware))
|
||||||
}
|
}
|
||||||
|
|
||||||
httpr.NotFound = http.HandlerFunc(func(res http.ResponseWriter, req *http.Request) {
|
httpr.NotFound = http.HandlerFunc(func(res http.ResponseWriter, req *http.Request) {
|
||||||
@ -237,6 +232,7 @@ func handleReq(r *Router, handle Handle, m []Middleware) httprouter.Handle {
|
|||||||
}
|
}
|
||||||
|
|
||||||
err := f(c)
|
err := f(c)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
r.ErrorHandler(c, err)
|
r.ErrorHandler(c, err)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user