vweb: fixed req type without path (#7792)

pull/7795/head
Louis Schmieder 2021-01-01 21:57:45 +01:00 committed by GitHub
parent 7496c74f7e
commit f7135979f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 32 additions and 32 deletions

View File

@ -389,21 +389,6 @@ fn handle_conn<T>(mut conn net.TcpConn, mut app T) {
$if method.return_type is Result {
attrs := method.attrs
route_words_a = [][]string{}
if attrs.len == 0 {
// No routing for this method. If it matches, call it and finish matching
// since such methods have a priority.
// For example URL `/register` matches route `/:user`, but `fn register()`
// should be called first.
if (req.method == .get &&
url_words[0] == method.name && url_words.len == 1) ||
(req.method == .post && url_words[0] + '_post' == method.name) {
$if debug {
println('easy match method=$method.name')
}
app.$method(vars)
return
}
} else {
// Get methods
// Get is default
mut req_method_str := '$req.method'
@ -434,6 +419,21 @@ fn handle_conn<T>(mut conn net.TcpConn, mut app T) {
} else {
route_words_a = attrs.filter(it.to_lower() != 'get').map(it[1..].split('/'))
}
if attrs.len == 0 {
// No routing for this method. If it matches, call it and finish matching
// since such methods have a priority.
// For example URL `/register` matches route `/:user`, but `fn register()`
// should be called first.
if (req_method_str == '' &&
url_words[0] == method.name && url_words.len == 1) ||
(req_method_str == req.method.str() && url_words[0] == method.name && url_words.len == 1) {
$if debug {
println('easy match method=$method.name')
}
app.$method(vars)
return
}
} else {
mut req_method := []string{}
if route_words_a.len > 0 {
for route_words in route_words_a {