Class: Fog::DNS::Rackspace::Zones
- Inherits:
-
Collection
- Object
- Array
- Collection
- Fog::DNS::Rackspace::Zones
- Defined in:
- lib/fog/rackspace/models/dns/zones.rb
Instance Attribute Summary
Attributes inherited from Collection
Instance Method Summary collapse
-
#all(options = {}) ⇒ Object
List all domains.
- #each ⇒ Object
- #each_zone_this_page ⇒ Object
- #get(zone_id) ⇒ Object
Methods inherited from Collection
#clear, #create, #destroy, #initialize, #inspect, #load, model, #model, #new, #reload, #table, #to_json
Methods included from Attributes::ClassMethods
#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes
Methods included from Core::DeprecatedConnectionAccessors
#connection, #connection=, #prepare_service_value
Methods included from Attributes::InstanceMethods
#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #persisted?, #requires, #requires_one
Constructor Details
This class inherits a constructor from Fog::Collection
Instance Method Details
#all(options = {}) ⇒ Object
List all domains. Return by default a maximum of 100 items
16 17 18 19 20 |
# File 'lib/fog/rackspace/models/dns/zones.rb', line 16 def all(={}) clear data = service.list_domains().body['domains'] load(data) end |
#each ⇒ Object
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/fog/rackspace/models/dns/zones.rb', line 23 def each if !block_given? self else body = service.list_domains.body subset = dup.all subset.each_zone_this_page {|f| yield f} if body.has_key?('links') while !body['links'].select{|l| l['rel'] == 'next'}.empty? url = body['links'].select{|l| l['rel'] == 'next'}.first['href'] query = url.match(/\?(.+)/) parsed = CGI.parse($1) body = service.list_domains(:offset => parsed['offset'], :limit => parsed['limit']).body subset = dup.all(:offset => parsed['offset'], :limit => parsed['limit']) subset.each_zone_this_page {|f| yield f} end end self end end |
#each_zone_this_page ⇒ Object
22 |
# File 'lib/fog/rackspace/models/dns/zones.rb', line 22 alias :each_zone_this_page :each |
#get(zone_id) ⇒ Object
46 47 48 49 50 51 52 53 54 55 56 57 58 |
# File 'lib/fog/rackspace/models/dns/zones.rb', line 46 def get(zone_id) if zone_id.nil? or zone_id.to_s.empty? return nil end data = service.list_domain_details(zone_id).body new(data) rescue Fog::DNS::Rackspace::NotFound nil #Accessing a valid (but other customer's) id returns a 503 error rescue Fog::Rackspace::Errors::ServiceUnavailable nil end |