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
Łukasz Nowak
caddy
Commits
0e039a18
Commit
0e039a18
authored
Sep 20, 2015
by
Abiola Ibrahim
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rewrite: Use middleware.Replacer.
Bug fix for regexps starting with '/'.
parent
10ab0378
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
33 deletions
+20
-33
middleware/replacer.go
middleware/replacer.go
+10
-0
middleware/rewrite/rewrite.go
middleware/rewrite/rewrite.go
+10
-33
No files found.
middleware/replacer.go
View file @
0e039a18
...
...
@@ -3,6 +3,7 @@ package middleware
import
(
"net"
"net/http"
"path"
"strconv"
"strings"
"time"
...
...
@@ -40,6 +41,7 @@ func NewReplacer(r *http.Request, rr *responseRecorder, emptyValue string) Repla
"{host}"
:
r
.
Host
,
"{path}"
:
r
.
URL
.
Path
,
"{query}"
:
r
.
URL
.
RawQuery
,
"{frag}"
:
r
.
URL
.
Fragment
,
"{fragment}"
:
r
.
URL
.
Fragment
,
"{proto}"
:
r
.
Proto
,
"{remote}"
:
func
()
string
{
...
...
@@ -63,6 +65,14 @@ func NewReplacer(r *http.Request, rr *responseRecorder, emptyValue string) Repla
"{when}"
:
func
()
string
{
return
time
.
Now
()
.
Format
(
timeFormat
)
}(),
"{file}"
:
func
()
string
{
_
,
file
:=
path
.
Split
(
r
.
URL
.
Path
)
return
file
}(),
"{dir}"
:
func
()
string
{
dir
,
_
:=
path
.
Split
(
r
.
URL
.
Path
)
return
dir
}(),
},
emptyValue
:
emptyValue
,
}
...
...
middleware/rewrite/rewrite.go
View file @
0e039a18
...
...
@@ -3,9 +3,8 @@
package
rewrite
import
(
"net/http"
"fmt"
"net/http"
"net/url"
"path"
"path/filepath"
...
...
@@ -96,15 +95,6 @@ func NewRegexpRule(base, pattern, to string, ext []string) (*RegexpRule, error)
},
nil
}
// regexpVars are variables that can be used for To (rewrite destination path).
var
regexpVars
=
[]
string
{
"{path}"
,
"{query}"
,
"{file}"
,
"{dir}"
,
"{frag}"
,
}
// Rewrite rewrites the internal location of the current request.
func
(
r
*
RegexpRule
)
Rewrite
(
req
*
http
.
Request
)
bool
{
rPath
:=
req
.
URL
.
Path
...
...
@@ -119,32 +109,19 @@ func (r *RegexpRule) Rewrite(req *http.Request) bool {
return
false
}
// include trailing slash in regexp if present
start
:=
len
(
r
.
Base
)
if
strings
.
HasSuffix
(
r
.
Base
,
"/"
)
{
start
-=
1
}
// validate regexp
if
!
r
.
MatchString
(
rPath
[
len
(
r
.
Base
)
:
])
{
if
!
r
.
MatchString
(
rPath
[
start
:
])
{
return
false
}
to
:=
r
.
To
// check variables
for
_
,
v
:=
range
regexpVars
{
if
strings
.
Contains
(
r
.
To
,
v
)
{
switch
v
{
case
"{path}"
:
to
=
strings
.
Replace
(
to
,
v
,
req
.
URL
.
Path
[
1
:
],
-
1
)
case
"{query}"
:
to
=
strings
.
Replace
(
to
,
v
,
req
.
URL
.
RawQuery
,
-
1
)
case
"{frag}"
:
to
=
strings
.
Replace
(
to
,
v
,
req
.
URL
.
Fragment
,
-
1
)
case
"{file}"
:
_
,
file
:=
path
.
Split
(
req
.
URL
.
Path
)
to
=
strings
.
Replace
(
to
,
v
,
file
,
-
1
)
case
"{dir}"
:
dir
,
_
:=
path
.
Split
(
req
.
URL
.
Path
)
to
=
path
.
Clean
(
strings
.
Replace
(
to
,
v
,
dir
,
-
1
))
}
}
}
// replace variables
to
:=
path
.
Clean
(
middleware
.
NewReplacer
(
req
,
nil
,
""
)
.
Replace
(
r
.
To
))
// validate resulting path
url
,
err
:=
url
.
Parse
(
to
)
...
...
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