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
|
2019-10-17 11:06:17 -04:00
|
|
|
before_action only: [:show] do
|
2019-12-13 04:08:01 -05:00
|
|
|
push_frontend_feature_flag(:job_log_json, project, default_enabled: true)
|
2019-08-30 17:51:30 -04:00
|
|
|
end
|
2020-05-25 11:07:58 -04:00
|
|
|
before_action :authorize_create_proxy_build!, only: :proxy_websocket_authorize
|
|
|
|
before_action :verify_proxy_request!, only: :proxy_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
|
|
|
|
2015-10-14 06:15:03 -04:00
|
|
|
def index
|
2019-11-25 19:06:28 -05:00
|
|
|
# We need all builds for tabs counters
|
2020-03-13 20:09:30 -04:00
|
|
|
@all_builds = Ci::JobsFinder.new(current_user: current_user, project: @project).execute
|
2019-11-25 19:06:28 -05:00
|
|
|
|
2015-10-14 06:15:03 -04:00
|
|
|
@scope = params[:scope]
|
2020-03-13 20:09:30 -04:00
|
|
|
@builds = Ci::JobsFinder.new(current_user: current_user, project: @project, params: params).execute
|
2019-11-25 19:06:28 -05:00
|
|
|
@builds = @builds.eager_load_everything
|
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: 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
|
2020-01-13 04:08:03 -05:00
|
|
|
build.trace.being_watched!
|
|
|
|
|
2019-10-17 11:06:17 -04:00
|
|
|
# TODO: when the feature flag is removed we should not pass
|
|
|
|
# content_format to serialize method.
|
2019-12-13 04:08:01 -05:00
|
|
|
content_format = Feature.enabled?(:job_log_json, @project, default_enabled: true) ? :json : :html
|
2019-10-17 11:06:17 -04:00
|
|
|
|
|
|
|
build_trace = Ci::BuildTrace.new(
|
|
|
|
build: @build,
|
|
|
|
stream: stream,
|
|
|
|
state: params[:state],
|
|
|
|
content_format: content_format)
|
|
|
|
|
|
|
|
render json: BuildTraceSerializer
|
|
|
|
.new(project: @project, current_user: @current_user)
|
|
|
|
.represent(build_trace)
|
2017-04-06 12:20:27 -04:00
|
|
|
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
|
|
|
|
2019-07-29 03:43:10 -04:00
|
|
|
build = @build.play(current_user, play_params[:job_variables_attributes])
|
2016-07-16 12:39:58 -04:00
|
|
|
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
|
|
|
|
2019-06-20 13:13:02 -04:00
|
|
|
if continue_params[:to]
|
2018-08-26 11:57:51 -04:00
|
|
|
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),
|
2019-03-27 12:52:52 -04: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
|
2019-04-04 14:32:02 -04:00
|
|
|
render json: Gitlab::Workhorse.channel_websocket(@build.terminal_specification)
|
2018-07-05 09:55:10 -04:00
|
|
|
end
|
|
|
|
|
2020-05-25 11:07:58 -04:00
|
|
|
def proxy_websocket_authorize
|
|
|
|
render json: proxy_websocket_service(build_service_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
|
|
|
|
|
2020-05-25 11:07:58 -04:00
|
|
|
def authorize_create_proxy_build!
|
|
|
|
return access_denied! unless can?(current_user, :create_build_service_proxy, build)
|
|
|
|
end
|
|
|
|
|
2018-07-05 09:55:10 -04:00
|
|
|
def verify_api_request!
|
|
|
|
Gitlab::Workhorse.verify_api_request!(request.headers)
|
|
|
|
end
|
|
|
|
|
2020-05-25 11:07:58 -04:00
|
|
|
def verify_proxy_request!
|
|
|
|
verify_api_request!
|
|
|
|
set_workhorse_internal_api_content_type
|
|
|
|
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
|
|
|
|
|
2019-07-29 03:43:10 -04:00
|
|
|
def play_params
|
|
|
|
params.permit(job_variables_attributes: %i[key secret_value])
|
|
|
|
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
|
2019-09-13 09:26:31 -04:00
|
|
|
|
2020-05-25 11:07:58 -04:00
|
|
|
def build_service_specification
|
|
|
|
build.service_specification(service: params['service'],
|
|
|
|
port: params['port'],
|
|
|
|
path: params['path'],
|
|
|
|
subprotocols: proxy_subprotocol)
|
|
|
|
end
|
|
|
|
|
|
|
|
def proxy_subprotocol
|
|
|
|
# This will allow to reuse the same subprotocol set
|
|
|
|
# in the original websocket connection
|
|
|
|
request.headers['HTTP_SEC_WEBSOCKET_PROTOCOL'].presence || ::Ci::BuildRunnerSession::TERMINAL_SUBPROTOCOL
|
|
|
|
end
|
|
|
|
|
|
|
|
# This method provides the information to Workhorse
|
|
|
|
# about the service we want to proxy to.
|
|
|
|
# For security reasons, in case this operation is started by JS,
|
|
|
|
# it's important to use only sourced GitLab JS code
|
|
|
|
def proxy_websocket_service(service)
|
|
|
|
service[:url] = ::Gitlab::UrlHelpers.as_wss(service[:url])
|
|
|
|
|
|
|
|
::Gitlab::Workhorse.channel_websocket(service)
|
|
|
|
end
|
|
|
|
end
|