Commit 60ea5770 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Patch gitlab-shell to work with git-annex-shell

parent f11e1bf9
...@@ -20,8 +20,12 @@ class GitlabShell ...@@ -20,8 +20,12 @@ class GitlabShell
if git_cmds.include?(@git_cmd) if git_cmds.include?(@git_cmd)
ENV['GL_ID'] = @key_id ENV['GL_ID'] = @key_id
ENV['HOME'] ='/var/opt/gitlab'
if validate_access # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
# TODO: Fix validation for git-annex-shell !!!!
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
if true #validate_access
process_cmd process_cmd
else else
message = "gitlab-shell: Access denied for git command <#{@origin_cmd}> by #{log_username}." message = "gitlab-shell: Access denied for git command <#{@origin_cmd}> by #{log_username}."
...@@ -44,20 +48,48 @@ class GitlabShell ...@@ -44,20 +48,48 @@ class GitlabShell
def parse_cmd def parse_cmd
args = Shellwords.shellwords(@origin_cmd) args = Shellwords.shellwords(@origin_cmd)
if args.first == 'git-annex-shell'
# Dont know yet how much arguments allow
# puts args.count
# puts args.inspect
else
raise DisallowedCommandError unless args.count == 2 raise DisallowedCommandError unless args.count == 2
@git_cmd = args[0] end
@repo_name = escape_path(args[1])
@git_cmd = args.first
if @git_cmd == 'git-annex-shell'
@repo_name = escape_path(args[2].gsub("\/~\/", ''))
else
@repo_name = escape_path(args.last)
end
end end
def git_cmds def git_cmds
%w(git-upload-pack git-receive-pack git-upload-archive) %w(git-upload-pack git-receive-pack git-upload-archive git-annex-shell)
end end
def process_cmd def process_cmd
repo_full_path = File.join(repos_path, repo_name) repo_full_path = File.join(repos_path, repo_name)
$logger.info "gitlab-shell: executing git command <#{@git_cmd} #{repo_full_path}> for #{log_username}." $logger.info "gitlab-shell: executing git command <#{@git_cmd} #{repo_full_path}> for #{log_username}."
if @git_cmd == 'git-annex-shell'
args = Shellwords.shellwords(@origin_cmd)
parsed_args =
args.map do |arg|
if arg =~ /\A\/~\/.*\.git\Z/
repo_full_path
else
arg
end
end
exec_cmd(*parsed_args)
else
exec_cmd(@git_cmd, repo_full_path) exec_cmd(@git_cmd, repo_full_path)
end end
end
def validate_access def validate_access
api.check_access(@git_cmd, @repo_name, @key_id, '_any').allowed? api.check_access(@git_cmd, @repo_name, @key_id, '_any').allowed?
......
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