debian-mirror-gitlab/workhorse/internal/git/receive-pack.go

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
868 B
Go
Raw Normal View History

2021-02-22 17:27:13 +05:30
package git
import (
"fmt"
"net/http"
2021-10-27 15:23:28 +05:30
"gitlab.com/gitlab-org/gitlab/workhorse/internal/api"
"gitlab.com/gitlab-org/gitlab/workhorse/internal/gitaly"
2021-02-22 17:27:13 +05:30
)
// Will not return a non-nil error after the response body has been
// written to.
func handleReceivePack(w *HttpResponseWriter, r *http.Request, a *api.Response) error {
action := getService(r)
writePostRPCHeader(w, action)
2023-03-04 22:38:38 +05:30
cr, cw := newWriteAfterReader(r.Body, w)
2021-02-22 17:27:13 +05:30
defer cw.Flush()
gitProtocol := r.Header.Get("Git-Protocol")
2023-03-04 22:38:38 +05:30
ctx, smarthttp, err := gitaly.NewSmartHTTPClient(r.Context(), a.GitalyServer)
2021-02-22 17:27:13 +05:30
if err != nil {
return fmt.Errorf("smarthttp.ReceivePack: %v", err)
}
if err := smarthttp.ReceivePack(ctx, &a.Repository, a.GL_ID, a.GL_USERNAME, a.GL_REPOSITORY, a.GitConfigOptions, cr, cw, gitProtocol); err != nil {
2022-07-16 23:28:13 +05:30
return fmt.Errorf("smarthttp.ReceivePack: %w", err)
2021-02-22 17:27:13 +05:30
}
return nil
}