Class: Virility::Strategy
- Inherits:
-
Object
- Object
- Virility::Strategy
- Includes:
- HTTParty, Supporter
- Defined in:
- lib/virility/strategy.rb
Instance Attribute Summary collapse
-
#response ⇒ Object
Returns the value of attribute response.
-
#results ⇒ Object
Returns the value of attribute results.
-
#url ⇒ Object
Returns the value of attribute url.
Instance Method Summary collapse
-
#call_strategy ⇒ Object
Call Strategy.
-
#census ⇒ Object
Abstract Methods - Delete eventually.
-
#collect_results ⇒ Object
Results.
- #count ⇒ Object
-
#get_result(key) ⇒ Object
Dynamic Methods.
-
#initialize(url) ⇒ Strategy
constructor
A new instance of Strategy.
- #method_missing(name, *args, &block) ⇒ Object
-
#poll ⇒ Object
Poll.
- #result_exists?(key) ⇒ Boolean
-
#valid_response_test ⇒ Object
Parsed Response Test - Overwrite if needed.
Methods included from Supporter
#camelize, #encode, #escaped_url, #get_class_string, #symbolize_for_key, #underscore
Constructor Details
#initialize(url) ⇒ Strategy
Returns a new instance of Strategy.
8 9 10 11 |
# File 'lib/virility/strategy.rb', line 8 def initialize url @url = encode url @results = {} end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(name, *args, &block) ⇒ Object
81 82 83 84 85 86 87 |
# File 'lib/virility/strategy.rb', line 81 def method_missing(name, *args, &block) if result_exists?(name) get_result(name) else 0 end end |
Instance Attribute Details
#response ⇒ Object
Returns the value of attribute response.
6 7 8 |
# File 'lib/virility/strategy.rb', line 6 def response @response end |
#results ⇒ Object
Returns the value of attribute results.
6 7 8 |
# File 'lib/virility/strategy.rb', line 6 def results @results end |
#url ⇒ Object
Returns the value of attribute url.
6 7 8 |
# File 'lib/virility/strategy.rb', line 6 def url @url end |
Instance Method Details
#call_strategy ⇒ Object
Call Strategy
38 39 40 |
# File 'lib/virility/strategy.rb', line 38 def call_strategy @response = census end |
#census ⇒ Object
Abstract Methods - Delete eventually
17 18 19 |
# File 'lib/virility/strategy.rb', line 17 def census raise "Abstract Method census called on #{self.class} - Please define this method" end |
#collect_results ⇒ Object
Results
46 47 48 49 50 51 52 |
# File 'lib/virility/strategy.rb', line 46 def collect_results if respond_to?(:outcome) @results = valid_response_test ? outcome : {} else @results = valid_response_test ? @response.parsed_response : {} end end |
#count ⇒ Object
21 22 23 |
# File 'lib/virility/strategy.rb', line 21 def count raise "Abstract Method count called on #{self.class} - Please define this method" end |
#get_result(key) ⇒ Object
Dynamic Methods
69 70 71 72 73 74 75 |
# File 'lib/virility/strategy.rb', line 69 def get_result key if result_exists?(key) results[key.to_s] else 0 end end |
#poll ⇒ Object
Poll
29 30 31 32 |
# File 'lib/virility/strategy.rb', line 29 def poll call_strategy collect_results end |
#result_exists?(key) ⇒ Boolean
77 78 79 |
# File 'lib/virility/strategy.rb', line 77 def result_exists? key !results[key.to_s].nil? end |
#valid_response_test ⇒ Object
Parsed Response Test - Overwrite if needed
93 94 95 |
# File 'lib/virility/strategy.rb', line 93 def valid_response_test @response.respond_to?(:parsed_response) and @response.parsed_response.is_a?(Hash) end |