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
|
|
|
|
headers['X-Content-Type-Options'] = 'nosniff'
|
|
|
|
|
2015-12-23 02:04:40 +05:30
|
|
|
if @blob.lfs_pointer?
|
|
|
|
send_lfs_object
|
|
|
|
else
|
2016-04-02 18:10:28 +05:30
|
|
|
headers.store(*Gitlab::Workhorse.send_git_blob(@repository, @blob))
|
|
|
|
headers['Content-Disposition'] = 'inline'
|
|
|
|
headers['Content-Type'] = get_blob_type
|
|
|
|
head :ok # 'render nothing: true' messes up the Content-Type
|
2015-12-23 02:04:40 +05:30
|
|
|
end
|
2014-09-02 18:07:02 +05:30
|
|
|
else
|
2015-10-24 18:46:33 +05:30
|
|
|
render_404
|
2014-09-02 18:07:02 +05:30
|
|
|
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
|
2015-12-23 02:04:40 +05:30
|
|
|
|
|
|
|
def send_lfs_object
|
|
|
|
lfs_object = find_lfs_object
|
|
|
|
|
|
|
|
if lfs_object && lfs_object.project_allowed_access?(@project)
|
|
|
|
send_file lfs_object.file.path, filename: @blob.name, disposition: 'attachment'
|
|
|
|
else
|
|
|
|
render_404
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def find_lfs_object
|
|
|
|
lfs_object = LfsObject.find_by_oid(@blob.lfs_oid)
|
|
|
|
if lfs_object && lfs_object.file.exists?
|
|
|
|
lfs_object
|
|
|
|
else
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
end
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|