Class: SparkApi::Models::IdxLink
- Defined in:
- lib/spark_api/models/idx_link.rb
Constant Summary collapse
- LINK_TYPES =
["QuickSearch", "SavedSearch", "MyListings", "Roster"]
Constants included from Paginate
Instance Attribute Summary
Attributes inherited from Base
Class Method Summary collapse
- .default(options = {}) ⇒ Object
-
.find(*arguments) ⇒ Object
TODO Work all below into common base class.
- .find_every(options) ⇒ Object
- .find_one(options) ⇒ Object
- .find_single(scope, options) ⇒ Object
- .first(*arguments) ⇒ Object
- .last(*arguments) ⇒ Object
Methods inherited from Base
#connection, connection, count, element_name, element_name=, get, #initialize, #load, #method_missing, #parse_id, #path, path, #persisted?, prefix, prefix=, #resource_uri, #respond_to?
Methods included from Paginate
#collect, #paginate, #per_page
Methods included from Dirty
#changed, #changed?, #changed_attributes, #changes, #dirty_attributes, #previous_changes
Constructor Details
This class inherits a constructor from SparkApi::Models::Base
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class SparkApi::Models::Base
Class Method Details
.default(options = {}) ⇒ Object
30 31 32 33 |
# File 'lib/spark_api/models/idx_link.rb', line 30 def self.default( = {}) response = connection.get("/#{self.element_name}/default", ).first response.nil? ? nil : new(response) end |
.find(*arguments) ⇒ Object
TODO Work all below into common base class
9 10 11 12 13 14 15 16 17 18 19 20 |
# File 'lib/spark_api/models/idx_link.rb', line 9 def self.find(*arguments) scope = arguments.slice!(0) = arguments.slice!(0) || {} case scope when :all then find_every() when :first then find_every().first when :last then find_every().last when :one then find_one() else find_single(scope, ) end end |
.find_every(options) ⇒ Object
37 38 39 |
# File 'lib/spark_api/models/idx_link.rb', line 37 def self.find_every() raise NotImplementedError # TODO end |
.find_one(options) ⇒ Object
41 42 43 |
# File 'lib/spark_api/models/idx_link.rb', line 41 def self.find_one() raise NotImplementedError # TODO end |
.find_single(scope, options) ⇒ Object
45 46 47 48 |
# File 'lib/spark_api/models/idx_link.rb', line 45 def self.find_single(scope, ) resp = SparkApi.client.get("/idxlinks/#{scope}", ) new(resp.first) end |
.first(*arguments) ⇒ Object
22 23 24 |
# File 'lib/spark_api/models/idx_link.rb', line 22 def self.first(*arguments) find(:first, *arguments) end |
.last(*arguments) ⇒ Object
26 27 28 |
# File 'lib/spark_api/models/idx_link.rb', line 26 def self.last(*arguments) find(:last, *arguments) end |