Sha256: c026adf005f3b33c42a81843adab270b087105959c6091fe1e586afbec7fe0ca

Contents?: true

Size: 1.83 KB

Versions: 5

Compression:

Stored size: 1.83 KB

Contents

module Fog
  module DNS
    class DNSimple
      class Real

        # Create a new host in the specified zone
        #
        # ==== Parameters
        # * domain<~String> - domain name or numeric ID
        # * name<~String>
        # * type<~String>
        # * content<~String>
        # * options<~Hash> - optional
        #   * priority<~Integer>
        #   * ttl<~Integer>
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Hash>:
        #     * 'record'<~Hash> The representation of the record.
        def create_record(domain, name, type, content, options = {})
          body = {
            "record" => {
              "name" => name,
              "record_type" => type,
              "content" => content
            }
          }

          body["record"].merge!(options)

          request(
            :body     => Fog::JSON.encode(body),
            :expects  => 201,
            :method   => 'POST',
            :path     => "/domains/#{domain}/records"
          )
        end

      end

      class Mock

        def create_record(domain, name, type, content, options = {})
          body = {
            "record" => {
              "id" => Fog::Mock.random_numbers(1).to_i,
              "domain_id" => domain,
              "name" => name,
              "content" => content,
              "ttl" => 3600,
              "prio" => nil,
              "record_type" => type,
              "system_record" => nil,
              "created_at" => Time.now.iso8601,
              "updated_at" => Time.now.iso8601,
            }.merge(options)
          }
          self.data[:records][domain] ||= []
          self.data[:records][domain] << body

          response = Excon::Response.new
          response.status = 201
          response.body = body
          response
        end

      end

    end
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
fog-1.22.0 lib/fog/dnsimple/requests/dns/create_record.rb
fog-1.21.0 lib/fog/dnsimple/requests/dns/create_record.rb
fog-maestrodev-1.20.0.20140305101839 lib/fog/dnsimple/requests/dns/create_record.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/dnsimple/requests/dns/create_record.rb
fog-1.20.0 lib/fog/dnsimple/requests/dns/create_record.rb