gitlab-org--gitlab-foss/app/controllers/concerns/lfs_request.rb

113 lines
2.6 KiB
Ruby
Raw Normal View History

# This concern assumes:
# - a `#project` accessor
# - a `#user` accessor
# - a `#authentication_result` accessor
# - a `#can?(object, action, subject)` method
# - a `#ci?` method
# - a `#download_request?` method
# - a `#upload_request?` method
# - a `#has_authentication_ability?(ability)` method
module LfsRequest
extend ActiveSupport::Concern
included do
before_action :require_lfs_enabled!
before_action :lfs_check_access!
end
private
2016-08-10 14:48:21 +00:00
def require_lfs_enabled!
2016-07-20 16:41:26 +00:00
return if Gitlab.config.lfs.enabled
render(
json: {
message: 'Git LFS is not enabled on this GitLab server, contact your admin.',
documentation_url: help_url
2016-07-20 16:41:26 +00:00
},
status: 501
)
end
def lfs_check_access!
return if download_request? && lfs_download_access?
return if upload_request? && lfs_upload_access?
if project.public? || can?(user, :read_project, project)
lfs_forbidden!
2016-07-20 16:41:26 +00:00
else
render_lfs_not_found
end
end
def lfs_forbidden!
render_lfs_forbidden
2016-07-20 16:41:26 +00:00
end
def render_lfs_forbidden
render(
json: {
message: 'Access forbidden. Check your access level.',
documentation_url: help_url
2016-07-20 16:41:26 +00:00
},
content_type: "application/vnd.git-lfs+json",
status: 403
)
end
def render_lfs_not_found
render(
json: {
message: 'Not found.',
documentation_url: help_url
2016-07-20 16:41:26 +00:00
},
content_type: "application/vnd.git-lfs+json",
status: 404
)
end
def lfs_download_access?
return false unless project.lfs_enabled?
ci? || lfs_deploy_token? || user_can_download_code? || build_can_download_code?
end
def lfs_upload_access?
return false unless project.lfs_enabled?
has_authentication_ability?(:push_code) && can?(user, :push_code, project)
end
def lfs_deploy_token?
authentication_result.lfs_deploy_token?(project)
end
def user_can_download_code?
has_authentication_ability?(:download_code) && can?(user, :download_code, project)
end
def build_can_download_code?
has_authentication_ability?(:build_download_code) && can?(user, :build_download_code, project)
end
2016-07-20 16:41:26 +00:00
def storage_project
@storage_project ||= begin
result = project
# TODO: Make this go to the fork_network root immeadiatly
# dependant on the discussion in: https://gitlab.com/gitlab-org/gitlab-ce/issues/39769
result = result.fork_source while result.forked?
2016-07-20 16:41:26 +00:00
result
end
end
def objects
@objects ||= (params[:objects] || []).to_a
end
2017-05-16 19:58:46 +00:00
def has_authentication_ability?(capability)
(authentication_abilities || []).include?(capability)
end
2016-07-20 16:41:26 +00:00
end