diff options
author | Dmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com> | 2012-09-27 09:56:02 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com> | 2012-09-27 09:56:02 +0300 |
commit | 19c58becc00982b718f0e11b74129ef2ccce2454 (patch) | |
tree | ee7eb18b8e59074bc56ea06fd30ae241beed4a2f /app/controllers/blob_controller.rb | |
parent | 0439387be00bfb862b4454000f805f11fb8cc389 (diff) | |
parent | 2c8d3c33ff64ac6af5daf125a2f9ef917e55bcfc (diff) | |
download | gitlab-ce-19c58becc00982b718f0e11b74129ef2ccce2454.tar.gz |
Merge branch 'tsigo-routing_overhaul'
Diffstat (limited to 'app/controllers/blob_controller.rb')
-rw-r--r-- | app/controllers/blob_controller.rb | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/app/controllers/blob_controller.rb b/app/controllers/blob_controller.rb new file mode 100644 index 00000000000..33387842ec2 --- /dev/null +++ b/app/controllers/blob_controller.rb @@ -0,0 +1,37 @@ +# Controller for viewing a file's blame +class BlobController < ApplicationController + include ExtractsPath + include Gitlab::Encode + + layout "project" + + before_filter :project + + # Authorize + before_filter :add_project_abilities + before_filter :authorize_read_project! + before_filter :authorize_code_access! + before_filter :require_non_empty_project + + before_filter :assign_ref_vars + + def show + if @tree.is_blob? + if @tree.text? + encoding = detect_encoding(@tree.data) + mime_type = encoding ? "text/plain; charset=#{encoding}" : "text/plain" + else + mime_type = @tree.mime_type + end + + send_data( + @tree.data, + type: mime_type, + disposition: 'inline', + filename: @tree.name + ) + else + not_found! + end + end +end |