forked from Fuyu/router
Compare commits
3 commits
Author | SHA1 | Date | |
---|---|---|---|
309d04c19f | |||
283c75b32e | |||
66ae2a435c |
6 changed files with 64 additions and 26 deletions
25
context.go
25
context.go
|
@ -70,9 +70,17 @@ 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)
|
||||||
return json.NewEncoder(c.Response).Encode(data) // TODO: Encode to buffer first to prevent partial responses on error
|
_, err = io.Copy(c.Response, &buf)
|
||||||
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
// Render renders a templating using the Renderer set in router
|
// Render renders a templating using the Renderer set in router
|
||||||
|
@ -105,14 +113,17 @@ func (c *Context) Get(key string) interface{} {
|
||||||
|
|
||||||
// RealIP uses proxy headers for the real ip, if none exist the IP of the current connection is returned
|
// RealIP uses proxy headers for the real ip, if none exist the IP of the current connection is returned
|
||||||
func (c *Context) RealIP() string {
|
func (c *Context) RealIP() string {
|
||||||
|
reqIP := c.Request.RemoteAddr
|
||||||
|
|
||||||
if ip := c.Request.Header.Get(`X-Forwarded-For`); ip != `` {
|
if ip := c.Request.Header.Get(`X-Forwarded-For`); ip != `` {
|
||||||
return strings.Split(ip, `, `)[0]
|
reqIP = strings.Split(ip, `, `)[0]
|
||||||
|
} else if ip := c.Request.Header.Get(`X-Real-IP`); ip != `` {
|
||||||
|
reqIP = ip
|
||||||
}
|
}
|
||||||
|
|
||||||
if ip := c.Request.Header.Get(`X-Real-IP`); ip != `` {
|
ra, _, _ := net.SplitHostPort(reqIP)
|
||||||
return ip
|
if ra != `` {
|
||||||
|
reqIP = ra
|
||||||
}
|
}
|
||||||
|
return reqIP
|
||||||
ra, _, _ := net.SplitHostPort(c.Request.RemoteAddr)
|
|
||||||
return ra
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,7 @@ func defaultMethodNotAllowedHandler(c *Context) error {
|
||||||
return c.StatusText(http.StatusMethodNotAllowed)
|
return c.StatusText(http.StatusMethodNotAllowed)
|
||||||
}
|
}
|
||||||
|
|
||||||
func defaultErrorHandler(c *Context, err interface{}) {
|
func defaultErrorHandler(c *Context, _ interface{}) {
|
||||||
_ = c.StatusText(http.StatusInternalServerError)
|
_ = c.StatusText(http.StatusInternalServerError)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
5
go.mod
Normal file
5
go.mod
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
module git.fuyu.moe/Fuyu/router
|
||||||
|
|
||||||
|
go 1.22.0
|
||||||
|
|
||||||
|
require github.com/julienschmidt/httprouter v1.3.0
|
2
go.sum
Normal file
2
go.sum
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
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,6 +1,9 @@
|
||||||
package router
|
package router
|
||||||
|
|
||||||
import urlpath "path"
|
import (
|
||||||
|
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))
|
||||||
|
@ -15,40 +18,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: append(g.middleware, middleware...)}
|
return &Group{prefix: join(g.prefix, prefix), router: g.router, middleware: slices.Concat(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, append(g.middleware, middleware...)...)
|
g.router.GET(join(g.prefix, path), handle, slices.Concat(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, append(g.middleware, middleware...)...)
|
g.router.POST(join(g.prefix, path), handle, slices.Concat(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, append(g.middleware, middleware...)...)
|
g.router.DELETE(join(g.prefix, path), handle, slices.Concat(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, append(g.middleware, middleware...)...)
|
g.router.PUT(join(g.prefix, path), handle, slices.Concat(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, append(g.middleware, middleware...)...)
|
g.router.PATCH(join(g.prefix, path), handle, slices.Concat(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, append(g.middleware, middleware...)...)
|
g.router.HEAD(join(g.prefix, path), handle, slices.Concat(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, append(g.middleware, middleware...)...)
|
g.router.OPTIONS(join(g.prefix, path), handle, slices.Concat(g.middleware, middleware)...)
|
||||||
}
|
}
|
||||||
|
|
35
router.go
35
router.go
|
@ -3,8 +3,10 @@ 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"
|
||||||
|
@ -38,12 +40,18 @@ type Router struct {
|
||||||
NotFoundHandler Handle
|
NotFoundHandler Handle
|
||||||
MethodNotAllowedHandler Handle
|
MethodNotAllowedHandler Handle
|
||||||
ErrorHandler ErrorHandle
|
ErrorHandler ErrorHandle
|
||||||
|
TrimTrailingSlashes bool
|
||||||
server *http.Server
|
server *http.Server
|
||||||
}
|
}
|
||||||
|
|
||||||
// New returns a new Router
|
// New returns a new Router
|
||||||
func New() *Router {
|
func New() *Router {
|
||||||
return &Router{Reader: defaultReader, NotFoundHandler: defaultNotFoundHandler, MethodNotAllowedHandler: defaultMethodNotAllowedHandler, ErrorHandler: defaultErrorHandler}
|
return &Router{
|
||||||
|
Reader: defaultReader,
|
||||||
|
NotFoundHandler: defaultNotFoundHandler,
|
||||||
|
MethodNotAllowedHandler: defaultMethodNotAllowedHandler,
|
||||||
|
ErrorHandler: defaultErrorHandler,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Use adds a global middleware
|
// Use adds a global middleware
|
||||||
|
@ -119,7 +127,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 err == context.DeadlineExceeded {
|
if errors.Is(err, context.DeadlineExceeded) {
|
||||||
err = r.server.Close()
|
err = r.server.Close()
|
||||||
}
|
}
|
||||||
r.server = nil
|
r.server = nil
|
||||||
|
@ -127,7 +135,7 @@ func (r *Router) Stop() error {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *Router) getHttpr() *httprouter.Router {
|
func (r *Router) getHttpr() http.Handler {
|
||||||
httpr := httprouter.New()
|
httpr := httprouter.New()
|
||||||
|
|
||||||
for _, v := range r.routes {
|
for _, v := range r.routes {
|
||||||
|
@ -136,11 +144,9 @@ func (r *Router) getHttpr() *httprouter.Router {
|
||||||
handle = handlePOST(r, v.Handle)
|
handle = handlePOST(r, v.Handle)
|
||||||
}
|
}
|
||||||
|
|
||||||
middleware := make([]Middleware, len(r.middleware)+len(v.Middleware))
|
httpr.Handle(v.Method, v.Path, handleReq(r, handle,
|
||||||
copy(middleware, r.middleware)
|
slices.Concat(r.middleware, v.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) {
|
||||||
|
@ -156,6 +162,18 @@ func (r *Router) getHttpr() *httprouter.Router {
|
||||||
r.ErrorHandler(c, err)
|
r.ErrorHandler(c, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if r.TrimTrailingSlashes {
|
||||||
|
httpr.RedirectTrailingSlash = false
|
||||||
|
|
||||||
|
return http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
|
||||||
|
l := len(req.URL.Path)
|
||||||
|
if l > 1 && req.URL.Path[l-1] == '/' {
|
||||||
|
req.URL.Path = req.URL.Path[:l-1]
|
||||||
|
}
|
||||||
|
httpr.ServeHTTP(w, req)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
return httpr
|
return httpr
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -219,7 +237,6 @@ 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…
Add table
Add a link
Reference in a new issue