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

38 lines
1 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
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!
2019-10-12 21:52:04 +05:30
before_action :show_rate_limit, only: [:show]
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
limiter = ::Gitlab::ActionRateLimiter.new(action: :show_raw_controller)
return unless limiter.throttled?([@project, @commit, @path], raw_blob_request_limit)
limiter.log_request(request, :raw_blob_request_limit, current_user)
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
def raw_blob_request_limit
Gitlab::CurrentSettings
.current_application_settings
.raw_blob_request_limit
end
2014-09-02 18:07:02 +05:30
end