mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-10 21:26:07 +10:00
RFC 5987 and RFC 6266 encoding issues. This change allows the browser to determine the filename based on the URL. See: http://greenbytes.de/tech/tc2231/ Closes https://github.com/gitlabhq/gitlabhq/issues/9595 Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/1829
37 lines
682 B
Ruby
37 lines
682 B
Ruby
# Controller for viewing a file's raw
|
|
class Projects::RawController < Projects::ApplicationController
|
|
include ExtractsPath
|
|
|
|
before_action :require_non_empty_project
|
|
before_action :assign_ref_vars
|
|
before_action :authorize_download_code!
|
|
|
|
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,
|
|
disposition: 'inline'
|
|
)
|
|
else
|
|
not_found!
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def get_blob_type
|
|
if @blob.text?
|
|
'text/plain; charset=utf-8'
|
|
else
|
|
'application/octet-stream'
|
|
end
|
|
end
|
|
end
|