Commit 6f80b287 authored by Jérome Perrin's avatar Jérome Perrin Committed by Alain Takoudjou

format code with make fmt

parent d90ce165
......@@ -3,11 +3,6 @@ package api
//"gitlab.com/gitlab-org/gitlab-workhorse/internal/badgateway"
import (
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
proxypkg "gitlab.com/gitlab-org/gitlab-workhorse/internal/proxy"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/senddata"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/sendfile"
"gitlab.com/gitlab-org/gitaly/proto/go/gitalypb"
"fmt"
"net/http"
"net/http/httptest"
......@@ -15,6 +10,13 @@ import (
"strings"
"sync"
"time"
"gitlab.com/gitlab-org/gitaly/proto/go/gitalypb"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
proxypkg "gitlab.com/gitlab-org/gitlab-workhorse/internal/proxy"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/senddata"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/sendfile"
)
// Reply from auth backend, e.g. for "download from repo" authorization request
......@@ -285,7 +287,7 @@ func (a *API) verifyDownloadAccess(project string, user *url.Userinfo, query str
url += "?" + query
}
reqDownloadAccess, err := http.NewRequest("GET", url, nil)
q := http.Request{Header: header}
q := http.Request{Header: header}
if err != nil {
helper.Fail500(authReply.RawReply, &q, fmt.Errorf("GET git-upload-pack: %v", err))
return authReply
......
......@@ -6,8 +6,6 @@
package git
import (
"gitlab.com/gitlab-org/gitlab-workhorse/internal/api"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
"bufio"
"errors"
"fmt"
......@@ -15,11 +13,14 @@ import (
"log"
"net/http"
"net/url"
"os"
"os/exec"
"regexp"
"strings"
"os/exec"
"syscall"
"os"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/api"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/helper"
)
// HTTP handler for `.../raw/<ref>/path`
......@@ -52,8 +53,8 @@ func handleGetBlobRaw(a *api.API, w http.ResponseWriter, r *http.Request, repoPa
// Query download access auth for this project
authReply := a.VerifyDownloadAccess(project, user, u.RawQuery, r.Header)
//if authReply.Repository.RelativePath == "" {
if authReply.RawReply.Code != http.StatusOK {
//if authReply.Repository.RelativePath == "" {
if authReply.RawReply.Code != http.StatusOK {
// access denied - copy auth reply to client in full -
// there are HTTP code and other headers / body relevant for
// about why access was denied.
......@@ -75,7 +76,6 @@ func handleGetBlobRaw(a *api.API, w http.ResponseWriter, r *http.Request, repoPa
emitBlob(w, p, refpath, r)
}
// Put back gitCommand function which was removed in
var execCommand = exec.Command
......@@ -101,7 +101,6 @@ func gitCommand(glId string, glRepository string, name string, args ...string) *
return cmd
}
// Emit content of blob located at <ref>/path (jointly denoted as 'refpath') to output
func emitBlob(w http.ResponseWriter, repopath string, refpath string, r *http.Request) {
// Communicate with `git cat-file --batch` trying refs from longest
......
......@@ -237,7 +237,7 @@ func configureRoutes(u *upstream) {
u.route("PUT", gitProjectPattern+`gitlab-lfs/objects/([0-9a-f]{64})/([0-9]+)\z`, lfs.PutStore(api, signingProxy, preparers.lfs), withMatcher(isContentType("application/octet-stream"))),
// Raw blobs
route("GET", projectPattern + `raw/`, git.GetBlobRaw(api, u.RepoPath)),
route("GET", projectPattern+`raw/`, git.GetBlobRaw(api, u.RepoPath)),
// CI Artifacts
u.route("POST", apiPattern+`v4/jobs/[0-9]+/artifacts\z`, contentEncodingHandler(artifacts.UploadArtifacts(api, signingProxy, preparers.artifacts))),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment