summaryrefslogtreecommitdiff
path: root/app/controllers/projects/builds_controller.rb
blob: 816012762ce9021c45687551792a77dc23457a21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
class Projects::BuildsController < Projects::ApplicationController
  before_action :ci_project
  before_action :build, except: [:index, :cancel_all]

  before_action :authorize_admin_project!, except: [:index, :show, :status]

  layout "project"

  def index
    @scope = params[:scope]
    @all_builds = project.ci_builds
    @builds =
      case @scope
      when 'all'
        @all_builds
      when 'finished'
        @all_builds.finished
      else
        @all_builds.running_or_pending
      end
    @builds = @builds.order('created_at DESC').page(params[:page]).per(30)
  end

  def cancel_all
    @project.ci_builds.running_or_pending.each(&:cancel)

    redirect_to namespace_project_builds_path(project.namespace, project)
  end

  def show
    @builds = @ci_project.commits.find_by_sha(@build.sha).builds.order('id DESC')
    @builds = @builds.where("id not in (?)", @build.id).page(params[:page]).per(20)
    @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
    if @build.commands.blank?
      return page_404
    end

    build = Ci::Build.retry(@build)

    if params[:return_to]
      redirect_to URI.parse(params[:return_to]).path
    else
      redirect_to build_path(build)
    end
  end

  def status
    render json: @build.to_json(only: [:status, :id, :sha, :coverage], methods: :sha)
  end

  def cancel
    @build.cancel

    redirect_to build_path(@build)
  end

  private

  def build
    @build ||= ci_project.builds.unscoped.find_by!(id: params[:id])
  end

  def build_path(build)
    namespace_project_build_path(build.gl_project.namespace, build.gl_project, build)
  end
end