summaryrefslogtreecommitdiff
path: root/app/controllers/ci/runner_projects_controller.rb
blob: a8bdd5bb36252dfa7efd9bad4b6ac1f301d70163 (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
module Ci
  class RunnerProjectsController < Ci::ApplicationController
    before_action :authenticate_user!
    before_action :project
    before_action :authorize_manage_project!

    layout 'ci/project'

    def create
      @runner = Ci::Runner.find(params[:runner_project][:runner_id])

      return head(403) unless current_user.ci_authorized_runners.include?(@runner)

      if @runner.assign_to(project, current_user)
        redirect_to ci_project_runners_path(project)
      else
        redirect_to ci_project_runners_path(project), alert: 'Failed adding runner to project'
      end
    end

    def destroy
      runner_project = project.runner_projects.find(params[:id])
      runner_project.destroy

      redirect_to ci_project_runners_path(project)
    end

    private

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