Skip to content
Snippets Groups Projects
Commit aaad7fd9 authored by Jeroen van Baarsen's avatar Jeroen van Baarsen
Browse files

Fixes #6207 Allow raw download of *.msi files

This PR also allows for download of [exe,rar,r0n,7z,7zip,zip]
Fix was originaly proposed by @MensSana
parent d41e404e
Branches
Tags
Loading
Loading
Loading
@@ -11,11 +11,7 @@ class Projects::RawController < Projects::ApplicationController
@blob = @repository.blob_at(@commit.id, @path)
 
if @blob
type = if @blob.mime_type =~ /html|javascript/
'text/plain; charset=utf-8'
else
@blob.mime_type
end
type = get_blob_type
 
headers['X-Content-Type-Options'] = 'nosniff'
 
Loading
Loading
@@ -29,5 +25,17 @@ class Projects::RawController < Projects::ApplicationController
not_found!
end
end
private
def get_blob_type
if @blob.mime_type =~ /html|javascript/
'text/plain; charset=utf-8'
elsif @blob.name =~ /(?:msi|exe|rar|r0\d|7z|7zip|zip)$/
'application/octet-stream'
else
@blob.mime_type
end
end
end
 
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment