Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type API ¶
func NewAPI ¶
func NewAPI(myURL *url.URL, version string, roundTripper *badgateway.RoundTripper) *API
func (*API) PreAuthorizeHandler ¶
func (api *API) PreAuthorizeHandler(h HandleFunc, suffix string) http.Handler
type HandleFunc ¶
type HandleFunc func(http.ResponseWriter, *http.Request, *Response)
type Response ¶
type Response struct { // GL_ID is an environment variable used by gitlab-shell hooks during 'git // push' and 'git pull' GL_ID string // RepoPath is the full path on disk to the Git repository the request is // about RepoPath string // ArchivePath is the full path where we should find/create a cached copy // of a requested archive ArchivePath string // ArchivePrefix is used to put extracted archive contents in a // subdirectory ArchivePrefix string // CommitId is used do prevent race conditions between the 'time of check' // in the GitLab Rails app and the 'time of use' in gitlab-workhorse. CommitId string // StoreLFSPath is provided by the GitLab Rails application // to mark where the tmp file should be placed StoreLFSPath string // LFS object id LfsOid string // LFS object size LfsSize int64 // TmpPath is the path where we should store temporary files // This is set by authorization middleware TempPath string }
Click to show internal directories.
Click to hide internal directories.