2018-09-25 23:45:43 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-05-16 07:41:15 -04:00
|
|
|
class Projects::JobsController < Projects::ApplicationController
|
2018-03-02 16:19:17 -05:00
|
|
|
include SendFileUpload
|
2018-08-26 11:57:51 -04:00
|
|
|
include ContinueParams
|
2018-03-02 16:19:17 -05:00
|
|
|
|
2019-01-07 11:53:43 -05:00
|
|
|
before_action :build, except: [:index]
|
2018-07-05 09:55:10 -04:00
|
|
|
before_action :authorize_read_build!
|
2017-05-05 07:24:07 -04:00
|
|
|
before_action :authorize_update_build!,
|
2019-01-07 11:53:43 -05:00
|
|
|
except: [:index, :show, :status, :raw, :trace, :erase]
|
2017-11-06 08:20:44 -05:00
|
|
|
before_action :authorize_erase_build!, only: [:erase]
|
2018-12-17 13:22:03 -05:00
|
|
|
before_action :authorize_use_build_terminal!, only: [:terminal, :terminal_websocket_authorize]
|
2018-07-05 09:55:10 -04:00
|
|
|
before_action :verify_api_request!, only: :terminal_websocket_authorize
|
2017-05-05 07:24:07 -04:00
|
|
|
|
2016-02-08 02:51:10 -05:00
|
|
|
layout 'project'
|
2015-10-07 09:24:32 -04:00
|
|
|
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2015-10-14 06:15:03 -04:00
|
|
|
def index
|
|
|
|
@scope = params[:scope]
|
2016-08-11 09:22:35 -04:00
|
|
|
@all_builds = project.builds.relevant
|
2017-09-26 06:59:00 -04:00
|
|
|
@builds = @all_builds.order('ci_builds.id DESC')
|
2015-10-14 06:15:03 -04:00
|
|
|
@builds =
|
|
|
|
case @scope
|
2016-07-05 04:10:34 -04:00
|
|
|
when 'pending'
|
|
|
|
@builds.pending.reverse_order
|
2015-12-30 09:25:42 -05:00
|
|
|
when 'running'
|
2016-07-05 04:10:34 -04:00
|
|
|
@builds.running.reverse_order
|
2015-10-14 08:21:49 -04:00
|
|
|
when 'finished'
|
2015-10-23 05:40:57 -04:00
|
|
|
@builds.finished
|
2015-10-14 08:21:49 -04:00
|
|
|
else
|
2015-12-30 09:25:42 -05:00
|
|
|
@builds
|
2015-10-14 06:15:03 -04:00
|
|
|
end
|
2017-04-07 11:06:41 -04:00
|
|
|
@builds = @builds.includes([
|
|
|
|
{ pipeline: :project },
|
|
|
|
:project,
|
|
|
|
:tags
|
|
|
|
])
|
2018-01-11 08:22:52 -05:00
|
|
|
@builds = @builds.page(params[:page]).per(30).without_count
|
2015-10-14 06:15:03 -04:00
|
|
|
end
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2015-10-14 06:15:03 -04:00
|
|
|
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2015-10-06 11:11:10 -04:00
|
|
|
def show
|
2018-06-29 11:45:32 -04:00
|
|
|
@pipeline = @build.pipeline
|
|
|
|
@builds = @pipeline.builds
|
2018-04-05 17:04:42 -04:00
|
|
|
.order('id DESC')
|
|
|
|
.present(current_user: current_user)
|
2017-05-23 11:10:07 -04:00
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
|
|
|
format.json do
|
|
|
|
Gitlab::PollingInterval.set_header(response, interval: 10_000)
|
|
|
|
|
|
|
|
render json: BuildSerializer
|
|
|
|
.new(project: @project, current_user: @current_user)
|
2017-05-31 16:10:00 -04:00
|
|
|
.represent(@build, {}, BuildDetailsEntity)
|
2017-05-23 11:10:07 -04:00
|
|
|
end
|
|
|
|
end
|
2015-10-06 11:11:10 -04:00
|
|
|
end
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2015-10-06 11:11:10 -04:00
|
|
|
|
2016-05-09 12:59:45 -04:00
|
|
|
def trace
|
2017-04-06 12:20:27 -04:00
|
|
|
build.trace.read do |stream|
|
|
|
|
respond_to do |format|
|
|
|
|
format.json do
|
|
|
|
result = {
|
|
|
|
id: @build.id, status: @build.status, complete: @build.complete?
|
|
|
|
}
|
|
|
|
|
|
|
|
if stream.valid?
|
|
|
|
stream.limit
|
|
|
|
state = params[:state].presence
|
|
|
|
trace = stream.html_with_state(state)
|
|
|
|
result.merge!(trace.to_h)
|
|
|
|
end
|
|
|
|
|
|
|
|
render json: result
|
|
|
|
end
|
2016-05-09 12:59:45 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-10-07 09:24:32 -04:00
|
|
|
def retry
|
2017-04-28 05:38:32 -04:00
|
|
|
return respond_422 unless @build.retryable?
|
2015-10-07 09:24:32 -04:00
|
|
|
|
2016-06-10 17:36:54 -04:00
|
|
|
build = Ci::Build.retry(@build, current_user)
|
2015-11-03 05:44:07 -05:00
|
|
|
redirect_to build_path(build)
|
2015-10-07 09:24:32 -04:00
|
|
|
end
|
|
|
|
|
2016-07-16 12:39:58 -04:00
|
|
|
def play
|
2017-04-28 05:38:32 -04:00
|
|
|
return respond_422 unless @build.playable?
|
2016-07-16 12:39:58 -04:00
|
|
|
|
|
|
|
build = @build.play(current_user)
|
|
|
|
redirect_to build_path(build)
|
|
|
|
end
|
|
|
|
|
2015-10-07 09:24:32 -04:00
|
|
|
def cancel
|
2017-04-28 05:38:32 -04:00
|
|
|
return respond_422 unless @build.cancelable?
|
|
|
|
|
2015-10-07 09:24:32 -04:00
|
|
|
@build.cancel
|
2018-08-26 11:57:51 -04:00
|
|
|
|
|
|
|
if continue_params
|
|
|
|
redirect_to continue_params[:to]
|
|
|
|
else
|
|
|
|
redirect_to builds_project_pipeline_path(@project, @build.pipeline.id)
|
|
|
|
end
|
2015-10-07 09:24:32 -04:00
|
|
|
end
|
|
|
|
|
2018-09-18 03:12:13 -04:00
|
|
|
def unschedule
|
|
|
|
return respond_422 unless @build.scheduled?
|
|
|
|
|
2018-09-20 22:17:37 -04:00
|
|
|
@build.unschedule!
|
2018-09-18 03:12:13 -04:00
|
|
|
redirect_to build_path(@build)
|
|
|
|
end
|
|
|
|
|
2016-02-08 07:53:30 -05:00
|
|
|
def status
|
2017-03-03 01:59:25 -05:00
|
|
|
render json: BuildSerializer
|
2017-05-09 00:15:34 -04:00
|
|
|
.new(project: @project, current_user: @current_user)
|
2017-03-10 12:44:41 -05:00
|
|
|
.represent_status(@build)
|
2016-02-08 07:53:30 -05:00
|
|
|
end
|
2016-02-08 02:57:09 -05:00
|
|
|
|
2016-02-01 05:59:05 -05:00
|
|
|
def erase
|
2017-04-28 05:38:32 -04:00
|
|
|
if @build.erase(erased_by: current_user)
|
2017-06-29 13:06:35 -04:00
|
|
|
redirect_to project_job_path(project, @build),
|
2017-12-14 18:10:11 -05:00
|
|
|
notice: "Job has been successfully erased!"
|
2017-04-28 05:38:32 -04:00
|
|
|
else
|
|
|
|
respond_422
|
|
|
|
end
|
2016-01-22 09:29:02 -05:00
|
|
|
end
|
|
|
|
|
2016-04-16 17:32:18 -04:00
|
|
|
def raw
|
2018-04-03 08:30:14 -04:00
|
|
|
if trace_artifact_file
|
2018-12-06 16:22:39 -05:00
|
|
|
workhorse_set_content_type!
|
2018-04-03 08:30:14 -04:00
|
|
|
send_upload(trace_artifact_file,
|
|
|
|
send_params: raw_send_params,
|
|
|
|
redirect_params: raw_redirect_params)
|
|
|
|
else
|
|
|
|
build.trace.read do |stream|
|
|
|
|
if stream.file?
|
2018-12-06 16:22:39 -05:00
|
|
|
workhorse_set_content_type!
|
2018-04-03 08:30:14 -04:00
|
|
|
send_file stream.path, type: 'text/plain; charset=utf-8', disposition: 'inline'
|
|
|
|
else
|
2018-12-06 16:22:39 -05:00
|
|
|
# In this case we can't use workhorse_set_content_type! and let
|
|
|
|
# Workhorse handle the response because the data is streamed directly
|
|
|
|
# to the user but, because we have the trace content, we can calculate
|
|
|
|
# the proper content type and disposition here.
|
|
|
|
raw_data = stream.raw
|
|
|
|
send_data raw_data, type: 'text/plain; charset=utf-8', disposition: raw_trace_content_disposition(raw_data), filename: 'job.log'
|
2018-04-03 08:30:14 -04:00
|
|
|
end
|
2017-04-06 12:20:27 -04:00
|
|
|
end
|
2016-04-16 17:32:18 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-07-05 09:55:10 -04:00
|
|
|
def terminal
|
|
|
|
end
|
|
|
|
|
|
|
|
# GET .../terminal.ws : implemented in gitlab-workhorse
|
|
|
|
def terminal_websocket_authorize
|
|
|
|
set_workhorse_internal_api_content_type
|
|
|
|
render json: Gitlab::Workhorse.terminal_websocket(@build.terminal_specification)
|
|
|
|
end
|
|
|
|
|
2015-10-06 11:11:10 -04:00
|
|
|
private
|
|
|
|
|
2017-05-05 07:24:07 -04:00
|
|
|
def authorize_update_build!
|
|
|
|
return access_denied! unless can?(current_user, :update_build, build)
|
|
|
|
end
|
|
|
|
|
2017-11-06 08:20:44 -05:00
|
|
|
def authorize_erase_build!
|
|
|
|
return access_denied! unless can?(current_user, :erase_build, build)
|
|
|
|
end
|
|
|
|
|
2018-07-05 09:55:10 -04:00
|
|
|
def authorize_use_build_terminal!
|
|
|
|
return access_denied! unless can?(current_user, :create_build_terminal, build)
|
|
|
|
end
|
|
|
|
|
|
|
|
def verify_api_request!
|
|
|
|
Gitlab::Workhorse.verify_api_request!(request.headers)
|
|
|
|
end
|
|
|
|
|
2018-04-03 08:30:14 -04:00
|
|
|
def raw_send_params
|
|
|
|
{ type: 'text/plain; charset=utf-8', disposition: 'inline' }
|
|
|
|
end
|
|
|
|
|
|
|
|
def raw_redirect_params
|
|
|
|
{ query: { 'response-content-type' => 'text/plain; charset=utf-8', 'response-content-disposition' => 'inline' } }
|
|
|
|
end
|
|
|
|
|
2018-03-01 16:30:31 -05:00
|
|
|
def trace_artifact_file
|
|
|
|
@trace_artifact_file ||= build.job_artifacts_trace&.file
|
|
|
|
end
|
|
|
|
|
2015-10-06 11:11:10 -04:00
|
|
|
def build
|
2017-05-05 07:25:48 -04:00
|
|
|
@build ||= project.builds.find(params[:id])
|
2018-06-25 13:33:12 -04:00
|
|
|
.present(current_user: current_user)
|
2015-10-06 11:11:10 -04:00
|
|
|
end
|
2015-10-07 09:24:32 -04:00
|
|
|
|
|
|
|
def build_path(build)
|
2017-06-29 13:06:35 -04:00
|
|
|
project_job_path(build.project, build)
|
2015-10-07 09:24:32 -04:00
|
|
|
end
|
2018-12-06 16:22:39 -05:00
|
|
|
|
|
|
|
def raw_trace_content_disposition(raw_data)
|
|
|
|
mime_type = MimeMagic.by_magic(raw_data)
|
|
|
|
|
|
|
|
# if mime_type is nil can also represent 'text/plain'
|
|
|
|
return 'inline' if mime_type.nil? || mime_type.type == 'text/plain'
|
|
|
|
|
|
|
|
'attachment'
|
|
|
|
end
|
2015-10-06 11:11:10 -04:00
|
|
|
end
|