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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
1.4 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
2021-01-29 00:20:46 +05:30
skip_before_action :default_cache_headers, only: :show
2020-01-01 13:55:28 +05:30
prepend_before_action(only: [:show]) { authenticate_sessionless_user!(:blob) }
2014-09-02 18:07:02 +05:30
2021-02-22 17:27:13 +05:30
before_action :set_ref_and_path
2015-09-11 14:41:01 +05:30
before_action :require_non_empty_project
before_action :authorize_download_code!
2022-01-26 12:08:38 +05:30
before_action :check_show_rate_limit!, only: [:show], unless: :external_storage_request?
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
2021-10-27 15:23:28 +05:30
@blob = @repository.blob_at(@ref, @path, limit: Gitlab::Git::Blob::LFS_POINTER_MAX_SIZE)
2014-09-02 18:07:02 +05:30
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
2021-02-22 17:27:13 +05:30
def set_ref_and_path
2020-03-13 15:44:24 +05:30
# This bypasses assign_ref_vars to avoid a Gitaly FindCommit lookup.
2021-02-22 17:27:13 +05:30
# We don't need to find the commit to either rate limit or send the
# blob.
@ref, @path = extract_ref(get_id)
end
2020-03-13 15:44:24 +05:30
2022-01-26 12:08:38 +05:30
def check_show_rate_limit!
check_rate_limit!(:raw_blob, scope: [@project, @path]) do
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
2014-09-02 18:07:02 +05:30
end
2022-01-26 12:08:38 +05:30
Projects::RawController.prepend_mod