2018-12-05 23:21:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
# Controller for viewing a file's raw
|
|
|
|
class Projects::RawController < Projects::ApplicationController
|
|
|
|
include ExtractsPath
|
2018-11-20 20:47:30 +05:30
|
|
|
include SendsBlob
|
2020-01-01 13:55:28 +05:30
|
|
|
include StaticObjectExternalStorage
|
|
|
|
|
|
|
|
prepend_before_action(only: [:show]) { authenticate_sessionless_user!(:blob) }
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
before_action :require_non_empty_project
|
|
|
|
before_action :assign_ref_vars
|
|
|
|
before_action :authorize_download_code!
|
2020-01-01 13:55:28 +05:30
|
|
|
before_action :show_rate_limit, only: [:show], unless: :external_storage_request?
|
|
|
|
before_action :redirect_to_external_storage, only: :show, if: :static_objects_external_storage_enabled?
|
2014-09-02 18:07:02 +05:30
|
|
|
|
|
|
|
def show
|
|
|
|
@blob = @repository.blob_at(@commit.id, @path)
|
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
send_blob(@repository, @blob, inline: (params[:inline] != 'false'))
|
2015-12-23 02:04:40 +05:30
|
|
|
end
|
2019-10-12 21:52:04 +05:30
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def show_rate_limit
|
2020-01-01 13:55:28 +05:30
|
|
|
if rate_limiter.throttled?(:show_raw_controller, scope: [@project, @commit, @path], threshold: raw_blob_request_limit)
|
|
|
|
rate_limiter.log_request(request, :raw_blob_request_limit, current_user)
|
2019-10-12 21:52:04 +05:30
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
flash[:alert] = _('You cannot access the raw file. Please wait a minute.')
|
|
|
|
redirect_to project_blob_path(@project, File.join(@ref, @path)), status: :too_many_requests
|
|
|
|
end
|
|
|
|
end
|
2019-10-12 21:52:04 +05:30
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
def rate_limiter
|
|
|
|
::Gitlab::ApplicationRateLimiter
|
2019-10-12 21:52:04 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def raw_blob_request_limit
|
|
|
|
Gitlab::CurrentSettings
|
|
|
|
.current_application_settings
|
|
|
|
.raw_blob_request_limit
|
|
|
|
end
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|