summaryrefslogtreecommitdiff
path: root/app/controllers/projects/variables_controller.rb
blob: dbd1e5060023bc85f68bfbb6fcfc666f02ceb29f (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
class Projects::VariablesController < Projects::ApplicationController
  before_action :variable, only: [:show, :update, :destroy]
  before_action :authorize_admin_build!

  layout 'project_settings'

  def index
    redirect_to namespace_project_settings_ci_cd_path(@project.namespace, @project)
  end

  def show
  end

  def update
    if @variable.update(project_params)
      redirect_to namespace_project_variables_path(project.namespace, project),
                  notice: 'Variable was successfully updated.'
    else
      render "show"
    end
  end

  def create
    new_variable = Ci::Variable.new(project_params)

    if new_variable.valid? && @project.variables << new_variable
      redirect_to namespace_project_settings_ci_cd_path(project.namespace, project),
                  notice: 'Variables were successfully updated.'
    else
      @variable = new_variable.present(current_user: current_user)
      render "show"
    end
  end

  def destroy
    variable.destroy

    redirect_to namespace_project_settings_ci_cd_path(project.namespace, project),
                status: 302,
                notice: 'Variable was successfully removed.'
  end

  private

  def project_params
    params.require(:variable).permit([:id, :key, :value, :protected, :_destroy])
  end

  def variable
    @variable ||= project.variables.find(params[:id]).present(current_user: current_user)
  end
end