2017-05-16 07:41:15 -04:00
|
|
|
class Projects::JobsController < Projects::ApplicationController
|
2015-10-14 06:15:03 -04:00
|
|
|
before_action :build, except: [:index, :cancel_all]
|
2017-05-05 07:24:07 -04:00
|
|
|
|
|
|
|
before_action :authorize_read_build!,
|
|
|
|
only: [:index, :show, :status, :raw, :trace]
|
|
|
|
before_action :authorize_update_build!,
|
|
|
|
except: [:index, :show, :status, :raw, :trace, :cancel_all]
|
|
|
|
|
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
|
|
|
|
@scope = params[:scope]
|
2016-08-11 09:22:35 -04:00
|
|
|
@all_builds = project.builds.relevant
|
2015-10-23 05:40:57 -04:00
|
|
|
@builds = @all_builds.order('created_at 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
|
|
|
|
])
|
2015-10-23 05:40:57 -04:00
|
|
|
@builds = @builds.page(params[:page]).per(30)
|
2015-10-14 06:15:03 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def cancel_all
|
2017-05-05 07:24:07 -04:00
|
|
|
return access_denied! unless can?(current_user, :update_build, project)
|
|
|
|
|
|
|
|
@project.builds.running_or_pending.each do |build|
|
|
|
|
build.cancel if can?(current_user, :update_build, build)
|
|
|
|
end
|
|
|
|
|
2017-06-29 13:06:35 -04:00
|
|
|
redirect_to project_jobs_path(project)
|
2015-10-14 06:15:03 -04:00
|
|
|
end
|
|
|
|
|
2015-10-06 11:11:10 -04:00
|
|
|
def show
|
2016-06-02 10:19:18 -04:00
|
|
|
@builds = @project.pipelines.find_by_sha(@build.sha).builds.order('id DESC')
|
2015-11-03 05:44:07 -05:00
|
|
|
@builds = @builds.where("id not in (?)", @build.id)
|
2016-06-02 10:19:18 -04:00
|
|
|
@pipeline = @build.pipeline
|
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
|
|
|
|
|
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
|
|
|
|
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),
|
2016-09-15 22:27:49 -04:00
|
|
|
notice: "Build 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
|
2017-04-06 12:20:27 -04:00
|
|
|
build.trace.read do |stream|
|
|
|
|
if stream.file?
|
|
|
|
send_file stream.path, type: 'text/plain; charset=utf-8', disposition: 'inline'
|
|
|
|
else
|
|
|
|
render_404
|
|
|
|
end
|
2016-04-16 17:32:18 -04:00
|
|
|
end
|
|
|
|
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
|
|
|
|
|
2015-10-06 11:11:10 -04:00
|
|
|
def build
|
2017-05-05 07:25:48 -04:00
|
|
|
@build ||= project.builds.find(params[:id])
|
2017-05-05 07:24:07 -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
|
2015-10-06 11:11:10 -04:00
|
|
|
end
|