mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-11 02:49:35 -06:00
Some checks failed
CodeQL / Analyze (${{ matrix.language }}) (none, python) (push) Waiting to run
CodeQL / Analyze (${{ matrix.language }}) (none, actions) (push) Waiting to run
CodeQL / Analyze (${{ matrix.language }}) (none, javascript-typescript) (push) Waiting to run
CI / build (20.x, 3.10) (push) Has been cancelled
CI / build (20.x, 3.11) (push) Has been cancelled
CI / build (20.x, 3.12) (push) Has been cancelled
* Closes #19977: Denormalize site, location, and rack for device components * Set blank=True on denormalized ForeignKeys * Populate denormalized field in test data * Ignore private fields when constructing test GraphQL requests
173 lines
6.0 KiB
Python
173 lines
6.0 KiB
Python
import logging
|
|
|
|
from django.db.models.signals import post_save, post_delete, pre_delete
|
|
from django.dispatch import receiver
|
|
|
|
from dcim.choices import CableEndChoices, LinkStatusChoices
|
|
from .models import (
|
|
Cable, CablePath, CableTermination, ConsolePort, ConsoleServerPort, Device, DeviceBay, FrontPort, Interface,
|
|
InventoryItem, ModuleBay, PathEndpoint, PowerOutlet, PowerPanel, PowerPort, Rack, RearPort, Location,
|
|
VirtualChassis,
|
|
)
|
|
from .models.cables import trace_paths
|
|
from .utils import create_cablepath, rebuild_paths
|
|
|
|
COMPONENT_MODELS = (
|
|
ConsolePort,
|
|
ConsoleServerPort,
|
|
DeviceBay,
|
|
FrontPort,
|
|
Interface,
|
|
InventoryItem,
|
|
ModuleBay,
|
|
PowerOutlet,
|
|
PowerPort,
|
|
RearPort,
|
|
)
|
|
|
|
|
|
#
|
|
# Location/rack/device assignment
|
|
#
|
|
|
|
@receiver(post_save, sender=Location)
|
|
def handle_location_site_change(instance, created, **kwargs):
|
|
"""
|
|
Update child objects if Site assignment has changed. We intentionally recurse through each child
|
|
object instead of calling update() on the QuerySet to ensure the proper change records get created for each.
|
|
"""
|
|
if not created:
|
|
instance.get_descendants().update(site=instance.site)
|
|
locations = instance.get_descendants(include_self=True).values_list('pk', flat=True)
|
|
Rack.objects.filter(location__in=locations).update(site=instance.site)
|
|
Device.objects.filter(location__in=locations).update(site=instance.site)
|
|
PowerPanel.objects.filter(location__in=locations).update(site=instance.site)
|
|
CableTermination.objects.filter(_location__in=locations).update(_site=instance.site)
|
|
|
|
|
|
@receiver(post_save, sender=Rack)
|
|
def handle_rack_site_change(instance, created, **kwargs):
|
|
"""
|
|
Update child Devices if Site or Location assignment has changed.
|
|
"""
|
|
if not created:
|
|
Device.objects.filter(rack=instance).update(site=instance.site, location=instance.location)
|
|
|
|
|
|
@receiver(post_save, sender=Device)
|
|
def handle_device_site_change(instance, created, **kwargs):
|
|
"""
|
|
Update child components to update the parent Site, Location, and Rack when a Device is saved.
|
|
"""
|
|
if not created:
|
|
for model in COMPONENT_MODELS:
|
|
model.objects.filter(device=instance).update(
|
|
_site=instance.site,
|
|
_location=instance.location,
|
|
_rack=instance.rack,
|
|
)
|
|
|
|
|
|
#
|
|
# Virtual chassis
|
|
#
|
|
|
|
@receiver(post_save, sender=VirtualChassis)
|
|
def assign_virtualchassis_master(instance, created, **kwargs):
|
|
"""
|
|
When a VirtualChassis is created, automatically assign its master device (if any) to the VC.
|
|
"""
|
|
if created and instance.master:
|
|
master = Device.objects.get(pk=instance.master.pk)
|
|
master.virtual_chassis = instance
|
|
master.vc_position = 1
|
|
master.save()
|
|
|
|
|
|
@receiver(pre_delete, sender=VirtualChassis)
|
|
def clear_virtualchassis_members(instance, **kwargs):
|
|
"""
|
|
When a VirtualChassis is deleted, nullify the vc_position and vc_priority fields of its prior members.
|
|
"""
|
|
devices = Device.objects.filter(virtual_chassis=instance.pk)
|
|
for device in devices:
|
|
device.vc_position = None
|
|
device.vc_priority = None
|
|
device.save()
|
|
|
|
|
|
#
|
|
# Cables
|
|
#
|
|
|
|
@receiver(trace_paths, sender=Cable)
|
|
def update_connected_endpoints(instance, created, raw=False, **kwargs):
|
|
"""
|
|
When a Cable is saved with new terminations, retrace any affected cable paths.
|
|
"""
|
|
logger = logging.getLogger('netbox.dcim.cable')
|
|
if raw:
|
|
logger.debug(f"Skipping endpoint updates for imported cable {instance}")
|
|
return
|
|
|
|
# Update cable paths if new terminations have been set
|
|
if instance._terminations_modified:
|
|
a_terminations = []
|
|
b_terminations = []
|
|
# Note: instance.terminations.all() is not safe to use here as it might be stale
|
|
for t in CableTermination.objects.filter(cable=instance):
|
|
if t.cable_end == CableEndChoices.SIDE_A:
|
|
a_terminations.append(t.termination)
|
|
else:
|
|
b_terminations.append(t.termination)
|
|
for nodes in [a_terminations, b_terminations]:
|
|
# Examine type of first termination to determine object type (all must be the same)
|
|
if not nodes:
|
|
continue
|
|
if isinstance(nodes[0], PathEndpoint):
|
|
create_cablepath(nodes)
|
|
else:
|
|
rebuild_paths(nodes)
|
|
|
|
# Update status of CablePaths if Cable status has been changed
|
|
elif instance.status != instance._orig_status:
|
|
if instance.status != LinkStatusChoices.STATUS_CONNECTED:
|
|
CablePath.objects.filter(_nodes__contains=instance).update(is_active=False)
|
|
else:
|
|
rebuild_paths([instance])
|
|
|
|
|
|
@receiver(post_delete, sender=Cable)
|
|
def retrace_cable_paths(instance, **kwargs):
|
|
"""
|
|
When a Cable is deleted, check for and update its connected endpoints
|
|
"""
|
|
for cablepath in CablePath.objects.filter(_nodes__contains=instance):
|
|
cablepath.retrace()
|
|
|
|
|
|
@receiver(post_delete, sender=CableTermination)
|
|
def nullify_connected_endpoints(instance, **kwargs):
|
|
"""
|
|
Disassociate the Cable from the termination object, and retrace any affected CablePaths.
|
|
"""
|
|
model = instance.termination_type.model_class()
|
|
model.objects.filter(pk=instance.termination_id).update(cable=None, cable_end='')
|
|
|
|
for cablepath in CablePath.objects.filter(_nodes__contains=instance.cable):
|
|
# Remove the deleted CableTermination if it's one of the path's originating nodes
|
|
if instance.termination in cablepath.origins:
|
|
cablepath.origins.remove(instance.termination)
|
|
cablepath.retrace()
|
|
|
|
|
|
@receiver(post_save, sender=FrontPort)
|
|
def extend_rearport_cable_paths(instance, created, raw, **kwargs):
|
|
"""
|
|
When a new FrontPort is created, add it to any CablePaths which end at its corresponding RearPort.
|
|
"""
|
|
if created and not raw:
|
|
rearport = instance.rear_port
|
|
for cablepath in CablePath.objects.filter(_nodes__contains=rearport):
|
|
cablepath.retrace()
|