2018-09-25 23:45:43 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-04-03 02:26:38 -04:00
|
|
|
# Controller for viewing a file's raw
|
2013-06-23 12:47:22 -04:00
|
|
|
class Projects::RawController < Projects::ApplicationController
|
2013-04-03 02:26:38 -04:00
|
|
|
include ExtractsPath
|
2018-08-30 08:34:41 -04:00
|
|
|
include SendsBlob
|
2019-12-06 13:07:44 -05:00
|
|
|
include StaticObjectExternalStorage
|
|
|
|
|
|
|
|
prepend_before_action(only: [:show]) { authenticate_sessionless_user!(:blob) }
|
2013-04-03 02:26:38 -04:00
|
|
|
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :require_non_empty_project
|
|
|
|
before_action :authorize_download_code!
|
2019-12-06 13:07:44 -05:00
|
|
|
before_action :show_rate_limit, only: [:show], unless: :external_storage_request?
|
2019-12-23 07:08:18 -05:00
|
|
|
before_action :assign_ref_vars
|
2019-12-06 13:07:44 -05:00
|
|
|
before_action :redirect_to_external_storage, only: :show, if: :static_objects_external_storage_enabled?
|
2013-04-03 02:26:38 -04:00
|
|
|
|
|
|
|
def show
|
2013-10-01 13:34:41 -04:00
|
|
|
@blob = @repository.blob_at(@commit.id, @path)
|
2016-03-07 08:27:53 -05:00
|
|
|
|
2018-10-17 11:47:05 -04:00
|
|
|
send_blob(@repository, @blob, inline: (params[:inline] != 'false'))
|
2015-12-03 11:08:09 -05:00
|
|
|
end
|
2019-07-24 15:49:31 -04:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def show_rate_limit
|
2019-12-23 07:08:18 -05:00
|
|
|
# This bypasses assign_ref_vars to avoid a Gitaly FindCommit lookup.
|
|
|
|
# When rate limiting, we really don't care if a different commit is
|
|
|
|
# being requested.
|
|
|
|
_ref, path = extract_ref(get_id)
|
|
|
|
|
|
|
|
if rate_limiter.throttled?(:show_raw_controller, scope: [@project, path], threshold: raw_blob_request_limit)
|
2019-12-05 16:07:40 -05:00
|
|
|
rate_limiter.log_request(request, :raw_blob_request_limit, current_user)
|
2019-07-24 15:49:31 -04:00
|
|
|
|
2019-12-23 07:08:18 -05:00
|
|
|
render plain: _('You cannot access the raw file. Please wait a minute.'), status: :too_many_requests
|
2019-12-05 16:07:40 -05:00
|
|
|
end
|
|
|
|
end
|
2019-07-24 15:49:31 -04:00
|
|
|
|
2019-12-05 16:07:40 -05:00
|
|
|
def rate_limiter
|
|
|
|
::Gitlab::ApplicationRateLimiter
|
2019-07-24 15:49:31 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def raw_blob_request_limit
|
|
|
|
Gitlab::CurrentSettings
|
|
|
|
.current_application_settings
|
|
|
|
.raw_blob_request_limit
|
|
|
|
end
|
2013-04-03 02:26:38 -04:00
|
|
|
end
|