2014-01-21 14:39:48 -05:00
|
|
|
require 'fog/core/collection'
|
|
|
|
require 'fog/rage4/models/dns/record'
|
|
|
|
|
|
|
|
module Fog
|
|
|
|
module DNS
|
|
|
|
class Rage4
|
|
|
|
class Records < Fog::Collection
|
|
|
|
attribute :zone
|
|
|
|
|
|
|
|
model Fog::DNS::Rage4::Record
|
|
|
|
|
|
|
|
def all
|
|
|
|
requires :zone
|
|
|
|
clear
|
2014-01-23 16:27:04 -05:00
|
|
|
data = service.list_records(zone.id).body
|
2014-01-21 14:39:48 -05:00
|
|
|
load(data)
|
|
|
|
end
|
|
|
|
|
|
|
|
def get(record_id)
|
|
|
|
requires :zone
|
2014-01-23 16:27:04 -05:00
|
|
|
data = service.list_records(zone.id).select {|record| record['id'] == record_id }
|
|
|
|
if !data.empty?
|
|
|
|
new(data.first)
|
|
|
|
else
|
2014-01-23 18:07:05 -05:00
|
|
|
nil
|
2014-01-23 16:27:04 -05:00
|
|
|
end
|
2014-01-21 14:39:48 -05:00
|
|
|
rescue Excon::Errors::NotFound
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
def new(attributes = {})
|
|
|
|
requires :zone
|
|
|
|
super({ :zone => zone }.merge!(attributes))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|