summaryrefslogtreecommitdiff
path: root/app/controllers/ci/builds_controller.rb
blob: b0b8b62fcedcc550fe410e0c4f7be6aedb0f4bb8 (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
module Ci
  class BuildsController < Ci::ApplicationController
    before_action :authenticate_user!, except: [:status]
    before_action :project
    before_action :authorize_access_project!, except: [:status]
    before_action :authorize_manage_project!, except: [:status, :retry, :cancel]
    before_action :authorize_manage_builds!, only: [:retry, :cancel]
    before_action :build

    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

    protected

    def project
      @project = Ci::Project.find(params[:project_id])
    end

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

    def commit_by_sha
      @project.commits.find_by(sha: params[:id])
    end

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