2013-04-03 02:26:38 -04:00
|
|
|
# Controller for viewing a file's raw
|
2013-06-23 12:47:22 -04:00
|
|
|
class Projects::RawController < Projects::ApplicationController
|
2013-04-03 02:26:38 -04:00
|
|
|
include ExtractsPath
|
|
|
|
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :require_non_empty_project
|
|
|
|
before_action :assign_ref_vars
|
|
|
|
before_action :authorize_download_code!
|
2013-04-03 02:26:38 -04:00
|
|
|
|
|
|
|
def show
|
2013-10-01 13:34:41 -04:00
|
|
|
@blob = @repository.blob_at(@commit.id, @path)
|
2013-04-03 02:26:38 -04:00
|
|
|
|
2013-10-01 10:00:28 -04:00
|
|
|
if @blob
|
2014-02-13 14:09:11 -05:00
|
|
|
type = get_blob_type
|
2013-09-03 13:55:01 -04:00
|
|
|
|
|
|
|
headers['X-Content-Type-Options'] = 'nosniff'
|
|
|
|
|
2013-04-03 02:26:38 -04:00
|
|
|
send_data(
|
|
|
|
@blob.data,
|
2013-09-03 13:55:01 -04:00
|
|
|
type: type,
|
2015-09-02 02:28:48 -04:00
|
|
|
disposition: 'inline'
|
2013-04-03 02:26:38 -04:00
|
|
|
)
|
|
|
|
else
|
2015-10-09 13:07:29 -04:00
|
|
|
render_404
|
2013-04-03 02:26:38 -04:00
|
|
|
end
|
|
|
|
end
|
2014-02-13 14:09:11 -05:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def get_blob_type
|
2014-08-28 03:42:52 -04:00
|
|
|
if @blob.text?
|
2014-02-13 14:09:11 -05:00
|
|
|
'text/plain; charset=utf-8'
|
2015-09-03 05:55:43 -04:00
|
|
|
elsif @blob.image?
|
|
|
|
@blob.content_type
|
2014-02-13 14:09:11 -05:00
|
|
|
else
|
2014-08-28 03:42:52 -04:00
|
|
|
'application/octet-stream'
|
2014-02-13 14:09:11 -05:00
|
|
|
end
|
|
|
|
end
|
2013-04-03 02:26:38 -04:00
|
|
|
end
|