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
|
|
|
|
|
|
|
|
# Authorize
|
|
|
|
before_filter :authorize_read_project!
|
|
|
|
before_filter :authorize_code_access!
|
|
|
|
before_filter :require_non_empty_project
|
|
|
|
|
|
|
|
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,
|
2013-04-03 02:26:38 -04:00
|
|
|
disposition: 'inline',
|
|
|
|
filename: @blob.name
|
|
|
|
)
|
|
|
|
else
|
|
|
|
not_found!
|
|
|
|
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'
|
|
|
|
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
|
|
|
|
|