gitlab-org--gitlab-foss/app/controllers/projects/builds_controller.rb

75 lines
1.8 KiB
Ruby
Raw Normal View History

class Projects::BuildsController < Projects::ApplicationController
2015-10-14 06:15:03 -04:00
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]
layout 'project'
2015-10-14 06:15:03 -04:00
def index
@scope = params[:scope]
@all_builds = project.builds
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
when 'running'
@builds.running_or_pending.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
@builds
2015-10-14 06:15:03 -04:00
end
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
@project.builds.running_or_pending.each(&:cancel)
2015-10-14 06:15:03 -04:00
redirect_to namespace_project_builds_path(project.namespace, project)
end
def show
2015-12-04 06:55:23 -05:00
@builds = @project.ci_commits.find_by_sha(@build.sha).builds.order('id DESC')
@builds = @builds.where("id not in (?)", @build.id)
@commit = @build.commit
respond_to do |format|
format.html
format.json do
render json: @build.to_json(methods: :trace_html)
end
end
end
def retry
unless @build.retryable?
return render_404
end
build = Ci::Build.retry(@build)
redirect_to build_path(build)
end
def cancel
@build.cancel
redirect_to build_path(@build)
end
def status
render json: @build.to_json(only: [:status, :id, :sha, :coverage], methods: :sha)
end
def erase
@build.erase(erased_by: current_user)
redirect_to namespace_project_build_path(project.namespace, project, @build),
notice: "Build has been sucessfully erased!"
end
private
def build
@build ||= project.builds.unscoped.find_by!(id: params[:id])
end
def build_path(build)
2015-12-04 06:55:23 -05:00
namespace_project_build_path(build.project.namespace, build.project, build)
end
end