2017-02-18 22:00:46 +00:00
package echo
2020-01-09 20:02:56 +00:00
import (
2022-03-12 18:41:07 +00:00
"bytes"
2020-01-09 20:02:56 +00:00
"net/http"
)
2019-01-31 16:06:36 +00:00
2017-02-18 22:00:46 +00:00
type (
// Router is the registry of all registered routes for an `Echo` instance for
// request matching and URL path parameter parsing.
Router struct {
tree * node
2017-06-05 22:01:05 +00:00
routes map [ string ] * Route
2017-02-18 22:00:46 +00:00
echo * Echo
}
node struct {
2021-03-20 21:40:23 +00:00
kind kind
label byte
prefix string
parent * node
staticChildren children
ppath string
pnames [ ] string
methodHandler * methodHandler
paramChild * node
anyChild * node
2021-05-29 22:25:30 +00:00
// isLeaf indicates that node does not have child routes
isLeaf bool
// isHandler indicates that node has at least one handler registered to it
isHandler bool
2017-02-18 22:00:46 +00:00
}
2020-01-09 20:02:56 +00:00
kind uint8
children [ ] * node
2017-02-18 22:00:46 +00:00
methodHandler struct {
2022-03-12 18:41:07 +00:00
connect HandlerFunc
delete HandlerFunc
get HandlerFunc
head HandlerFunc
options HandlerFunc
patch HandlerFunc
post HandlerFunc
propfind HandlerFunc
put HandlerFunc
trace HandlerFunc
report HandlerFunc
allowHeader string
2017-02-18 22:00:46 +00:00
}
)
const (
2021-03-20 21:40:23 +00:00
staticKind kind = iota
paramKind
anyKind
paramLabel = byte ( ':' )
anyLabel = byte ( '*' )
2017-02-18 22:00:46 +00:00
)
2021-05-29 22:25:30 +00:00
func ( m * methodHandler ) isHandler ( ) bool {
return m . connect != nil ||
m . delete != nil ||
m . get != nil ||
m . head != nil ||
m . options != nil ||
m . patch != nil ||
m . post != nil ||
m . propfind != nil ||
m . put != nil ||
m . trace != nil ||
m . report != nil
}
2022-03-12 18:41:07 +00:00
func ( m * methodHandler ) updateAllowHeader ( ) {
buf := new ( bytes . Buffer )
buf . WriteString ( http . MethodOptions )
if m . connect != nil {
buf . WriteString ( ", " )
buf . WriteString ( http . MethodConnect )
}
if m . delete != nil {
buf . WriteString ( ", " )
buf . WriteString ( http . MethodDelete )
}
if m . get != nil {
buf . WriteString ( ", " )
buf . WriteString ( http . MethodGet )
}
if m . head != nil {
buf . WriteString ( ", " )
buf . WriteString ( http . MethodHead )
}
if m . patch != nil {
buf . WriteString ( ", " )
buf . WriteString ( http . MethodPatch )
}
if m . post != nil {
buf . WriteString ( ", " )
buf . WriteString ( http . MethodPost )
}
if m . propfind != nil {
buf . WriteString ( ", PROPFIND" )
}
if m . put != nil {
buf . WriteString ( ", " )
buf . WriteString ( http . MethodPut )
}
if m . trace != nil {
buf . WriteString ( ", " )
buf . WriteString ( http . MethodTrace )
}
if m . report != nil {
buf . WriteString ( ", REPORT" )
}
m . allowHeader = buf . String ( )
}
2017-02-18 22:00:46 +00:00
// NewRouter returns a new Router instance.
func NewRouter ( e * Echo ) * Router {
return & Router {
tree : & node {
methodHandler : new ( methodHandler ) ,
} ,
2017-06-05 22:01:05 +00:00
routes : map [ string ] * Route { } ,
2017-02-18 22:00:46 +00:00
echo : e ,
}
}
// Add registers a new route for method and path with matching handler.
func ( r * Router ) Add ( method , path string , h HandlerFunc ) {
// Validate path
if path == "" {
2019-06-16 21:33:25 +00:00
path = "/"
2017-02-18 22:00:46 +00:00
}
if path [ 0 ] != '/' {
path = "/" + path
}
pnames := [ ] string { } // Param names
2018-11-18 17:55:05 +00:00
ppath := path // Pristine path
2017-02-18 22:00:46 +00:00
2021-05-29 22:25:30 +00:00
if h == nil && r . echo . Logger != nil {
// FIXME: in future we should return error
r . echo . Logger . Errorf ( "Adding route without handler function: %v:%v" , method , path )
}
2021-03-20 21:40:23 +00:00
for i , lcpIndex := 0 , len ( path ) ; i < lcpIndex ; i ++ {
2017-02-18 22:00:46 +00:00
if path [ i ] == ':' {
2021-10-16 22:47:22 +00:00
if i > 0 && path [ i - 1 ] == '\\' {
2022-01-18 19:42:25 +00:00
path = path [ : i - 1 ] + path [ i : ]
i --
lcpIndex --
2021-10-16 22:47:22 +00:00
continue
}
2017-02-18 22:00:46 +00:00
j := i + 1
2021-03-20 21:40:23 +00:00
r . insert ( method , path [ : i ] , nil , staticKind , "" , nil )
for ; i < lcpIndex && path [ i ] != '/' ; i ++ {
2017-02-18 22:00:46 +00:00
}
pnames = append ( pnames , path [ j : i ] )
path = path [ : j ] + path [ i : ]
2021-03-20 21:40:23 +00:00
i , lcpIndex = j , len ( path )
2017-02-18 22:00:46 +00:00
2021-03-20 21:40:23 +00:00
if i == lcpIndex {
2021-05-29 22:25:30 +00:00
// path node is last fragment of route path. ie. `/users/:id`
2021-03-20 21:40:23 +00:00
r . insert ( method , path [ : i ] , h , paramKind , ppath , pnames )
2019-06-16 21:33:25 +00:00
} else {
2021-03-20 21:40:23 +00:00
r . insert ( method , path [ : i ] , nil , paramKind , "" , nil )
2017-02-18 22:00:46 +00:00
}
} else if path [ i ] == '*' {
2021-03-20 21:40:23 +00:00
r . insert ( method , path [ : i ] , nil , staticKind , "" , nil )
2017-02-18 22:00:46 +00:00
pnames = append ( pnames , "*" )
2021-03-20 21:40:23 +00:00
r . insert ( method , path [ : i + 1 ] , h , anyKind , ppath , pnames )
2017-02-18 22:00:46 +00:00
}
}
2021-03-20 21:40:23 +00:00
r . insert ( method , path , h , staticKind , ppath , pnames )
2017-02-18 22:00:46 +00:00
}
func ( r * Router ) insert ( method , path string , h HandlerFunc , t kind , ppath string , pnames [ ] string ) {
// Adjust max param
2021-03-20 21:40:23 +00:00
paramLen := len ( pnames )
if * r . echo . maxParam < paramLen {
* r . echo . maxParam = paramLen
2017-02-18 22:00:46 +00:00
}
2021-03-20 21:40:23 +00:00
currentNode := r . tree // Current node as root
if currentNode == nil {
2017-06-05 22:01:05 +00:00
panic ( "echo: invalid method" )
2017-02-18 22:00:46 +00:00
}
search := path
for {
2021-03-20 21:40:23 +00:00
searchLen := len ( search )
prefixLen := len ( currentNode . prefix )
lcpLen := 0
// LCP - Longest Common Prefix (https://en.wikipedia.org/wiki/LCP_array)
max := prefixLen
if searchLen < max {
max = searchLen
2017-02-18 22:00:46 +00:00
}
2021-03-20 21:40:23 +00:00
for ; lcpLen < max && search [ lcpLen ] == currentNode . prefix [ lcpLen ] ; lcpLen ++ {
2017-02-18 22:00:46 +00:00
}
2021-03-20 21:40:23 +00:00
if lcpLen == 0 {
2017-02-18 22:00:46 +00:00
// At root node
2021-03-20 21:40:23 +00:00
currentNode . label = search [ 0 ]
currentNode . prefix = search
2017-02-18 22:00:46 +00:00
if h != nil {
2021-03-20 21:40:23 +00:00
currentNode . kind = t
currentNode . addHandler ( method , h )
currentNode . ppath = ppath
currentNode . pnames = pnames
2017-02-18 22:00:46 +00:00
}
2021-05-29 22:25:30 +00:00
currentNode . isLeaf = currentNode . staticChildren == nil && currentNode . paramChild == nil && currentNode . anyChild == nil
2021-03-20 21:40:23 +00:00
} else if lcpLen < prefixLen {
2017-02-18 22:00:46 +00:00
// Split node
2021-03-20 21:40:23 +00:00
n := newNode (
currentNode . kind ,
currentNode . prefix [ lcpLen : ] ,
currentNode ,
currentNode . staticChildren ,
currentNode . methodHandler ,
currentNode . ppath ,
currentNode . pnames ,
currentNode . paramChild ,
currentNode . anyChild ,
)
2020-01-09 20:02:56 +00:00
// Update parent path for all children to new node
2021-03-20 21:40:23 +00:00
for _ , child := range currentNode . staticChildren {
2020-01-09 20:02:56 +00:00
child . parent = n
}
2021-03-20 21:40:23 +00:00
if currentNode . paramChild != nil {
currentNode . paramChild . parent = n
}
if currentNode . anyChild != nil {
currentNode . anyChild . parent = n
}
2020-01-09 20:02:56 +00:00
2017-02-18 22:00:46 +00:00
// Reset parent node
2021-03-20 21:40:23 +00:00
currentNode . kind = staticKind
currentNode . label = currentNode . prefix [ 0 ]
currentNode . prefix = currentNode . prefix [ : lcpLen ]
currentNode . staticChildren = nil
currentNode . methodHandler = new ( methodHandler )
currentNode . ppath = ""
currentNode . pnames = nil
currentNode . paramChild = nil
currentNode . anyChild = nil
2021-05-29 22:25:30 +00:00
currentNode . isLeaf = false
currentNode . isHandler = false
2021-03-20 21:40:23 +00:00
// Only Static children could reach here
currentNode . addStaticChild ( n )
if lcpLen == searchLen {
2017-02-18 22:00:46 +00:00
// At parent node
2021-03-20 21:40:23 +00:00
currentNode . kind = t
currentNode . addHandler ( method , h )
currentNode . ppath = ppath
currentNode . pnames = pnames
2017-02-18 22:00:46 +00:00
} else {
// Create child node
2021-03-20 21:40:23 +00:00
n = newNode ( t , search [ lcpLen : ] , currentNode , nil , new ( methodHandler ) , ppath , pnames , nil , nil )
2017-02-18 22:00:46 +00:00
n . addHandler ( method , h )
2021-03-20 21:40:23 +00:00
// Only Static children could reach here
currentNode . addStaticChild ( n )
2017-02-18 22:00:46 +00:00
}
2021-05-29 22:25:30 +00:00
currentNode . isLeaf = currentNode . staticChildren == nil && currentNode . paramChild == nil && currentNode . anyChild == nil
2021-03-20 21:40:23 +00:00
} else if lcpLen < searchLen {
search = search [ lcpLen : ]
c := currentNode . findChildWithLabel ( search [ 0 ] )
2017-02-18 22:00:46 +00:00
if c != nil {
// Go deeper
2021-03-20 21:40:23 +00:00
currentNode = c
2017-02-18 22:00:46 +00:00
continue
}
// Create child node
2021-03-20 21:40:23 +00:00
n := newNode ( t , search , currentNode , nil , new ( methodHandler ) , ppath , pnames , nil , nil )
2017-02-18 22:00:46 +00:00
n . addHandler ( method , h )
2021-03-20 21:40:23 +00:00
switch t {
case staticKind :
currentNode . addStaticChild ( n )
case paramKind :
currentNode . paramChild = n
case anyKind :
currentNode . anyChild = n
}
2021-05-29 22:25:30 +00:00
currentNode . isLeaf = currentNode . staticChildren == nil && currentNode . paramChild == nil && currentNode . anyChild == nil
2017-02-18 22:00:46 +00:00
} else {
// Node already exists
if h != nil {
2021-03-20 21:40:23 +00:00
currentNode . addHandler ( method , h )
currentNode . ppath = ppath
if len ( currentNode . pnames ) == 0 { // Issue #729
currentNode . pnames = pnames
2017-02-18 22:00:46 +00:00
}
}
}
return
}
}
2021-03-20 21:40:23 +00:00
func newNode ( t kind , pre string , p * node , sc children , mh * methodHandler , ppath string , pnames [ ] string , paramChildren , anyChildren * node ) * node {
2017-02-18 22:00:46 +00:00
return & node {
2021-03-20 21:40:23 +00:00
kind : t ,
label : pre [ 0 ] ,
prefix : pre ,
parent : p ,
staticChildren : sc ,
ppath : ppath ,
pnames : pnames ,
methodHandler : mh ,
paramChild : paramChildren ,
anyChild : anyChildren ,
2021-05-29 22:25:30 +00:00
isLeaf : sc == nil && paramChildren == nil && anyChildren == nil ,
isHandler : mh . isHandler ( ) ,
2017-02-18 22:00:46 +00:00
}
}
2021-03-20 21:40:23 +00:00
func ( n * node ) addStaticChild ( c * node ) {
n . staticChildren = append ( n . staticChildren , c )
2017-02-18 22:00:46 +00:00
}
2021-03-20 21:40:23 +00:00
func ( n * node ) findStaticChild ( l byte ) * node {
for _ , c := range n . staticChildren {
if c . label == l {
2017-02-18 22:00:46 +00:00
return c
}
}
return nil
}
func ( n * node ) findChildWithLabel ( l byte ) * node {
2021-03-20 21:40:23 +00:00
for _ , c := range n . staticChildren {
2017-02-18 22:00:46 +00:00
if c . label == l {
return c
}
}
2021-03-20 21:40:23 +00:00
if l == paramLabel {
return n . paramChild
}
if l == anyLabel {
return n . anyChild
2017-02-18 22:00:46 +00:00
}
return nil
}
func ( n * node ) addHandler ( method string , h HandlerFunc ) {
switch method {
2019-01-31 16:06:36 +00:00
case http . MethodConnect :
2018-11-18 17:55:05 +00:00
n . methodHandler . connect = h
2019-01-31 16:06:36 +00:00
case http . MethodDelete :
2018-11-18 17:55:05 +00:00
n . methodHandler . delete = h
2019-01-31 16:06:36 +00:00
case http . MethodGet :
2017-02-18 22:00:46 +00:00
n . methodHandler . get = h
2019-01-31 16:06:36 +00:00
case http . MethodHead :
2018-11-18 17:55:05 +00:00
n . methodHandler . head = h
2019-01-31 16:06:36 +00:00
case http . MethodOptions :
2018-11-18 17:55:05 +00:00
n . methodHandler . options = h
2019-01-31 16:06:36 +00:00
case http . MethodPatch :
2018-11-18 17:55:05 +00:00
n . methodHandler . patch = h
2019-01-31 16:06:36 +00:00
case http . MethodPost :
2017-02-18 22:00:46 +00:00
n . methodHandler . post = h
2018-11-18 17:55:05 +00:00
case PROPFIND :
n . methodHandler . propfind = h
2019-01-31 16:06:36 +00:00
case http . MethodPut :
2017-02-18 22:00:46 +00:00
n . methodHandler . put = h
2019-01-31 16:06:36 +00:00
case http . MethodTrace :
2017-02-18 22:00:46 +00:00
n . methodHandler . trace = h
2019-06-16 21:33:25 +00:00
case REPORT :
n . methodHandler . report = h
2017-02-18 22:00:46 +00:00
}
2021-05-29 22:25:30 +00:00
2022-03-12 18:41:07 +00:00
n . methodHandler . updateAllowHeader ( )
2021-05-29 22:25:30 +00:00
if h != nil {
n . isHandler = true
} else {
n . isHandler = n . methodHandler . isHandler ( )
}
2017-02-18 22:00:46 +00:00
}
func ( n * node ) findHandler ( method string ) HandlerFunc {
switch method {
2019-01-31 16:06:36 +00:00
case http . MethodConnect :
2018-11-18 17:55:05 +00:00
return n . methodHandler . connect
2019-01-31 16:06:36 +00:00
case http . MethodDelete :
2018-11-18 17:55:05 +00:00
return n . methodHandler . delete
2019-01-31 16:06:36 +00:00
case http . MethodGet :
2017-02-18 22:00:46 +00:00
return n . methodHandler . get
2019-01-31 16:06:36 +00:00
case http . MethodHead :
2018-11-18 17:55:05 +00:00
return n . methodHandler . head
2019-01-31 16:06:36 +00:00
case http . MethodOptions :
2018-11-18 17:55:05 +00:00
return n . methodHandler . options
2019-01-31 16:06:36 +00:00
case http . MethodPatch :
2018-11-18 17:55:05 +00:00
return n . methodHandler . patch
2019-01-31 16:06:36 +00:00
case http . MethodPost :
2017-02-18 22:00:46 +00:00
return n . methodHandler . post
2018-11-18 17:55:05 +00:00
case PROPFIND :
return n . methodHandler . propfind
2019-01-31 16:06:36 +00:00
case http . MethodPut :
2017-02-18 22:00:46 +00:00
return n . methodHandler . put
2019-01-31 16:06:36 +00:00
case http . MethodTrace :
2017-02-18 22:00:46 +00:00
return n . methodHandler . trace
2019-06-16 21:33:25 +00:00
case REPORT :
return n . methodHandler . report
2017-02-18 22:00:46 +00:00
default :
return nil
}
}
2022-03-12 18:41:07 +00:00
func optionsMethodHandler ( allowMethods string ) func ( c Context ) error {
return func ( c Context ) error {
// Note: we are not handling most of the CORS headers here. CORS is handled by CORS middleware
// 'OPTIONS' method RFC: https://httpwg.org/specs/rfc7231.html#OPTIONS
// 'Allow' header RFC: https://datatracker.ietf.org/doc/html/rfc7231#section-7.4.1
c . Response ( ) . Header ( ) . Add ( HeaderAllow , allowMethods )
return c . NoContent ( http . StatusNoContent )
2017-02-18 22:00:46 +00:00
}
}
// Find lookup a handler registered for method and path. It also parses URL for path
// parameters and load them into context.
//
// For performance:
//
// - Get context from `Echo#AcquireContext()`
// - Reset it `Context#Reset()`
// - Return it `Echo#ReleaseContext()`.
2017-06-05 22:01:05 +00:00
func ( r * Router ) Find ( method , path string , c Context ) {
ctx := c . ( * context )
ctx . path = path
2021-03-20 21:40:23 +00:00
currentNode := r . tree // Current node as root
2017-02-18 22:00:46 +00:00
var (
2021-05-29 22:25:30 +00:00
previousBestMatchNode * node
matchedHandler HandlerFunc
2021-03-20 21:40:23 +00:00
// search stores the remaining path to check for match. By each iteration we move from start of path to end of the path
// and search value gets shorter and shorter.
search = path
searchIndex = 0
paramIndex int // Param counter
paramValues = ctx . pvalues // Use the internal slice so the interface can keep the illusion of a dynamic slice
2017-02-18 22:00:46 +00:00
)
2021-03-20 21:40:23 +00:00
// Backtracking is needed when a dead end (leaf node) is reached in the router tree.
// To backtrack the current node will be changed to the parent node and the next kind for the
// router logic will be returned based on fromKind or kind of the dead end node (static > param > any).
// For example if there is no static node match we should check parent next sibling by kind (param).
// Backtracking itself does not check if there is a next sibling, this is done by the router logic.
backtrackToNextNodeKind := func ( fromKind kind ) ( nextNodeKind kind , valid bool ) {
previous := currentNode
currentNode = previous . parent
valid = currentNode != nil
// Next node type by priority
2021-05-29 22:25:30 +00:00
if previous . kind == anyKind {
nextNodeKind = staticKind
} else {
nextNodeKind = previous . kind + 1
}
2021-03-20 21:40:23 +00:00
if fromKind == staticKind {
// when backtracking is done from static kind block we did not change search so nothing to restore
return
2017-02-18 22:00:46 +00:00
}
2021-03-20 21:40:23 +00:00
// restore search to value it was before we move to current node we are backtracking from.
if previous . kind == staticKind {
searchIndex -= len ( previous . prefix )
} else {
paramIndex --
// for param/any node.prefix value is always `:` so we can not deduce searchIndex from that and must use pValue
// for that index as it would also contain part of path we cut off before moving into node we are backtracking from
searchIndex -= len ( paramValues [ paramIndex ] )
2021-05-29 22:25:30 +00:00
paramValues [ paramIndex ] = ""
2021-03-20 21:40:23 +00:00
}
search = path [ searchIndex : ]
return
}
2017-02-18 22:00:46 +00:00
2021-03-20 21:40:23 +00:00
// Router tree is implemented by longest common prefix array (LCP array) https://en.wikipedia.org/wiki/LCP_array
// Tree search is implemented as for loop where one loop iteration is divided into 3 separate blocks
// Each of these blocks checks specific kind of node (static/param/any). Order of blocks reflex their priority in routing.
// Search order/priority is: static > param > any.
//
// Note: backtracking in tree is implemented by replacing/switching currentNode to previous node
// and hoping to (goto statement) next block by priority to check if it is the match.
for {
prefixLen := 0 // Prefix length
lcpLen := 0 // LCP (longest common prefix) length
if currentNode . kind == staticKind {
searchLen := len ( search )
prefixLen = len ( currentNode . prefix )
2017-02-18 22:00:46 +00:00
2021-03-20 21:40:23 +00:00
// LCP - Longest Common Prefix (https://en.wikipedia.org/wiki/LCP_array)
max := prefixLen
if searchLen < max {
max = searchLen
2017-02-18 22:00:46 +00:00
}
2021-03-20 21:40:23 +00:00
for ; lcpLen < max && search [ lcpLen ] == currentNode . prefix [ lcpLen ] ; lcpLen ++ {
2017-02-18 22:00:46 +00:00
}
}
2021-03-20 21:40:23 +00:00
if lcpLen != prefixLen {
// No matching prefix, let's backtrack to the first possible alternative node of the decision path
nk , ok := backtrackToNextNodeKind ( staticKind )
if ! ok {
return // No other possibilities on the decision path
} else if nk == paramKind {
goto Param
// NOTE: this case (backtracking from static node to previous any node) can not happen by current any matching logic. Any node is end of search currently
//} else if nk == anyKind {
// goto Any
} else {
// Not found (this should never be possible for static node we are looking currently)
2021-05-29 22:25:30 +00:00
break
2020-05-23 22:06:21 +00:00
}
}
2021-03-20 21:40:23 +00:00
// The full prefix has matched, remove the prefix from the remaining search
search = search [ lcpLen : ]
searchIndex = searchIndex + lcpLen
2021-05-29 22:25:30 +00:00
// Finish routing if no remaining search and we are on a node with handler and matching method type
if search == "" && currentNode . isHandler {
// check if current node has handler registered for http method we are looking for. we store currentNode as
// best matching in case we do no find no more routes matching this path+method
if previousBestMatchNode == nil {
previousBestMatchNode = currentNode
}
if h := currentNode . findHandler ( method ) ; h != nil {
matchedHandler = h
break
}
2017-02-18 22:00:46 +00:00
}
// Static node
2021-03-20 21:40:23 +00:00
if search != "" {
if child := currentNode . findStaticChild ( search [ 0 ] ) ; child != nil {
currentNode = child
continue
2017-02-18 22:00:46 +00:00
}
}
Param :
2020-05-23 22:06:21 +00:00
// Param node
2021-03-20 21:40:23 +00:00
if child := currentNode . paramChild ; search != "" && child != nil {
currentNode = child
2021-05-29 22:25:30 +00:00
i := 0
l := len ( search )
if currentNode . isLeaf {
// when param node does not have any children then param node should act similarly to any node - consider all remaining search as match
i = l
} else {
for ; i < l && search [ i ] != '/' ; i ++ {
}
2017-02-18 22:00:46 +00:00
}
2021-05-29 22:25:30 +00:00
2021-03-20 21:40:23 +00:00
paramValues [ paramIndex ] = search [ : i ]
paramIndex ++
2017-02-18 22:00:46 +00:00
search = search [ i : ]
2021-03-20 21:40:23 +00:00
searchIndex = searchIndex + i
2017-02-18 22:00:46 +00:00
continue
}
Any :
2020-05-23 22:06:21 +00:00
// Any node
2021-03-20 21:40:23 +00:00
if child := currentNode . anyChild ; child != nil {
// If any node is found, use remaining path for paramValues
currentNode = child
paramValues [ len ( currentNode . pnames ) - 1 ] = search
2021-05-29 22:25:30 +00:00
// update indexes/search in case we need to backtrack when no handler match is found
paramIndex ++
searchIndex += + len ( search )
search = ""
// check if current node has handler registered for http method we are looking for. we store currentNode as
// best matching in case we do no find no more routes matching this path+method
if previousBestMatchNode == nil {
previousBestMatchNode = currentNode
}
if h := currentNode . findHandler ( method ) ; h != nil {
matchedHandler = h
break
}
2020-05-23 22:06:21 +00:00
}
2021-03-20 21:40:23 +00:00
// Let's backtrack to the first possible alternative node of the decision path
nk , ok := backtrackToNextNodeKind ( anyKind )
if ! ok {
2021-05-29 22:25:30 +00:00
break // No other possibilities on the decision path
2021-03-20 21:40:23 +00:00
} else if nk == paramKind {
goto Param
} else if nk == anyKind {
goto Any
} else {
// Not found
2021-05-29 22:25:30 +00:00
break
2017-02-18 22:00:46 +00:00
}
}
2021-05-29 22:25:30 +00:00
if currentNode == nil && previousBestMatchNode == nil {
return // nothing matched at all
}
2017-02-18 22:00:46 +00:00
2021-05-29 22:25:30 +00:00
if matchedHandler != nil {
ctx . handler = matchedHandler
} else {
// use previous match as basis. although we have no matching handler we have path match.
// so we can send http.StatusMethodNotAllowed (405) instead of http.StatusNotFound (404)
currentNode = previousBestMatchNode
2022-03-12 18:41:07 +00:00
ctx . handler = NotFoundHandler
if currentNode . isHandler {
ctx . Set ( ContextKeyHeaderAllow , currentNode . methodHandler . allowHeader )
ctx . handler = MethodNotAllowedHandler
if method == http . MethodOptions {
ctx . handler = optionsMethodHandler ( currentNode . methodHandler . allowHeader )
}
}
2017-02-18 22:00:46 +00:00
}
2021-05-29 22:25:30 +00:00
ctx . path = currentNode . ppath
ctx . pnames = currentNode . pnames
2017-02-18 22:00:46 +00:00
}