gitlab-ce/app/controllers/admin/runners_controller.rb

85 lines
1.8 KiB
Ruby

# frozen_string_literal: true
class Admin::RunnersController < Admin::ApplicationController
include RunnerSetupScripts
TAGS_LIMIT = 20
before_action :runner, only: [:show, :edit, :register, :update]
before_action only: [:new] do
push_frontend_feature_flag(:runner_create_wizard_admin, current_user)
end
feature_category :runner
urgency :low
def index; end
def show; end
def edit
assign_projects
end
def new; end
def register
render_404 unless runner.registration_available?
end
def update
if Ci::Runners::UpdateRunnerService.new(current_user, @runner).execute(runner_params).success?
respond_to do |format|
format.html { redirect_to edit_admin_runner_path(@runner) }
end
else
assign_projects
render 'show'
end
end
def tag_list
tags = Ci::TagsFinder.new(params: params).execute.limit(TAGS_LIMIT)
render json: Ci::TagSerializer.new.represent(tags)
end
def runner_setup_scripts
private_runner_setup_scripts
end
private
def runner
@runner ||= Ci::Runner.find(params[:id])
end
def runner_params
params.require(:runner).permit(permitted_attrs)
end
def permitted_attrs
if Gitlab.com?
Ci::Runner::FORM_EDITABLE + Ci::Runner::MINUTES_COST_FACTOR_FIELDS
else
Ci::Runner::FORM_EDITABLE
end
end
def assign_projects
@projects =
if params[:search].present?
::Project.search(params[:search], include_namespace: true)
else
Project.all
end
runner_projects_ids = runner.project_ids
@projects = @projects.id_not_in(runner_projects_ids) if runner_projects_ids.any?
@projects = @projects.inc_routes
@projects = @projects.page(params[:page]).per(30).without_count
end
end
Admin::RunnersController.prepend_mod