mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-11 05:36:07 +10:00
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> Conflicts: Gemfile.lock VERSION lib/gitlab/git_access.rb
101 lines
2.6 KiB
Ruby
101 lines
2.6 KiB
Ruby
module Gitlab
|
|
class GitAccess
|
|
DOWNLOAD_COMMANDS = %w{ git-upload-pack git-upload-archive }
|
|
PUSH_COMMANDS = %w{ git-receive-pack }
|
|
|
|
attr_reader :params, :project, :git_cmd, :user
|
|
|
|
def allowed?(actor, cmd, project, ref = nil, oldrev = nil, newrev = nil)
|
|
case cmd
|
|
when *DOWNLOAD_COMMANDS
|
|
if actor.is_a? User
|
|
download_allowed?(actor, project)
|
|
elsif actor.is_a? DeployKey
|
|
actor.projects.include?(project)
|
|
elsif actor.is_a? Key
|
|
download_allowed?(actor.user, project)
|
|
else
|
|
raise 'Wrong actor'
|
|
end
|
|
when *PUSH_COMMANDS
|
|
if actor.is_a? User
|
|
push_allowed?(actor, project, ref, oldrev, newrev)
|
|
elsif actor.is_a? DeployKey
|
|
# Deploy key not allowed to push
|
|
return false
|
|
elsif actor.is_a? Key
|
|
push_allowed?(actor.user, project, ref, oldrev, newrev)
|
|
else
|
|
raise 'Wrong actor'
|
|
end
|
|
else
|
|
false
|
|
end
|
|
end
|
|
|
|
def download_allowed?(user, project)
|
|
if user_allowed?(user)
|
|
user.can?(:download_code, project)
|
|
else
|
|
false
|
|
end
|
|
end
|
|
|
|
def push_allowed?(user, project, ref, oldrev, newrev)
|
|
if user_allowed?(user)
|
|
action = if project.protected_branch?(ref)
|
|
:push_code_to_protected_branches
|
|
else
|
|
:push_code
|
|
end
|
|
user.can?(action, project) &&
|
|
pass_git_hooks?(user, project, ref, oldrev, newrev)
|
|
else
|
|
false
|
|
end
|
|
end
|
|
|
|
def pass_git_hooks?(user, project, ref, oldrev, newrev)
|
|
return true unless project.git_hook
|
|
|
|
git_hook = project.git_hook
|
|
|
|
# Prevent tag removal
|
|
if git_hook.deny_delete_tag
|
|
if project.repository.tag_names.include?(ref) && newrev =~ /0000000/
|
|
return false
|
|
end
|
|
end
|
|
|
|
# Check commit messages unless its branch removal
|
|
if git_hook.commit_message_regex.present? && newrev !~ /00000000/
|
|
commits = project.repository.commits_between(oldrev, newrev)
|
|
commits.each do |commit|
|
|
unless commit.safe_message =~ Regexp.new(git_hook.commit_message_regex)
|
|
return false
|
|
end
|
|
end
|
|
end
|
|
|
|
true
|
|
end
|
|
|
|
private
|
|
|
|
def user_allowed?(user)
|
|
return false if user.blocked?
|
|
|
|
if Gitlab.config.ldap.enabled
|
|
if user.ldap_user?
|
|
# Check if LDAP user exists and match LDAP user_filter
|
|
unless Gitlab::LDAP::Access.new.allowed?(user)
|
|
return false
|
|
end
|
|
end
|
|
end
|
|
|
|
true
|
|
end
|
|
end
|
|
end
|