Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
caddy
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
caddy
Commits
a6744501
Commit
a6744501
authored
Mar 28, 2015
by
Matthew Holt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactored ext middleware to return errors
parent
843f6e83
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
middleware/extensionless/extensionless.go
middleware/extensionless/extensionless.go
+4
-4
No files found.
middleware/extensionless/extensionless.go
View file @
a6744501
...
...
@@ -16,7 +16,7 @@ import (
// Extensionless is an http.Handler that can assume an extension from clean URLs.
// It tries extensions in the order listed in Extensions.
type
Extensionless
struct
{
Next
http
.
HandlerFunc
Next
middleware
.
HandlerFunc
Root
string
Extensions
[]
string
}
...
...
@@ -31,7 +31,7 @@ func New(c middleware.Controller) (middleware.Middleware, error) {
return
nil
,
err
}
return
func
(
next
http
.
HandlerFunc
)
http
.
HandlerFunc
{
return
func
(
next
middleware
.
HandlerFunc
)
middleware
.
HandlerFunc
{
return
Extensionless
{
Next
:
next
,
Extensions
:
extensions
,
...
...
@@ -41,7 +41,7 @@ func New(c middleware.Controller) (middleware.Middleware, error) {
}
// ServeHTTP implements the http.Handler interface.
func
(
e
Extensionless
)
ServeHTTP
(
w
http
.
ResponseWriter
,
r
*
http
.
Request
)
{
func
(
e
Extensionless
)
ServeHTTP
(
w
http
.
ResponseWriter
,
r
*
http
.
Request
)
(
int
,
error
)
{
urlpath
:=
strings
.
TrimSuffix
(
r
.
URL
.
Path
,
"/"
)
if
path
.
Ext
(
urlpath
)
==
""
{
for
_
,
ext
:=
range
e
.
Extensions
{
...
...
@@ -51,7 +51,7 @@ func (e Extensionless) ServeHTTP(w http.ResponseWriter, r *http.Request) {
}
}
}
e
.
Next
(
w
,
r
)
return
e
.
Next
(
w
,
r
)
}
// parse sets up an instance of Extensionless middleware
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment