Class: Flipper::Api::Action
- Inherits:
-
Object
- Object
- Flipper::Api::Action
- Extended by:
- Forwardable
- Defined in:
- lib/flipper/api/action.rb
Direct Known Subclasses
V1::Actions::ActorsGate, V1::Actions::BooleanGate, V1::Actions::ClearFeature, V1::Actions::Feature, V1::Actions::Features, V1::Actions::GroupsGate, V1::Actions::PercentageOfActorsGate, V1::Actions::PercentageOfTimeGate
Constant Summary collapse
- VALID_REQUEST_METHOD_NAMES =
Set.new([ 'get'.freeze, 'post'.freeze, 'put'.freeze, 'delete'.freeze, ]).freeze
Instance Attribute Summary collapse
-
#flipper ⇒ Object
readonly
Public: The instance of the Flipper::DSL the middleware was initialized with.
-
#request ⇒ Object
readonly
Public: The Rack::Request to provide a response for.
Class Method Summary collapse
-
.regex ⇒ Object
Internal: The regex that matches which routes this action will work for.
-
.route(regex) ⇒ Object
Public: Call this in subclasses so the action knows its route.
-
.run(flipper, request) ⇒ Object
Internal: Initializes and runs an action for a given request.
Instance Method Summary collapse
-
#halt(response) ⇒ Object
Public: Call this with a response to immediately stop the current action and respond however you want.
-
#header(name, value) ⇒ Object
Public: Set a header.
-
#initialize(flipper, request) ⇒ Action
constructor
A new instance of Action.
-
#json_error_response(error_key) ⇒ Object
Public: Call this with an ErrorResponse::ERRORS key to respond with the serialized error object as response body.
-
#json_response(object, status = 200) ⇒ Object
Public: Call this with a json serializable object (i.e. Hash) to serialize object and respond to request.
-
#run ⇒ Object
Public: Runs the request method for the provided request.
-
#run_other_action(action_class) ⇒ Object
Public: Runs another action from within the request method of a different action.
-
#status(code) ⇒ Object
Public: Set the status code for the response.
Constructor Details
#initialize(flipper, request) ⇒ Action
Returns a new instance of Action.
52 53 54 55 56 57 |
# File 'lib/flipper/api/action.rb', line 52 def initialize(flipper, request) @flipper = flipper @request = request @code = 200 @headers = { 'Content-Type' => Api::CONTENT_TYPE } end |
Instance Attribute Details
#flipper ⇒ Object (readonly)
Public: The instance of the Flipper::DSL the middleware was initialized with.
44 45 46 |
# File 'lib/flipper/api/action.rb', line 44 def flipper @flipper end |
#request ⇒ Object (readonly)
Public: The Rack::Request to provide a response for.
47 48 49 |
# File 'lib/flipper/api/action.rb', line 47 def request @request end |
Class Method Details
.regex ⇒ Object
Internal: The regex that matches which routes this action will work for.
38 39 40 |
# File 'lib/flipper/api/action.rb', line 38 def self.regex @regex || raise("#{name}.route is not set") end |
.route(regex) ⇒ Object
Public: Call this in subclasses so the action knows its route.
regex - The Regexp that this action should run for.
Returns nothing.
23 24 25 |
# File 'lib/flipper/api/action.rb', line 23 def self.route(regex) @regex = regex end |
.run(flipper, request) ⇒ Object
Internal: Initializes and runs an action for a given request.
flipper - The Flipper::DSL instance. request - The Rack::Request that was sent.
Returns result of Action#run.
33 34 35 |
# File 'lib/flipper/api/action.rb', line 33 def self.run(flipper, request) new(flipper, request).run end |
Instance Method Details
#halt(response) ⇒ Object
Public: Call this with a response to immediately stop the current action and respond however you want.
response - The response you would like to return.
90 91 92 |
# File 'lib/flipper/api/action.rb', line 90 def halt(response) throw :halt, response end |
#header(name, value) ⇒ Object
Public: Set a header.
name - The String name of the header. value - The value of the header.
128 129 130 |
# File 'lib/flipper/api/action.rb', line 128 def header(name, value) @headers[name] = value end |
#json_error_response(error_key) ⇒ Object
Public: Call this with an ErrorResponse::ERRORS key to respond with the serialized error object as response body
error_key - key to lookup error object
112 113 114 115 |
# File 'lib/flipper/api/action.rb', line 112 def json_error_response(error_key) error = ErrorResponse::ERRORS.fetch(error_key.to_sym) json_response(error.as_json, error.http_status) end |
#json_response(object, status = 200) ⇒ Object
Public: Call this with a json serializable object (i.e. Hash) to serialize object and respond to request
object - json serializable object status - http status code
100 101 102 103 104 105 |
# File 'lib/flipper/api/action.rb', line 100 def json_response(object, status = 200) header 'Content-Type', Api::CONTENT_TYPE status(status) body = JSON.dump(object) halt [@code, @headers, [body]] end |
#run ⇒ Object
Public: Runs the request method for the provided request.
Returns whatever the request method returns in the action.
62 63 64 65 66 67 68 69 |
# File 'lib/flipper/api/action.rb', line 62 def run if valid_request_method? && respond_to?(request_method_name) catch(:halt) { send(request_method_name) } else raise Api::RequestMethodNotSupported, "#{self.class} does not support request method #{request_method_name.inspect}" end end |
#run_other_action(action_class) ⇒ Object
Public: Runs another action from within the request method of a different action.
action_class - The class of the other action to run.
Examples
run_other_action Home
# => result of running Home action
Returns result of other action.
82 83 84 |
# File 'lib/flipper/api/action.rb', line 82 def run_other_action(action_class) action_class.new(flipper, request).run end |
#status(code) ⇒ Object
Public: Set the status code for the response.
code - The Integer code you would like the response to return.
120 121 122 |
# File 'lib/flipper/api/action.rb', line 120 def status(code) @code = code.to_i end |