class Proxy::DHCP::Infoblox::HostIpv4AddressCRUD

Attributes

dns_view[R]

Public Class Methods

new(connection, dns_view) click to toggle source
Calls superclass method Proxy::DHCP::Infoblox::CommonCRUD.new
# File lib/smart_proxy_dhcp_infoblox/host_ipv4_address_crud.rb, line 8
def initialize(connection, dns_view)
  @memoized_hosts = []
  @memoized_condition = nil
  @dns_view = dns_view
  super(connection)
end

Public Instance Methods

all_hosts(subnet_address) click to toggle source
# File lib/smart_proxy_dhcp_infoblox/host_ipv4_address_crud.rb, line 15
def all_hosts(subnet_address)
  address_range_regex = NetworkAddressesRegularExpressionGenerator.new.generate_regex(subnet_address)

  hosts = ::Infoblox::Host.find(
    @connection,
      'ipv4addr~' => address_range_regex,
      'view' => dns_view,
      '_max_results' => 2147483646)

  ip_addr_matcher = Regexp.new(address_range_regex) # pre-compile the regex
  hosts.map { |host| build_reservation(host.name, host.ipv4addrs.find { |ip| ip_addr_matcher =~ ip.ipv4addr }, subnet_address) }.compact
end
build_host(options) click to toggle source
# File lib/smart_proxy_dhcp_infoblox/host_ipv4_address_crud.rb, line 59
def build_host(options)
  host = ::Infoblox::Host.new(:connection => @connection)
  host.name = options[:hostname]
  host_addr = host.add_ipv4addr(options[:ip]).last
  host_addr.mac = options[:mac]
  host_addr.configure_for_dhcp = true
  host_addr.nextserver = options[:nextServer]
  host_addr.use_nextserver = true
  host_addr.bootfile = options[:filename]
  host_addr.use_bootfile = true
  host.view = dns_view
  host
end
find_host_and_name_by_ip(ip_address) click to toggle source
# File lib/smart_proxy_dhcp_infoblox/host_ipv4_address_crud.rb, line 47
def find_host_and_name_by_ip(ip_address)
  h = find_hosts('ipv4addr' => ip_address).first
  h.nil? ? [nil, nil] : [h.name, h.ipv4addrs.find { |ip| ip.ipv4addr == ip_address }]
end
find_hosts(condition, max_results = 1) click to toggle source
# File lib/smart_proxy_dhcp_infoblox/host_ipv4_address_crud.rb, line 52
def find_hosts(condition, max_results = 1)
  return @memoized_hosts if (!@memoized_hosts.empty? && @memoized_condition == condition)
  @memoized_condition = condition
  @memoized_hosts = ::Infoblox::Host.find(@connection, condition.merge('view' => dns_view,
                                                                       '_max_results' => max_results))
end
find_record_by_ip(subnet_address, ip_address) click to toggle source
# File lib/smart_proxy_dhcp_infoblox/host_ipv4_address_crud.rb, line 28
def find_record_by_ip(subnet_address, ip_address)
  found = find_hosts('ipv4addr' => ip_address).first
  return nil if found.nil?
  build_reservation(found.name, found.ipv4addrs.find { |ip| ip.ipv4addr == ip_address }, subnet_address)
end
find_record_by_mac(subnet_address, mac_address) click to toggle source
# File lib/smart_proxy_dhcp_infoblox/host_ipv4_address_crud.rb, line 41
def find_record_by_mac(subnet_address, mac_address)
  found = find_hosts('mac' => mac_address).first
  return nil if found.nil?
  build_reservation(found.name, found.ipv4addrs.find { |ip| ip.mac == mac_address }, subnet_address)
end
find_records_by_ip(subnet_address, ip_address) click to toggle source
# File lib/smart_proxy_dhcp_infoblox/host_ipv4_address_crud.rb, line 34
def find_records_by_ip(subnet_address, ip_address)
  found = find_hosts({ 'ipv4addr' => ip_address }, 2147483646)
  return [] if found.empty?
  to_return = found.map { |record| build_reservation(record.name, record.ipv4addrs.find { |ip| ip.ipv4addr == ip_address }, subnet_address) }
  to_return.compact
end