summaryrefslogtreecommitdiff
path: root/app/controllers/builds_controller.rb
blob: d8ebcc00b2ab730967d380bce970a41b663bf444 (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
class BuildsController < ApplicationController
  before_filter :authenticate_user!, except: [:status]
  before_filter :project
  before_filter :authorize_access_project!, except: [:status]
  before_filter :authorize_manage_project!, except: [:status, :show]
  before_filter :build, except: [:show]

  def show
    if params[:id] =~ /\A\d+\Z/
      @build = build
    else
      # try to find commit by sha
      commit = commit_by_sha

      if commit
        # Redirect to commit page
        redirect_to project_commit_path(commit.project, commit)
        return
      end
    end

    raise ActiveRecord::RecordNotFound unless @build

    @builds = @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 {
        render json: @build.to_json(methods: :trace_html)
      }
    end
  end

  def retry
    build = Build.retry(@build)

    if params[:return_to]
      redirect_to params[:return_to]
    else
      redirect_to project_build_path(project, build)
    end
  end

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

  def cancel
    @build.cancel

    redirect_to project_build_path(@project, @build)
  end

  protected

  def project
    @project = 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
end