2016-02-01 05:33:22 -05:00
|
|
|
require 'base64'
|
|
|
|
require 'json'
|
|
|
|
|
|
|
|
module Gitlab
|
|
|
|
class Workhorse
|
2016-02-11 12:10:14 -05:00
|
|
|
SEND_DATA_HEADER = 'Gitlab-Workhorse-Send-Data'
|
2016-02-02 08:09:55 -05:00
|
|
|
|
2016-02-11 12:10:14 -05:00
|
|
|
class << self
|
2016-04-06 11:52:12 -04:00
|
|
|
def git_http_ok(repository, user)
|
|
|
|
{
|
|
|
|
'GL_ID' => Gitlab::ShellEnv.gl_id(user),
|
|
|
|
'RepoPath' => repository.path_to_repo,
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2016-02-01 05:33:22 -05:00
|
|
|
def send_git_blob(repository, blob)
|
2016-02-02 08:09:55 -05:00
|
|
|
params = {
|
2016-02-01 05:33:22 -05:00
|
|
|
'RepoPath' => repository.path_to_repo,
|
|
|
|
'BlobId' => blob.id,
|
|
|
|
}
|
|
|
|
|
|
|
|
[
|
2016-02-02 08:09:55 -05:00
|
|
|
SEND_DATA_HEADER,
|
|
|
|
"git-blob:#{encode(params)}",
|
2016-02-01 05:33:22 -05:00
|
|
|
]
|
|
|
|
end
|
2016-02-02 08:09:55 -05:00
|
|
|
|
|
|
|
def send_git_archive(project, ref, format)
|
|
|
|
format ||= 'tar.gz'
|
|
|
|
format.downcase!
|
|
|
|
params = project.repository.archive_metadata(ref, Gitlab.config.gitlab.repository_downloads_path, format)
|
|
|
|
raise "Repository or ref not found" if params.empty?
|
|
|
|
|
|
|
|
[
|
|
|
|
SEND_DATA_HEADER,
|
|
|
|
"git-archive:#{encode(params)}",
|
|
|
|
]
|
|
|
|
end
|
2016-05-02 07:21:59 -04:00
|
|
|
|
2016-05-12 14:50:49 -04:00
|
|
|
def send_git_diff(repository, from, to)
|
|
|
|
params = {
|
|
|
|
'RepoPath' => repository.path_to_repo,
|
|
|
|
'ShaFrom' => from,
|
|
|
|
'ShaTo' => to
|
|
|
|
}
|
|
|
|
|
|
|
|
[
|
|
|
|
SEND_DATA_HEADER,
|
|
|
|
"git-diff:#{encode(params)}"
|
|
|
|
]
|
|
|
|
end
|
|
|
|
|
2016-02-02 08:09:55 -05:00
|
|
|
protected
|
2016-05-02 07:21:59 -04:00
|
|
|
|
2016-02-02 08:09:55 -05:00
|
|
|
def encode(hash)
|
|
|
|
Base64.urlsafe_encode64(JSON.dump(hash))
|
|
|
|
end
|
2016-02-01 05:33:22 -05:00
|
|
|
end
|
|
|
|
end
|
2016-02-01 06:27:35 -05:00
|
|
|
end
|