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
557410ff
Commit
557410ff
authored
May 07, 2015
by
Matt Holt
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #58 from mschoebel/internal_middleware
Adding "internal" middleware
parents
40105094
e3d64169
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
123 additions
and
0 deletions
+123
-0
config/directives.go
config/directives.go
+1
-0
config/setup/internal.go
config/setup/internal.go
+31
-0
middleware/internal/internal.go
middleware/internal/internal.go
+91
-0
No files found.
config/directives.go
View file @
557410ff
...
...
@@ -59,6 +59,7 @@ var directiveOrder = []directive{
{
"redir"
,
setup
.
Redir
},
{
"ext"
,
setup
.
Ext
},
{
"basicauth"
,
setup
.
BasicAuth
},
{
"internal"
,
setup
.
Internal
},
{
"proxy"
,
setup
.
Proxy
},
{
"fastcgi"
,
setup
.
FastCGI
},
{
"websocket"
,
setup
.
WebSocket
},
...
...
config/setup/internal.go
0 → 100644
View file @
557410ff
package
setup
import
(
"github.com/mholt/caddy/middleware"
"github.com/mholt/caddy/middleware/internal"
)
// Internal configures a new Internal middleware instance.
func
Internal
(
c
*
Controller
)
(
middleware
.
Middleware
,
error
)
{
paths
,
err
:=
internalParse
(
c
)
if
err
!=
nil
{
return
nil
,
err
}
return
func
(
next
middleware
.
Handler
)
middleware
.
Handler
{
return
internal
.
Internal
{
Next
:
next
,
Paths
:
paths
}
},
nil
}
func
internalParse
(
c
*
Controller
)
([]
string
,
error
)
{
var
paths
[]
string
for
c
.
Next
()
{
if
!
c
.
NextArg
()
{
return
paths
,
c
.
ArgErr
()
}
paths
=
append
(
paths
,
c
.
Val
())
}
return
paths
,
nil
}
middleware/internal/internal.go
0 → 100644
View file @
557410ff
// The package internal provides a simple middleware that (a) prevents access
// to internal locations and (b) allows to return files from internal location
// by setting a special header, e.g. in a proxy response.
package
internal
import
(
"net/http"
"github.com/mholt/caddy/middleware"
)
// Internal middleware protects internal locations from external requests -
// but allows access from the inside by using a special HTTP header.
type
Internal
struct
{
Next
middleware
.
Handler
Paths
[]
string
}
const
(
redirectHeader
string
=
"X-Accel-Redirect"
maxRedirectCount
int
=
10
)
func
isInternalRedirect
(
w
http
.
ResponseWriter
)
bool
{
return
w
.
Header
()
.
Get
(
redirectHeader
)
!=
""
}
// ServeHTTP implements the middlware.Handler interface.
func
(
i
Internal
)
ServeHTTP
(
w
http
.
ResponseWriter
,
r
*
http
.
Request
)
(
int
,
error
)
{
// Internal location requested? -> Not found.
for
_
,
prefix
:=
range
i
.
Paths
{
if
middleware
.
Path
(
r
.
URL
.
Path
)
.
Matches
(
prefix
)
{
return
http
.
StatusNotFound
,
nil
}
}
// Use internal response writer to ignore responses that will be
// redirected to internal locations
iw
:=
internalResponseWriter
{
ResponseWriter
:
w
}
status
,
err
:=
i
.
Next
.
ServeHTTP
(
iw
,
r
)
for
c
:=
0
;
c
<
maxRedirectCount
&&
isInternalRedirect
(
iw
);
c
++
{
// Redirect - adapt request URL path and send it again
// "down the chain"
r
.
URL
.
Path
=
iw
.
Header
()
.
Get
(
redirectHeader
)
iw
.
ClearHeader
()
status
,
err
=
i
.
Next
.
ServeHTTP
(
iw
,
r
)
}
if
isInternalRedirect
(
iw
)
{
// Too many redirect cycles
iw
.
ClearHeader
()
return
http
.
StatusInternalServerError
,
nil
}
return
status
,
err
}
// internalResponseWriter wraps the underlying http.ResponseWriter and ignores
// calls to Write and WriteHeader if the response should be redirected to an
// internal location.
type
internalResponseWriter
struct
{
http
.
ResponseWriter
}
// ClearHeader removes all header fields that are already set.
func
(
w
internalResponseWriter
)
ClearHeader
()
{
for
k
:=
range
w
.
Header
()
{
w
.
Header
()
.
Del
(
k
)
}
}
// WriteHeader ignores the call if the response should be redirected to an
// internal location.
func
(
w
internalResponseWriter
)
WriteHeader
(
code
int
)
{
if
!
isInternalRedirect
(
w
)
{
w
.
ResponseWriter
.
WriteHeader
(
code
)
}
}
// Write ignores the call if the response should be redirected to an internal
// location.
func
(
w
internalResponseWriter
)
Write
(
b
[]
byte
)
(
int
,
error
)
{
if
isInternalRedirect
(
w
)
{
return
0
,
nil
}
else
{
return
w
.
ResponseWriter
.
Write
(
b
)
}
}
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