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

39 lines
730 B
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
# Controller for viewing a file's raw
class Projects::RawController < Projects::ApplicationController
include ExtractsPath
2015-09-11 14:41:01 +05:30
before_action :require_non_empty_project
before_action :assign_ref_vars
before_action :authorize_download_code!
2014-09-02 18:07:02 +05:30
def show
@blob = @repository.blob_at(@commit.id, @path)
if @blob
type = get_blob_type
headers['X-Content-Type-Options'] = 'nosniff'
send_data(
@blob.data,
type: type,
2015-09-25 12:07:36 +05:30
disposition: 'inline'
2014-09-02 18:07:02 +05:30
)
else
not_found!
end
end
private
def get_blob_type
if @blob.text?
'text/plain; charset=utf-8'
2015-09-25 12:07:36 +05:30
elsif @blob.image?
@blob.content_type
2014-09-02 18:07:02 +05:30
else
'application/octet-stream'
end
end
end