Switch raw trace to use X-Sendfile header

This commit is contained in:
Tomasz Maczukin 2016-04-17 16:58:41 +02:00
parent 27d1349f2b
commit bf4371d60d
No known key found for this signature in database
GPG Key ID: 7E9EB2E4B0F625CD
2 changed files with 7 additions and 4 deletions

View File

@ -1,7 +1,7 @@
class Projects::BuildsController < Projects::ApplicationController
before_action :build, except: [:index, :cancel_all]
before_action :authorize_read_build!, except: [:cancel, :cancel_all, :retry]
before_action :authorize_update_build!, except: [:index, :show, :status, :raw_trace]
before_action :authorize_update_build!, except: [:index, :show, :status, :raw]
layout 'project'
def index
@ -63,11 +63,14 @@ class Projects::BuildsController < Projects::ApplicationController
end
def raw
response.headers['Content-Typei'] = 'text/plain'
if @build.has_trace?
render json: { trace_file: @build.path_to_trace }
response.headers['X-Sendfile'] = @build.path_to_trace
else
render json: {}, status: 404
response.status = 404
end
render nothing: true
end
private

View File

@ -669,7 +669,7 @@ Rails.application.routes.draw do
post :cancel
post :retry
post :erase
get :raw, format: false
get :raw
end
resource :artifacts, only: [] do