Sha256: 44ac65676cb87f30874300ee8a1a88712e1a0c2c22a11d687400c340f301366e

Contents?: true

Size: 1.14 KB

Versions: 3

Compression:

Stored size: 1.14 KB

Contents

# frozen_string_literal: true

module Dyndnsd
  module Generator
    class Bind
      # @param domain [String]
      # @param updater_params [Hash{String => Object}]
      def initialize(domain, updater_params)
        @domain = domain
        @ttl = updater_params['ttl']
        @dns = updater_params['dns']
        @email_addr = updater_params['email_addr']
        @additional_zone_content = updater_params['additional_zone_content']
      end

      # @param db [Dyndnsd::Database]
      # @return [String]
      def generate(db)
        out = []
        out << "$TTL #{@ttl}"
        out << "$ORIGIN #{@domain}."
        out << ''
        out << "@ IN SOA #{@dns} #{@email_addr} ( #{db['serial']} 3h 5m 1w 1h )"
        out << "@ IN NS #{@dns}"
        out << ''
        db['hosts'].each do |hostname, ips|
          ips.each do |ip|
            ip = IPAddr.new(ip).native
            type = ip.ipv6? ? 'AAAA' : 'A'
            name = hostname.chomp('.' + @domain)
            out << "#{name} IN #{type} #{ip}"
          end
        end
        out << ''
        out << @additional_zone_content
        out << ''
        out.join("\n")
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
dyndnsd-3.0.0 lib/dyndnsd/generator/bind.rb
dyndnsd-2.3.1 lib/dyndnsd/generator/bind.rb
dyndnsd-2.3.0 lib/dyndnsd/generator/bind.rb