Class: Flipper::UI::Actions::ActorsGate

Inherits:
Flipper::UI::Action show all
Defined in:
lib/flipper/ui/actions/actors_gate.rb

Constant Summary

Constants inherited from Flipper::UI::Action

Flipper::UI::Action::VALID_REQUEST_METHOD_NAMES

Instance Attribute Summary

Attributes inherited from Flipper::UI::Action

#flipper, #request

Instance Method Summary collapse

Methods inherited from Flipper::UI::Action

#breadcrumb, #csrf_input_tag, #halt, #header, #initialize, #json_response, public_path, #public_path, #redirect_to, regex, #request_method_name, route, #run, run, #run_other_action, #script_name, #status, #valid_request_method?, #view, #view_response, #view_with_layout, #view_without_layout, views_path, #views_path

Constructor Details

This class inherits a constructor from Flipper::UI::Action

Instance Method Details

#getObject



11
12
13
14
15
16
17
18
19
20
21
22
# File 'lib/flipper/ui/actions/actors_gate.rb', line 11

def get
  feature_name = Rack::Utils.unescape(request.path.split('/')[-2])
  feature = flipper[feature_name.to_sym]
  @feature = Decorators::Feature.new(feature)

  breadcrumb "Home", "/"
  breadcrumb "Features", "/features"
  breadcrumb @feature.key, "/features/#{@feature.key}"
  breadcrumb "Add Actor"

  view_response :add_actor
end

#postObject



24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# File 'lib/flipper/ui/actions/actors_gate.rb', line 24

def post
  feature_name = Rack::Utils.unescape(request.path.split('/')[-2])
  feature = flipper[feature_name.to_sym]
  value = params["value"]

  if Util.blank?(value)
    error = Rack::Utils.escape("#{value.inspect} is not a valid actor value.")
    redirect_to("/features/#{feature.key}/actors?error=#{error}")
  end

  actor = Flipper::UI::Actor.new(value)

  case params["operation"]
  when "enable"
    feature.enable_actor actor
  when "disable"
    feature.disable_actor actor
  end

  redirect_to("/features/#{feature.key}")
end