summaryrefslogtreecommitdiff
path: root/app/controllers/ci/runners_controller.rb
blob: 0ef32ce928fb5cf8851af0b7b61a560739afafa0 (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
module Ci
  class RunnersController < Ci::ApplicationController
    before_filter :authenticate_user!
    before_filter :project
    before_filter :set_runner, only: [:edit, :update, :destroy, :pause, :resume, :show]
    before_filter :authorize_access_project!
    before_filter :authorize_manage_project!

    layout 'ci/project'

    def index
      @runners = @project.runners.order('id DESC')
      @specific_runners = current_user.authorized_runners.
        where.not(id:  @runners).order("#{Ci::Runner.table_name}.id DESC").page(params[:page]).per(20)
      @shared_runners = Ci::Runner.shared.active
      @shared_runners_count = @shared_runners.count(:all)
    end

    def edit
    end

    def update
      if @runner.update_attributes(runner_params)
        redirect_to edit_ci_project_runner_path(@project, @runner), notice: 'Runner was successfully updated.'
      else
        redirect_to edit_ci_project_runner_path(@project, @runner), alert: 'Runner was not updated.'
      end
    end

    def destroy
      if @runner.only_for?(@project)
        @runner.destroy
      end

      redirect_to ci_project_runners_path(@project)
    end

    def resume
      if @runner.update_attributes(active: true)
        redirect_to ci_project_runners_path(@project, @runner), notice: 'Runner was successfully updated.'
      else
        redirect_to ci_project_runners_path(@project, @runner), alert: 'Runner was not updated.'
      end
    end

    def pause
      if @runner.update_attributes(active: false)
        redirect_to ci_project_runners_path(@project, @runner), notice: 'Runner was successfully updated.'
      else
        redirect_to ci_project_runners_path(@project, @runner), alert: 'Runner was not updated.'
      end
    end

    def show
    end

    protected

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

    def set_runner
      @runner ||= @project.runners.find(params[:id])
    end

    def runner_params
      params.require(:runner).permit(:description, :tag_list, :contacted_at, :active)
    end
  end
end