debian-mirror-gitlab/app/controllers/projects/raw_controller.rb

51 lines
1.6 KiB
Ruby
Raw Normal View History

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 :authorize_download_code!
2020-01-01 13:55:28 +05:30
before_action :show_rate_limit, only: [:show], unless: :external_storage_request?
2020-03-13 15:44:24 +05:30
before_action :assign_ref_vars
2020-10-04 03:57:07 +05:30
before_action :no_cache_headers, only: [:show]
2020-01-01 13:55:28 +05:30
before_action :redirect_to_external_storage, only: :show, if: :static_objects_external_storage_enabled?
2014-09-02 18:07:02 +05:30
2021-01-03 14:25:43 +05:30
feature_category :source_code_management
2014-09-02 18:07:02 +05:30
def show
@blob = @repository.blob_at(@commit.id, @path)
2021-01-08 16:13:35 +05:30
send_blob(@repository, @blob, inline: (params[:inline] != 'false'), allow_caching: Guest.can?(:download_code, @project))
2015-12-23 02:04:40 +05:30
end
2019-10-12 21:52:04 +05:30
private
def show_rate_limit
2020-03-13 15:44:24 +05:30
# 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)
2020-01-01 13:55:28 +05:30
rate_limiter.log_request(request, :raw_blob_request_limit, current_user)
2019-10-12 21:52:04 +05:30
2020-03-13 15:44:24 +05:30
render plain: _('You cannot access the raw file. Please wait a minute.'), status: :too_many_requests
2020-01-01 13:55:28 +05:30
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