Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-workhorse
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
Kazuhiko Shiozaki
gitlab-workhorse
Commits
9f3966b8
Commit
9f3966b8
authored
Dec 09, 2015
by
Kamil Trzcinski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make everything simpler, using non-pointer variables.
parent
cff33472
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
60 additions
and
63 deletions
+60
-63
deploy_page.go
deploy_page.go
+4
-10
error_pages.go
error_pages.go
+23
-27
helpers.go
helpers.go
+6
-0
logging.go
logging.go
+2
-2
main.go
main.go
+10
-4
proxy.go
proxy.go
+1
-1
sendfile.go
sendfile.go
+2
-2
servefile.go
servefile.go
+4
-13
upstream.go
upstream.go
+8
-4
No files found.
deploy_page.go
View file @
9f3966b8
...
...
@@ -2,25 +2,19 @@ package main
import
(
"io/ioutil"
"log"
"net/http"
"path/filepath"
)
func
handleDeployPage
(
deployPage
string
,
handler
serviceHandleFunc
)
serviceHandleFunc
{
deployPage
,
err
:=
filepath
.
Abs
(
deployPage
)
if
err
!=
nil
{
log
.
Fatalln
(
err
)
}
func
handleDeployPage
(
deployPage
*
string
,
handler
serviceHandleFunc
)
serviceHandleFunc
{
return
func
(
w
http
.
ResponseWriter
,
r
*
gitRequest
)
{
data
,
err
:=
ioutil
.
ReadFile
(
deployPage
)
data
,
err
:=
ioutil
.
ReadFile
(
*
deployPage
)
if
err
!=
nil
{
handler
(
w
,
r
)
return
}
w
.
Header
()
.
Set
(
"Content-Type"
,
"text/html"
)
setNoCacheHeaders
(
w
.
Header
())
w
.
Header
()
.
Set
(
"Content-Type"
,
"text/html; charset=utf-8"
)
w
.
WriteHeader
(
http
.
StatusOK
)
w
.
Write
(
data
)
}
...
...
error_pages.go
View file @
9f3966b8
...
...
@@ -5,19 +5,14 @@ import (
"io/ioutil"
"log"
"net/http"
"path/filepath"
)
type
errorPageResponseWriter
struct
{
rw
http
.
ResponseWriter
status
int
hijacked
bool
}
func
newErrorPageResponseWriter
(
rw
http
.
ResponseWriter
)
*
errorPageResponseWriter
{
s
:=
&
errorPageResponseWriter
{
rw
:
rw
,
}
return
s
errorPages
*
string
}
func
(
s
*
errorPageResponseWriter
)
Header
()
http
.
Header
{
...
...
@@ -41,22 +36,20 @@ func (s *errorPageResponseWriter) WriteHeader(status int) {
s
.
status
=
status
switch
s
.
status
{
case
404
,
422
,
500
,
502
:
data
,
err
:=
ioutil
.
ReadFile
(
fmt
.
Sprintf
(
"public/%d.html"
,
s
.
status
))
if
err
!=
nil
{
break
}
if
400
<=
s
.
status
&&
s
.
status
<=
599
{
errorPageFile
:=
filepath
.
Join
(
*
errorPages
,
fmt
.
Sprintf
(
"%d.html"
,
s
.
status
))
log
.
Printf
(
"ErroPage: serving predefined error page: %d"
,
s
.
status
)
// check if custom error page exists, serve this page instead
if
data
,
err
:=
ioutil
.
ReadFile
(
errorPageFile
);
err
==
nil
{
s
.
hijacked
=
true
s
.
rw
.
Header
()
.
Set
(
"Content-Type"
,
"text/html"
)
log
.
Printf
(
"ErrorPage: serving predefined error page: %d"
,
s
.
status
)
setNoCacheHeaders
(
s
.
rw
.
Header
())
s
.
rw
.
Header
()
.
Set
(
"Content-Type"
,
"text/html; charset=utf-8"
)
s
.
rw
.
WriteHeader
(
s
.
status
)
s
.
rw
.
Write
(
data
)
return
default
:
break
}
}
s
.
rw
.
WriteHeader
(
status
)
...
...
@@ -66,10 +59,13 @@ func (s *errorPageResponseWriter) Flush() {
s
.
WriteHeader
(
http
.
StatusOK
)
}
func
handleRailsError
(
handler
serviceHandleFunc
)
serviceHandleFunc
{
func
handleRailsError
(
errorPages
*
string
,
handler
serviceHandleFunc
)
serviceHandleFunc
{
return
func
(
w
http
.
ResponseWriter
,
r
*
gitRequest
)
{
rw
:=
newErrorPageResponseWriter
(
w
)
rw
:=
errorPageResponseWriter
{
rw
:
w
,
errorPages
:
errorPages
,
}
defer
rw
.
Flush
()
handler
(
rw
,
r
)
handler
(
&
rw
,
r
)
}
}
helpers.go
View file @
9f3966b8
...
...
@@ -80,3 +80,9 @@ func setHttpPostForm(r *http.Request, values url.Values) {
r
.
ContentLength
=
int64
(
dataBuffer
.
Len
())
r
.
Header
.
Set
(
"Content-Type"
,
"application/x-www-form-urlencoded"
)
}
func
setNoCacheHeaders
(
header
http
.
Header
)
{
header
.
Set
(
"Cache-Control"
,
"no-cache, no-store, max-age=0, must-revalidate"
)
header
.
Set
(
"Pragma"
,
"no-cache"
)
header
.
Set
(
"Expires"
,
"Fri, 01 Jan 1990 00:00:00 GMT"
)
}
logging.go
View file @
9f3966b8
...
...
@@ -13,8 +13,8 @@ type loggingResponseWriter struct {
started
time
.
Time
}
func
newLoggingResponseWriter
(
rw
http
.
ResponseWriter
)
*
loggingResponseWriter
{
return
&
loggingResponseWriter
{
func
newLoggingResponseWriter
(
rw
http
.
ResponseWriter
)
loggingResponseWriter
{
return
loggingResponseWriter
{
rw
:
rw
,
started
:
time
.
Now
(),
}
...
...
main.go
View file @
9f3966b8
...
...
@@ -37,6 +37,9 @@ var authBackend = flag.String("authBackend", "http://localhost:8080", "Authentic
var
authSocket
=
flag
.
String
(
"authSocket"
,
""
,
"Optional: Unix domain socket to dial authBackend at"
)
var
pprofListenAddr
=
flag
.
String
(
"pprofListenAddr"
,
""
,
"pprof listening address, e.g. 'localhost:6060'"
)
var
relativeUrlRoot
=
flag
.
String
(
"relativeUrlRoot"
,
"/"
,
"GitLab relative URL root"
)
var
documentRoot
=
flag
.
String
(
"documentRoot"
,
"public"
,
"Path to static files content"
)
var
deployPage
=
flag
.
String
(
"deployPage"
,
"public/index.html"
,
"Path to file that will always be served if present"
)
var
errorPages
=
flag
.
String
(
"errorPages"
,
"public/index.html"
,
"The folder containing custom error pages, ie.: 500.html"
)
type
httpRoute
struct
{
method
string
...
...
@@ -45,6 +48,8 @@ type httpRoute struct {
}
// Routing table
// We match against URI not containing the relativeUrlRoot:
// see upstream.ServeHTTP
var
httpRoutes
=
[
...
]
httpRoute
{
httpRoute
{
"GET"
,
regexp
.
MustCompile
(
`/info/refs\z`
),
repoPreAuthorizeHandler
(
handleGetInfoRefs
)},
httpRoute
{
"POST"
,
regexp
.
MustCompile
(
`/git-upload-pack\z`
),
repoPreAuthorizeHandler
(
contentEncodingHandler
(
handlePostRPC
))},
...
...
@@ -66,10 +71,11 @@ var httpRoutes = [...]httpRoute{
httpRoute
{
""
,
regexp
.
MustCompile
(
`^/ci/api/`
),
proxyRequest
},
// Serve static files and forward otherwise
httpRoute
{
""
,
nil
,
handleServeFile
(
"public"
,
handleDeployPage
(
"public/index.html"
,
handleRailsError
(
proxyRequest
),
))},
httpRoute
{
""
,
nil
,
handleServeFile
(
documentRoot
,
handleDeployPage
(
deployPage
,
handleRailsError
(
errorPages
,
proxyRequest
,
)))},
}
func
main
()
{
...
...
proxy.go
View file @
9f3966b8
...
...
@@ -23,5 +23,5 @@ func proxyRequest(w http.ResponseWriter, r *gitRequest) {
req
.
Header
.
Set
(
"Gitlab-Workhorse"
,
Version
)
rw
:=
newSendFileResponseWriter
(
w
,
&
req
)
defer
rw
.
Flush
()
r
.
u
.
httpProxy
.
ServeHTTP
(
rw
,
&
req
)
r
.
u
.
httpProxy
.
ServeHTTP
(
&
rw
,
&
req
)
}
sendfile.go
View file @
9f3966b8
...
...
@@ -20,8 +20,8 @@ type sendFileResponseWriter struct {
req
*
http
.
Request
}
func
newSendFileResponseWriter
(
rw
http
.
ResponseWriter
,
req
*
http
.
Request
)
*
sendFileResponseWriter
{
s
:=
&
sendFileResponseWriter
{
func
newSendFileResponseWriter
(
rw
http
.
ResponseWriter
,
req
*
http
.
Request
)
sendFileResponseWriter
{
s
:=
sendFileResponseWriter
{
rw
:
rw
,
req
:
req
,
}
...
...
servefile.go
View file @
9f3966b8
...
...
@@ -9,21 +9,12 @@ import (
"strings"
)
func
handleServeFile
(
rootDir
string
,
notFoundHandler
serviceHandleFunc
)
serviceHandleFunc
{
rootDir
,
err
:=
filepath
.
Abs
(
rootDir
)
if
err
!=
nil
{
log
.
Fatalln
(
err
)
}
func
handleServeFile
(
documentRoot
*
string
,
notFoundHandler
serviceHandleFunc
)
serviceHandleFunc
{
return
func
(
w
http
.
ResponseWriter
,
r
*
gitRequest
)
{
file
:=
filepath
.
Join
(
rootDir
,
r
.
relativeUriPath
)
file
,
err
:=
filepath
.
Abs
(
file
)
if
err
!=
nil
{
fail500
(
w
,
fmt
.
Errorf
(
"invalid path:"
+
file
,
err
))
return
}
file
:=
filepath
.
Join
(
*
documentRoot
,
r
.
relativeUriPath
)
if
!
strings
.
HasPrefix
(
file
,
rootDir
)
{
// The filepath.Join does Clean traversing directories up
if
!
strings
.
HasPrefix
(
file
,
*
documentRoot
)
{
fail500
(
w
,
fmt
.
Errorf
(
"invalid path: "
+
file
,
os
.
ErrInvalid
))
return
}
...
...
upstream.go
View file @
9f3966b8
...
...
@@ -54,9 +54,11 @@ type authorizationResponse struct {
// GitLab Rails application.
type
gitRequest
struct
{
*
http
.
Request
relativeUriPath
string
authorizationResponse
u
*
upstream
// This field contains the URL.Path stripped from RelativeUrlRoot
relativeUriPath
string
}
func
newUpstream
(
authBackend
string
,
authTransport
http
.
RoundTripper
)
*
upstream
{
...
...
@@ -81,7 +83,9 @@ func (u *upstream) ServeHTTP(ow http.ResponseWriter, r *http.Request) {
defer
w
.
Log
(
r
)
// Strip prefix and add "/"
relativeUriPath
:=
"/"
+
strings
.
TrimPrefix
(
r
.
RequestURI
,
*
relativeUrlRoot
)
// To match against non-relative URL
// Making it simpler for our matcher
relativeUriPath
:=
"/"
+
strings
.
TrimPrefix
(
r
.
URL
.
Path
,
*
relativeUrlRoot
)
// Look for a matching Git service
foundService
:=
false
...
...
@@ -98,7 +102,7 @@ func (u *upstream) ServeHTTP(ow http.ResponseWriter, r *http.Request) {
if
!
foundService
{
// The protocol spec in git/Documentation/technical/http-protocol.txt
// says we must return 403 if no matching service is found.
http
.
Error
(
w
,
"Forbidden"
,
403
)
http
.
Error
(
&
w
,
"Forbidden"
,
403
)
return
}
...
...
@@ -108,5 +112,5 @@ func (u *upstream) ServeHTTP(ow http.ResponseWriter, r *http.Request) {
u
:
u
,
}
g
.
handleFunc
(
w
,
&
request
)
g
.
handleFunc
(
&
w
,
&
request
)
}
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