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
iv
gitlab-workhorse
Commits
d44febe6
Commit
d44febe6
authored
Mar 23, 2016
by
Jacob Vosmaer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Separate imports
parent
85692df5
Changes
29
Hide whitespace changes
Inline
Side-by-side
Showing
29 changed files
with
90 additions
and
61 deletions
+90
-61
authorization_test.go
authorization_test.go
+4
-3
cmd/gitlab-zip-cat/main.go
cmd/gitlab-zip-cat/main.go
+2
-1
cmd/gitlab-zip-metadata/main.go
cmd/gitlab-zip-metadata/main.go
+2
-1
internal/api/api.go
internal/api/api.go
+3
-2
internal/artifacts/artifact_download.go
internal/artifacts/artifact_download.go
+4
-3
internal/artifacts/artifact_download_test.go
internal/artifacts/artifact_download_test.go
+4
-3
internal/artifacts/artifacts_upload.go
internal/artifacts/artifacts_upload.go
+5
-4
internal/artifacts/artifacts_upload_test.go
internal/artifacts/artifacts_upload_test.go
+6
-5
internal/badgateway/roundtripper.go
internal/badgateway/roundtripper.go
+2
-1
internal/git/archive.go
internal/git/archive.go
+3
-2
internal/git/blob.go
internal/git/blob.go
+3
-2
internal/git/git-http.go
internal/git/git-http.go
+4
-3
internal/lfs/lfs.go
internal/lfs/lfs.go
+3
-2
internal/proxy/proxy.go
internal/proxy/proxy.go
+3
-2
internal/sendfile/sendfile.go
internal/sendfile/sendfile.go
+2
-1
internal/staticpages/deploy_page.go
internal/staticpages/deploy_page.go
+2
-1
internal/staticpages/error_pages_test.go
internal/staticpages/error_pages_test.go
+2
-1
internal/staticpages/servefile.go
internal/staticpages/servefile.go
+3
-2
internal/staticpages/servefile_test.go
internal/staticpages/servefile_test.go
+2
-1
internal/upload/uploads.go
internal/upload/uploads.go
+2
-1
internal/upload/uploads_test.go
internal/upload/uploads_test.go
+4
-3
internal/upstream/development_test.go
internal/upstream/development_test.go
+2
-1
internal/upstream/handlers.go
internal/upstream/handlers.go
+2
-1
internal/upstream/handlers_test.go
internal/upstream/handlers_test.go
+2
-1
internal/upstream/routes.go
internal/upstream/routes.go
+3
-2
internal/upstream/upstream.go
internal/upstream/upstream.go
+4
-3
main.go
main.go
+2
-1
main_test.go
main_test.go
+5
-4
proxy_test.go
proxy_test.go
+5
-4
No files found.
authorization_test.go
View file @
d44febe6
...
@@ -2,13 +2,14 @@ package main
...
@@ -2,13 +2,14 @@ package main
import
(
import
(
"fmt"
"fmt"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/api"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/testhelper"
"net/http"
"net/http"
"net/http/httptest"
"net/http/httptest"
"regexp"
"regexp"
"testing"
"testing"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/api"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/testhelper"
)
)
func
okHandler
(
w
http
.
ResponseWriter
,
_
*
http
.
Request
,
_
*
api
.
Response
)
{
func
okHandler
(
w
http
.
ResponseWriter
,
_
*
http
.
Request
,
_
*
api
.
Response
)
{
...
...
cmd/gitlab-zip-cat/main.go
View file @
d44febe6
...
@@ -4,9 +4,10 @@ import (
...
@@ -4,9 +4,10 @@ import (
"archive/zip"
"archive/zip"
"flag"
"flag"
"fmt"
"fmt"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/zipartifacts"
"io"
"io"
"os"
"os"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/zipartifacts"
)
)
const
progName
=
"gitlab-zip-cat"
const
progName
=
"gitlab-zip-cat"
...
...
cmd/gitlab-zip-metadata/main.go
View file @
d44febe6
...
@@ -3,8 +3,9 @@ package main
...
@@ -3,8 +3,9 @@ package main
import
(
import
(
"flag"
"flag"
"fmt"
"fmt"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/zipartifacts"
"os"
"os"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/zipartifacts"
)
)
const
progName
=
"gitlab-zip-metadata"
const
progName
=
"gitlab-zip-metadata"
...
...
internal/api/api.go
View file @
d44febe6
...
@@ -3,13 +3,14 @@ package api
...
@@ -3,13 +3,14 @@ package api
import
(
import
(
"encoding/json"
"encoding/json"
"fmt"
"fmt"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/badgateway"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
"io"
"io"
"io/ioutil"
"io/ioutil"
"net/http"
"net/http"
"net/url"
"net/url"
"strings"
"strings"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/badgateway"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
)
)
type
API
struct
{
type
API
struct
{
...
...
internal/artifacts/artifact_download.go
View file @
d44febe6
...
@@ -4,9 +4,6 @@ import (
...
@@ -4,9 +4,6 @@ import (
"bufio"
"bufio"
"errors"
"errors"
"fmt"
"fmt"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/api"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/zipartifacts"
"io"
"io"
"mime"
"mime"
"net/http"
"net/http"
...
@@ -15,6 +12,10 @@ import (
...
@@ -15,6 +12,10 @@ import (
"path/filepath"
"path/filepath"
"strings"
"strings"
"syscall"
"syscall"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/api"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/zipartifacts"
)
)
func
detectFileContentType
(
fileName
string
)
string
{
func
detectFileContentType
(
fileName
string
)
string
{
...
...
internal/artifacts/artifact_download_test.go
View file @
d44febe6
...
@@ -5,14 +5,15 @@ import (
...
@@ -5,14 +5,15 @@ import (
"encoding/base64"
"encoding/base64"
"encoding/json"
"encoding/json"
"fmt"
"fmt"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/api"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/testhelper"
"io/ioutil"
"io/ioutil"
"net/http"
"net/http"
"net/http/httptest"
"net/http/httptest"
"os"
"os"
"testing"
"testing"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/api"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/testhelper"
)
)
func
testArtifactDownloadServer
(
t
*
testing
.
T
,
archive
string
,
entry
string
)
*
httptest
.
Server
{
func
testArtifactDownloadServer
(
t
*
testing
.
T
,
archive
string
,
entry
string
)
*
httptest
.
Server
{
...
...
internal/artifacts/artifacts_upload.go
View file @
d44febe6
...
@@ -3,16 +3,17 @@ package artifacts
...
@@ -3,16 +3,17 @@ package artifacts
import
(
import
(
"errors"
"errors"
"fmt"
"fmt"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/api"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/upload"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/zipartifacts"
"io/ioutil"
"io/ioutil"
"mime/multipart"
"mime/multipart"
"net/http"
"net/http"
"os"
"os"
"os/exec"
"os/exec"
"syscall"
"syscall"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/api"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/upload"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/zipartifacts"
)
)
type
artifactsUploadProcessor
struct
{
type
artifactsUploadProcessor
struct
{
...
...
internal/artifacts/artifacts_upload_test.go
View file @
d44febe6
...
@@ -6,11 +6,6 @@ import (
...
@@ -6,11 +6,6 @@ import (
"compress/gzip"
"compress/gzip"
"encoding/json"
"encoding/json"
"fmt"
"fmt"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/api"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/proxy"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/testhelper"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/zipartifacts"
"io"
"io"
"io/ioutil"
"io/ioutil"
"mime/multipart"
"mime/multipart"
...
@@ -18,6 +13,12 @@ import (
...
@@ -18,6 +13,12 @@ import (
"net/http/httptest"
"net/http/httptest"
"os"
"os"
"testing"
"testing"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/api"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/proxy"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/testhelper"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/zipartifacts"
)
)
func
testArtifactsUploadServer
(
t
*
testing
.
T
,
tempPath
string
)
*
httptest
.
Server
{
func
testArtifactsUploadServer
(
t
*
testing
.
T
,
tempPath
string
)
*
httptest
.
Server
{
...
...
internal/badgateway/roundtripper.go
View file @
d44febe6
...
@@ -3,11 +3,12 @@ package badgateway
...
@@ -3,11 +3,12 @@ package badgateway
import
(
import
(
"bytes"
"bytes"
"fmt"
"fmt"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
"io/ioutil"
"io/ioutil"
"net"
"net"
"net/http"
"net/http"
"time"
"time"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
)
)
// Values from http.DefaultTransport
// Values from http.DefaultTransport
...
...
internal/git/archive.go
View file @
d44febe6
...
@@ -6,8 +6,6 @@ package git
...
@@ -6,8 +6,6 @@ package git
import
(
import
(
"fmt"
"fmt"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/senddata"
"io"
"io"
"io/ioutil"
"io/ioutil"
"log"
"log"
...
@@ -18,6 +16,9 @@ import (
...
@@ -18,6 +16,9 @@ import (
"path/filepath"
"path/filepath"
"syscall"
"syscall"
"time"
"time"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/senddata"
)
)
type
archive
struct
{
senddata
.
Prefix
}
type
archive
struct
{
senddata
.
Prefix
}
...
...
internal/git/blob.go
View file @
d44febe6
...
@@ -2,12 +2,13 @@ package git
...
@@ -2,12 +2,13 @@ package git
import
(
import
(
"fmt"
"fmt"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/senddata"
"io"
"io"
"log"
"log"
"net/http"
"net/http"
"strings"
"strings"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/senddata"
)
)
type
blob
struct
{
senddata
.
Prefix
}
type
blob
struct
{
senddata
.
Prefix
}
...
...
internal/git/git-http.go
View file @
d44febe6
...
@@ -7,9 +7,6 @@ package git
...
@@ -7,9 +7,6 @@ package git
import
(
import
(
"errors"
"errors"
"fmt"
"fmt"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/api"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/delay"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
"io"
"io"
"log"
"log"
"net/http"
"net/http"
...
@@ -17,6 +14,10 @@ import (
...
@@ -17,6 +14,10 @@ import (
"path"
"path"
"path/filepath"
"path/filepath"
"strings"
"strings"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/api"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/delay"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
)
)
func
GetInfoRefs
(
a
*
api
.
API
)
http
.
Handler
{
func
GetInfoRefs
(
a
*
api
.
API
)
http
.
Handler
{
...
...
internal/lfs/lfs.go
View file @
d44febe6
...
@@ -10,13 +10,14 @@ import (
...
@@ -10,13 +10,14 @@ import (
"encoding/hex"
"encoding/hex"
"errors"
"errors"
"fmt"
"fmt"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/api"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
"io"
"io"
"io/ioutil"
"io/ioutil"
"net/http"
"net/http"
"os"
"os"
"path/filepath"
"path/filepath"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/api"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
)
)
func
PutStore
(
a
*
api
.
API
,
h
http
.
Handler
)
http
.
Handler
{
func
PutStore
(
a
*
api
.
API
,
h
http
.
Handler
)
http
.
Handler
{
...
...
internal/proxy/proxy.go
View file @
d44febe6
package
proxy
package
proxy
import
(
import
(
"gitlab.com/gitlab-org/gitlab-workhorse/internal/badgateway"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
"net/http"
"net/http"
"net/http/httputil"
"net/http/httputil"
"net/url"
"net/url"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/badgateway"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
)
)
type
Proxy
struct
{
type
Proxy
struct
{
...
...
internal/sendfile/sendfile.go
View file @
d44febe6
...
@@ -7,9 +7,10 @@ via the X-Sendfile mechanism. All that is needed in the Rails code is the
...
@@ -7,9 +7,10 @@ via the X-Sendfile mechanism. All that is needed in the Rails code is the
package
sendfile
package
sendfile
import
(
import
(
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
"log"
"log"
"net/http"
"net/http"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
)
)
const
sendFileResponseHeader
=
"X-Sendfile"
const
sendFileResponseHeader
=
"X-Sendfile"
...
...
internal/staticpages/deploy_page.go
View file @
d44febe6
package
staticpages
package
staticpages
import
(
import
(
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
"io/ioutil"
"io/ioutil"
"net/http"
"net/http"
"path/filepath"
"path/filepath"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
)
)
func
(
s
*
Static
)
DeployPage
(
handler
http
.
Handler
)
http
.
Handler
{
func
(
s
*
Static
)
DeployPage
(
handler
http
.
Handler
)
http
.
Handler
{
...
...
internal/staticpages/error_pages_test.go
View file @
d44febe6
...
@@ -2,13 +2,14 @@ package staticpages
...
@@ -2,13 +2,14 @@ package staticpages
import
(
import
(
"fmt"
"fmt"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/testhelper"
"io/ioutil"
"io/ioutil"
"net/http"
"net/http"
"net/http/httptest"
"net/http/httptest"
"os"
"os"
"path/filepath"
"path/filepath"
"testing"
"testing"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/testhelper"
)
)
func
TestIfErrorPageIsPresented
(
t
*
testing
.
T
)
{
func
TestIfErrorPageIsPresented
(
t
*
testing
.
T
)
{
...
...
internal/staticpages/servefile.go
View file @
d44febe6
package
staticpages
package
staticpages
import
(
import
(
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/urlprefix"
"log"
"log"
"net/http"
"net/http"
"os"
"os"
"path/filepath"
"path/filepath"
"strings"
"strings"
"time"
"time"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/urlprefix"
)
)
type
CacheMode
int
type
CacheMode
int
...
...
internal/staticpages/servefile_test.go
View file @
d44febe6
...
@@ -3,13 +3,14 @@ package staticpages
...
@@ -3,13 +3,14 @@ package staticpages
import
(
import
(
"bytes"
"bytes"
"compress/gzip"
"compress/gzip"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/testhelper"
"io/ioutil"
"io/ioutil"
"net/http"
"net/http"
"net/http/httptest"
"net/http/httptest"
"os"
"os"
"path/filepath"
"path/filepath"
"testing"
"testing"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/testhelper"
)
)
func
TestServingNonExistingFile
(
t
*
testing
.
T
)
{
func
TestServingNonExistingFile
(
t
*
testing
.
T
)
{
...
...
internal/upload/uploads.go
View file @
d44febe6
...
@@ -3,12 +3,13 @@ package upload
...
@@ -3,12 +3,13 @@ package upload
import
(
import
(
"bytes"
"bytes"
"fmt"
"fmt"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
"io"
"io"
"io/ioutil"
"io/ioutil"
"mime/multipart"
"mime/multipart"
"net/http"
"net/http"
"os"
"os"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
)
)
type
MultipartFormProcessor
interface
{
type
MultipartFormProcessor
interface
{
...
...
internal/upload/uploads_test.go
View file @
d44febe6
...
@@ -4,9 +4,6 @@ import (
...
@@ -4,9 +4,6 @@ import (
"bytes"
"bytes"
"errors"
"errors"
"fmt"
"fmt"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/proxy"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/testhelper"
"io"
"io"
"io/ioutil"
"io/ioutil"
"mime/multipart"
"mime/multipart"
...
@@ -16,6 +13,10 @@ import (
...
@@ -16,6 +13,10 @@ import (
"regexp"
"regexp"
"strings"
"strings"
"testing"
"testing"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/proxy"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/testhelper"
)
)
var
nilHandler
=
http
.
HandlerFunc
(
func
(
http
.
ResponseWriter
,
*
http
.
Request
)
{})
var
nilHandler
=
http
.
HandlerFunc
(
func
(
http
.
ResponseWriter
,
*
http
.
Request
)
{})
...
...
internal/upstream/development_test.go
View file @
d44febe6
package
upstream
package
upstream
import
(
import
(
"gitlab.com/gitlab-org/gitlab-workhorse/internal/testhelper"
"net/http"
"net/http"
"net/http/httptest"
"net/http/httptest"
"testing"
"testing"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/testhelper"
)
)
func
TestDevelopmentModeEnabled
(
t
*
testing
.
T
)
{
func
TestDevelopmentModeEnabled
(
t
*
testing
.
T
)
{
...
...
internal/upstream/handlers.go
View file @
d44febe6
...
@@ -3,9 +3,10 @@ package upstream
...
@@ -3,9 +3,10 @@ package upstream
import
(
import
(
"compress/gzip"
"compress/gzip"
"fmt"
"fmt"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
"io"
"io"
"net/http"
"net/http"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
)
)
func
contentEncodingHandler
(
h
http
.
Handler
)
http
.
Handler
{
func
contentEncodingHandler
(
h
http
.
Handler
)
http
.
Handler
{
...
...
internal/upstream/handlers_test.go
View file @
d44febe6
...
@@ -4,12 +4,13 @@ import (
...
@@ -4,12 +4,13 @@ import (
"bytes"
"bytes"
"compress/gzip"
"compress/gzip"
"fmt"
"fmt"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/testhelper"
"io/ioutil"
"io/ioutil"
"net/http"
"net/http"
"net/http/httptest"
"net/http/httptest"
"reflect"
"reflect"
"testing"
"testing"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/testhelper"
)
)
func
TestGzipEncoding
(
t
*
testing
.
T
)
{
func
TestGzipEncoding
(
t
*
testing
.
T
)
{
...
...
internal/upstream/routes.go
View file @
d44febe6
package
upstream
package
upstream
import
(
import
(
"net/http"
"regexp"
apipkg
"gitlab.com/gitlab-org/gitlab-workhorse/internal/api"
apipkg
"gitlab.com/gitlab-org/gitlab-workhorse/internal/api"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/artifacts"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/artifacts"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/git"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/git"
...
@@ -9,8 +12,6 @@ import (
...
@@ -9,8 +12,6 @@ import (
"gitlab.com/gitlab-org/gitlab-workhorse/internal/senddata"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/senddata"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/sendfile"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/sendfile"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/staticpages"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/staticpages"
"net/http"
"regexp"
)
)
type
route
struct
{
type
route
struct
{
...
...
internal/upstream/upstream.go
View file @
d44febe6
...
@@ -8,13 +8,14 @@ package upstream
...
@@ -8,13 +8,14 @@ package upstream
import
(
import
(
"fmt"
"fmt"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/badgateway"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/urlprefix"
"net/http"
"net/http"
"net/url"
"net/url"
"strings"
"strings"
"time"
"time"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/badgateway"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/urlprefix"
)
)
var
DefaultBackend
=
helper
.
URLMustParse
(
"http://localhost:8080"
)
var
DefaultBackend
=
helper
.
URLMustParse
(
"http://localhost:8080"
)
...
...
main.go
View file @
d44febe6
...
@@ -16,7 +16,6 @@ package main
...
@@ -16,7 +16,6 @@ package main
import
(
import
(
"flag"
"flag"
"fmt"
"fmt"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/upstream"
"log"
"log"
"net"
"net"
"net/http"
"net/http"
...
@@ -24,6 +23,8 @@ import (
...
@@ -24,6 +23,8 @@ import (
"os"
"os"
"syscall"
"syscall"
"time"
"time"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/upstream"
)
)
// Current version of GitLab Workhorse
// Current version of GitLab Workhorse
...
...
main_test.go
View file @
d44febe6
...
@@ -5,10 +5,6 @@ import (
...
@@ -5,10 +5,6 @@ import (
"encoding/base64"
"encoding/base64"
"encoding/json"
"encoding/json"
"fmt"
"fmt"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/api"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/testhelper"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/upstream"
"io"
"io"
"io/ioutil"
"io/ioutil"
"log"
"log"
...
@@ -22,6 +18,11 @@ import (
...
@@ -22,6 +18,11 @@ import (
"strings"
"strings"
"testing"
"testing"
"time"
"time"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/api"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/testhelper"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/upstream"
)
)
const
scratchDir
=
"testdata/scratch"
const
scratchDir
=
"testdata/scratch"
...
...
proxy_test.go
View file @
d44febe6
...
@@ -3,10 +3,6 @@ package main
...
@@ -3,10 +3,6 @@ package main
import
(
import
(
"bytes"
"bytes"
"fmt"
"fmt"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/badgateway"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/proxy"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/testhelper"
"io"
"io"
"net"
"net"
"net/http"
"net/http"
...
@@ -14,6 +10,11 @@ import (
...
@@ -14,6 +10,11 @@ import (
"regexp"
"regexp"
"testing"
"testing"
"time"
"time"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/badgateway"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/proxy"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/testhelper"
)
)
func
newProxy
(
url
string
,
rt
*
badgateway
.
RoundTripper
)
*
proxy
.
Proxy
{
func
newProxy
(
url
string
,
rt
*
badgateway
.
RoundTripper
)
*
proxy
.
Proxy
{
...
...
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