Sha256: 61f91dc576f3d8ebeb5f73ffcd5c9ca8b5ae939233a77042b89e9ef46967747b

Contents?: true

Size: 1.62 KB

Versions: 7

Compression:

Stored size: 1.62 KB

Contents

module Fog
  module Slicehost
    class DNS
      class Real

        require 'fog/dns/parsers/slicehost/create_zone'

        # Create a new zone for Slicehost's DNS servers to serve/host
        # ==== Parameters
        # * origin<~String> - domain name to host (ie example.com)
        # * options<~Hash> - optional paramaters
        #   * ttl<~Integer> - TimeToLive (ttl) for the domain, in seconds (> 60)
        #   * active<~String> - whether zone is active in Slicehost DNS server - 'Y' or 'N'
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Hash>:
        #     * 'origin'<~String> - as above
        #     * 'id'<~Integer> - Id of zone/domain - used in future API calls
        #     * 'ttl'<~Integer> - as above
        #     * 'active'<~String> - as above
        def create_zone(origin, options = {})

          optional_tags= ''
          options.each { |option, value|
            case option
            when :ttl
              optional_tags+= "<ttl type='interger'>#{value}</ttl>"
            when :active
              optional_tags+= "<active>#{value}</active>"
            end
          }
          
          request(
            :body     => %Q{<?xml version="1.0" encoding="UTF-8"?><zone><origin>#{origin}</origin>#{optional_tags}</zone>},
            :expects  => 201,
            :method   => 'POST',
            :parser   => Fog::Parsers::Slicehost::DNS::CreateZone.new,
            :path     => 'zones.xml'
          )
        end

      end

      class Mock

        def create_zone(origin, ttl, active)
          Fog::Mock.not_implemented
        end

      end
    end
  end
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
fog-0.5.1 lib/fog/dns/requests/slicehost/create_zone.rb
fog-0.5.0 lib/fog/dns/requests/slicehost/create_zone.rb
phpfog-fog-0.4.1.3 lib/fog/dns/requests/slicehost/create_zone.rb
phpfog-fog-0.4.1.2 lib/fog/dns/requests/slicehost/create_zone.rb
phpfog-fog-0.4.1.1 lib/fog/dns/requests/slicehost/create_zone.rb
phpfog-fog-0.4.1 lib/fog/dns/requests/slicehost/create_zone.rb
fog-0.4.1 lib/fog/dns/requests/slicehost/create_zone.rb