2016-07-18 04:16:56 -04:00
|
|
|
# Check a user's access to perform a git action. All public methods in this
|
|
|
|
# class return an instance of `GitlabAccessStatus`
|
2014-03-19 15:01:00 -04:00
|
|
|
module Gitlab
|
|
|
|
class GitAccess
|
|
|
|
DOWNLOAD_COMMANDS = %w{ git-upload-pack git-upload-archive }
|
|
|
|
PUSH_COMMANDS = %w{ git-receive-pack }
|
|
|
|
|
2016-09-16 03:59:10 -04:00
|
|
|
attr_reader :actor, :project, :protocol, :user_access, :authentication_abilities
|
2014-03-19 15:01:00 -04:00
|
|
|
|
2016-09-16 03:59:10 -04:00
|
|
|
def initialize(actor, project, protocol, authentication_abilities:)
|
2015-03-24 09:10:55 -04:00
|
|
|
@actor = actor
|
|
|
|
@project = project
|
2016-06-20 21:40:56 -04:00
|
|
|
@protocol = protocol
|
2016-09-16 03:59:10 -04:00
|
|
|
@authentication_abilities = authentication_abilities
|
2016-07-18 04:16:56 -04:00
|
|
|
@user_access = UserAccess.new(user, project: project)
|
2015-03-24 09:10:55 -04:00
|
|
|
end
|
|
|
|
|
2016-08-03 08:54:12 -04:00
|
|
|
def check(cmd, changes)
|
2016-06-20 21:40:56 -04:00
|
|
|
return build_status_object(false, "Git access over #{protocol.upcase} is not allowed") unless protocol_allowed?
|
|
|
|
|
2015-05-10 17:07:35 -04:00
|
|
|
unless actor
|
|
|
|
return build_status_object(false, "No user or key was provided.")
|
|
|
|
end
|
|
|
|
|
2016-07-18 04:16:56 -04:00
|
|
|
if user && !user_access.allowed?
|
2015-05-10 17:07:35 -04:00
|
|
|
return build_status_object(false, "Your account has been blocked.")
|
|
|
|
end
|
|
|
|
|
2016-07-18 04:16:56 -04:00
|
|
|
unless project && (user_access.can_read_project? || deploy_key_can_read_project?)
|
2015-05-10 17:07:35 -04:00
|
|
|
return build_status_object(false, 'The project you were looking for could not be found.')
|
|
|
|
end
|
|
|
|
|
2014-03-19 15:01:00 -04:00
|
|
|
case cmd
|
|
|
|
when *DOWNLOAD_COMMANDS
|
2015-03-24 09:10:55 -04:00
|
|
|
download_access_check
|
2014-03-19 15:01:00 -04:00
|
|
|
when *PUSH_COMMANDS
|
2015-03-24 09:10:55 -04:00
|
|
|
push_access_check(changes)
|
2014-03-19 15:01:00 -04:00
|
|
|
else
|
2015-05-10 17:07:35 -04:00
|
|
|
build_status_object(false, "The command you're trying to execute is not allowed.")
|
2014-03-19 15:01:00 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-03-24 09:10:55 -04:00
|
|
|
def download_access_check
|
|
|
|
if user
|
|
|
|
user_download_access_check
|
|
|
|
elsif deploy_key
|
2015-05-10 17:07:35 -04:00
|
|
|
build_status_object(true)
|
2014-12-01 09:25:10 -05:00
|
|
|
else
|
|
|
|
raise 'Wrong actor'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-03-24 09:10:55 -04:00
|
|
|
def push_access_check(changes)
|
|
|
|
if user
|
|
|
|
user_push_access_check(changes)
|
|
|
|
elsif deploy_key
|
2015-05-10 17:07:35 -04:00
|
|
|
build_status_object(false, "Deploy keys are not allowed to push code.")
|
2015-03-24 09:10:55 -04:00
|
|
|
else
|
|
|
|
raise 'Wrong actor'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def user_download_access_check
|
2016-09-15 04:34:53 -04:00
|
|
|
unless user_can_download_code? || build_can_download_code?
|
2015-05-10 17:07:35 -04:00
|
|
|
return build_status_object(false, "You are not allowed to download code from this project.")
|
2014-03-19 15:01:00 -04:00
|
|
|
end
|
|
|
|
|
2015-05-10 17:07:35 -04:00
|
|
|
build_status_object(true)
|
2015-03-24 09:10:55 -04:00
|
|
|
end
|
|
|
|
|
2016-09-15 04:34:53 -04:00
|
|
|
def user_can_download_code?
|
2016-09-16 03:59:10 -04:00
|
|
|
authentication_abilities.include?(:download_code) && user_access.can_do_action?(:download_code)
|
2016-08-08 06:01:25 -04:00
|
|
|
end
|
|
|
|
|
2016-09-15 04:34:53 -04:00
|
|
|
def build_can_download_code?
|
2016-09-16 03:59:10 -04:00
|
|
|
authentication_abilities.include?(:build_download_code) && user_access.can_do_action?(:build_download_code)
|
2016-08-08 06:01:25 -04:00
|
|
|
end
|
|
|
|
|
2015-03-24 09:10:55 -04:00
|
|
|
def user_push_access_check(changes)
|
2016-09-16 03:59:10 -04:00
|
|
|
unless authentication_abilities.include?(:push_code)
|
2016-08-08 06:01:25 -04:00
|
|
|
return build_status_object(false, "You are not allowed to upload code for this project.")
|
|
|
|
end
|
|
|
|
|
2014-12-05 11:17:51 -05:00
|
|
|
if changes.blank?
|
|
|
|
return build_status_object(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
unless project.repository.exists?
|
2015-05-10 17:07:35 -04:00
|
|
|
return build_status_object(false, "A repository for this project does not exist yet.")
|
2014-12-05 11:17:51 -05:00
|
|
|
end
|
2014-09-01 12:57:25 -04:00
|
|
|
|
2016-07-28 00:04:57 -04:00
|
|
|
changes_list = Gitlab::ChangesList.new(changes)
|
2014-09-01 12:57:25 -04:00
|
|
|
|
|
|
|
# Iterate over all changes to find if user allowed all of them to be applied
|
2016-07-28 00:04:57 -04:00
|
|
|
changes_list.each do |change|
|
2015-03-24 09:10:55 -04:00
|
|
|
status = change_access_check(change)
|
2014-11-14 11:23:55 -05:00
|
|
|
unless status.allowed?
|
2014-09-01 12:57:25 -04:00
|
|
|
# If user does not have access to make at least one change - cancel all push
|
2014-11-14 11:23:55 -05:00
|
|
|
return status
|
2014-09-01 12:57:25 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-03-24 09:10:55 -04:00
|
|
|
build_status_object(true)
|
2014-09-01 12:57:25 -04:00
|
|
|
end
|
|
|
|
|
2015-03-24 09:10:55 -04:00
|
|
|
def change_access_check(change)
|
2016-07-18 04:16:56 -04:00
|
|
|
Checks::ChangeAccess.new(change, user_access: user_access, project: project).exec
|
2014-03-19 15:01:00 -04:00
|
|
|
end
|
|
|
|
|
2016-06-27 12:14:44 -04:00
|
|
|
def protocol_allowed?
|
|
|
|
Gitlab::ProtocolAccess.allowed?(protocol)
|
|
|
|
end
|
|
|
|
|
2014-03-19 15:01:00 -04:00
|
|
|
private
|
|
|
|
|
2016-07-18 04:16:56 -04:00
|
|
|
def matching_merge_request?(newrev, branch_name)
|
|
|
|
Checks::MatchingMergeRequest.new(newrev, branch_name, project).match?
|
2014-12-26 03:52:39 -05:00
|
|
|
end
|
|
|
|
|
2016-07-18 04:16:56 -04:00
|
|
|
def deploy_key
|
|
|
|
actor if actor.is_a?(DeployKey)
|
2014-09-23 07:18:36 -04:00
|
|
|
end
|
2014-11-14 11:23:55 -05:00
|
|
|
|
2016-07-18 04:16:56 -04:00
|
|
|
def deploy_key_can_read_project?
|
|
|
|
if deploy_key
|
2016-07-18 06:36:44 -04:00
|
|
|
return true if project.public?
|
2016-07-18 04:16:56 -04:00
|
|
|
deploy_key.projects.include?(project)
|
2016-07-13 14:57:30 -04:00
|
|
|
else
|
2016-07-18 04:16:56 -04:00
|
|
|
false
|
2016-07-13 14:57:30 -04:00
|
|
|
end
|
2016-06-24 01:07:04 -04:00
|
|
|
end
|
|
|
|
|
2016-07-13 14:57:30 -04:00
|
|
|
protected
|
|
|
|
|
2016-07-18 04:16:56 -04:00
|
|
|
def user
|
|
|
|
return @user if defined?(@user)
|
|
|
|
|
|
|
|
@user =
|
|
|
|
case actor
|
|
|
|
when User
|
|
|
|
actor
|
|
|
|
when DeployKey
|
|
|
|
nil
|
|
|
|
when Key
|
|
|
|
actor.user
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-11-14 11:23:55 -05:00
|
|
|
def build_status_object(status, message = '')
|
2016-07-25 17:46:40 -04:00
|
|
|
Gitlab::GitAccessStatus.new(status, message)
|
2014-11-14 11:23:55 -05:00
|
|
|
end
|
2014-03-19 15:01:00 -04:00
|
|
|
end
|
|
|
|
end
|