1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Initial work on #289

This commit is contained in:
Jeremy Stretch
2016-08-02 17:20:12 -04:00
parent bc9158a74f
commit 57373c9d6f
2 changed files with 48 additions and 2 deletions

View File

@ -39,6 +39,16 @@ PREFIX_LINK_BRIEF = """
</span>
"""
IPADDRESS_LINK = """
{% if record.pk %}
<a href="{{ record.get_absolute_url }}">{{ record.address }}</a>
{% elif perms.ipam.add_ipaddress %}
<a href="{% url 'ipam:ipaddress_add' %}?address={{ record.1 }}" class="btn btn-xs btn-success">{{ record.0 }} free IP{{ record.0|pluralize }}</a>
{% else %}
{{ record.0 }}
{% endif %}
"""
STATUS_LABEL = """
{% if record.pk %}
<span class="label label-{{ record.get_status_class }}">{{ record.get_status_display }}</span>
@ -169,7 +179,7 @@ class PrefixBriefTable(BaseTable):
class IPAddressTable(BaseTable):
pk = ToggleColumn()
address = tables.LinkColumn('ipam:ipaddress', args=[Accessor('pk')], verbose_name='IP Address')
address = tables.TemplateColumn(IPADDRESS_LINK, verbose_name='IP Address')
vrf = tables.LinkColumn('ipam:vrf', args=[Accessor('vrf.pk')], default='Global', verbose_name='VRF')
tenant = tables.TemplateColumn(TENANT_LINK, verbose_name='Tenant')
device = tables.LinkColumn('dcim:device', args=[Accessor('interface.device.pk')], orderable=False,

View File

@ -1,4 +1,4 @@
from netaddr import IPSet
from netaddr import IPNetwork, IPSet
from django_tables2 import RequestConfig
from django.contrib.auth.mixins import PermissionRequiredMixin
@ -31,6 +31,41 @@ def add_available_prefixes(parent, prefix_list):
return prefix_list
def add_available_ipaddresses(prefix, ipaddress_list):
"""
Create fake IPAddress objects for all unallocated space within a prefix.
"""
# Find all unallocated space
available_ips = IPSet(prefix) - IPSet([str(ip.address.ip) for ip in ipaddress_list])
available_ips = [IPAddress(address=IPNetwork('{}/{}'.format(ip, prefix.prefixlen))) for ip in available_ips]
# Concatenate and sort complete list of children
ipaddress_list = list(ipaddress_list) + available_ips
ipaddress_list.sort(key=lambda ip: ip.address)
if not ipaddress_list:
return []
# Summarize free IPs in the list
computed_list = []
count = 0
prev_ip = ipaddress_list[0]
for ip in ipaddress_list:
if ip.pk:
if count:
computed_list.append((count, prev_ip))
count = 0
computed_list.append(ip)
continue
if not count:
prev_ip = ip
count += 1
if count:
computed_list.append((count, prev_ip))
return computed_list
#
# VRFs
#
@ -375,6 +410,7 @@ def prefix_ipaddresses(request, pk):
# Find all IPAddresses belonging to this Prefix
ipaddresses = IPAddress.objects.filter(vrf=prefix.vrf, address__net_contained_or_equal=str(prefix.prefix))\
.select_related('vrf', 'interface__device', 'primary_ip4_for', 'primary_ip6_for')
ipaddresses = add_available_ipaddresses(prefix.prefix, ipaddresses)
ip_table = tables.IPAddressTable(ipaddresses)
ip_table.model = IPAddress