mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-11 10:59:36 -06:00
Some checks failed
CI / build (20.x, 3.12) (push) Has been cancelled
CI / build (20.x, 3.13) (push) Has been cancelled
CodeQL / Analyze (${{ matrix.language }}) (none, actions) (push) Has been cancelled
CodeQL / Analyze (${{ matrix.language }}) (none, javascript-typescript) (push) Has been cancelled
CodeQL / Analyze (${{ matrix.language }}) (none, python) (push) Has been cancelled
* Fixes #7604: Add filter modifier dropdowns for advanced lookup operators Implements dynamic filter modifier UI that allows users to select lookup operators (exact, contains, starts with, regex, negation, empty/not empty) directly in filter forms without manual URL parameter editing. Supports filters for all scalar types and strings, as well as some related object filters. Explicitly does not support filters on fields that use APIWidget. That has been broken out in to follow up work. **Backend:** - FilterModifierWidget: Wraps form widgets with lookup modifier dropdown - FilterModifierMixin: Auto-enhances filterset fields with appropriate lookups - Extended lookup support: Adds negation (n), regex, iregex, empty_true/false lookups - Field-type-aware: CharField gets text lookups, IntegerField gets comparison operators, etc. **Frontend:** - TypeScript handler syncs modifier dropdown with URL parameters - Dynamically updates form field names (serial → serial__ic) on modifier change - Flexible-width modifier dropdowns with semantic CSS classes * Remove extraneous TS comments * Fix import order * Fix CircuitFilterForm inheritance * Enable filter form modifiers on DCIM models * Enable filter form modifiers on Tenancy models * Enable filter form modifiers on Wireless models * Enable filter form modifiers on IPAM models * Enable filter form modifiers on VPN models * Enable filter form modifiers on Virtualization models * Enable filter form modifiers on Circuit models * Enable filter form modifiers on Users models * Enable filter form modifiers on Core models * Enable filter form modifiers on Extras models * Add ChoiceField support to FilterModifierMixin Enable filter modifiers for single-choice ChoiceFields in addition to the existing MultipleChoiceField support. ChoiceFields can now display modifier dropdowns with "Is", "Is Not", "Is Empty", and "Is Not Empty" options when the corresponding FilterSet defines those lookups. The mixin correctly verifies lookup availability against the FilterSet, so modifiers only appear when multiple lookup options are actually supported. Currently most FilterSets only define 'exact' for single-choice fields, but this change enables future FilterSet enhancements to expose additional lookups for ChoiceFields. * Address PR feedback: Replace global filterset mappings with registry * Address PR feedback: Move FilterModifierMixin into base filter form classes Incorporates FilterModifierMixin into NetBoxModelFilterSetForm and FilterForm, making filter modifiers automatic for all filter forms throughout the application. * Fix filter modifier form submission bug with 'action' field collision Forms with a field named "action" (e.g., ObjectChangeFilterForm) were causing the form.action property to be shadowed by the field element, resulting in [object HTMLSelectElement] appearing in the URL path. Use form.getAttribute('action') instead of form.action to reliably retrieve the form's action URL without collision from form fields. Fixes form submission on /core/changelog/ and any other forms with an 'action' field using filter modifiers. * Address PR feedback: Move FORM_FIELD_LOOKUPS to module-level constant Extracts the field type to lookup mappings from FilterModifierMixin class attribute to a module-level constant for better reusability. * Address PR feedback: Refactor and consolidate field filtering logic Consolidated field enhancement logic in FilterModifierMixin by: - Creating QueryField marker type (CharField subclass) for search fields - Updating FilterForm and NetBoxModelFilterSetForm to use QueryField for 'q' - Moving all skip logic into _get_lookup_choices() to return empty list for fields that shouldn't be enhanced - Removing separate _should_skip_field() method - Removing unused field_name parameter from _get_lookup_choices() - Replacing hardcoded field name check ('q') with type-based detection * Address PR feedback: Refactor applied_filters to use FORM_FIELD_LOOKUPS * Address PR feedback: Rename FilterModifierWidget parameter to widget * Fix registry pattern to use model identifiers as keys Changed filterset registration to use model identifiers ('{app_label}.{model_name}') as registry keys instead of form classes, matching NetBox's pattern for search indexes. * Address PR feedback: refactor brittle test for APISelect useage Now checks if widget is actually APISelect, rather than trying to infer from the class name. * Refactor register_filterset to be more generic and simple * Remove unneeded imports left from earlier registry work * Update app registry for new `filtersets` store * Remove unused star import, leftover from earlier work * Enables filter modifiers on APISelect based fields * Support filter modifiers for ChoiceField * Include MODIFIER_EMPTY_FALSE/_TRUE in __all__ Co-authored-by: Jeremy Stretch <jstretch@netboxlabs.com> * Fix filterset registration for doubly-registered models * Removed explicit checks against QueryField and [Null]BooleanField I did add them to FORM_FIELD_LOOKUPS, though, to underscore that they were considered and are intentially empty for future devs. * Switch to sentence case for filter pill text * Fix applied_filters template tag to use field-type-specific lookup labelsresolves E.g. resolves gt="after" for dates vs "greater than" for numbers * Verifies that filter pills for exact matches (no lookup Add test for exact lookup filter pill rendering * Add guard for FilterModifierWidget with no lookups * Remove comparison symbols from numeric filter labels * Match complete tags in widget rendering test assertions * Check all expected lookups in field enhancement tests * Move register_filterset to netbox.plugins.registration * Require registered filterset for filter modifier enhancements Updates FilterModifierMixin to only enhance form fields when the associated model has a registered filterset. This provides plugin safety by ensuring unregistered plugin filtersets fall back to simple filters without lookup modifiers. Test changes: - Create TestModel and TestFilterSet using BaseFilterSet for automatic lookup generation - Import dcim.filtersets to ensure Device filterset registration - Adjust tag field expectations to match actual Device filterset (has exact/n but not empty lookups) * Attempt to resolve static conflicts * Move register_filterset() back to utilities.filtersets * Add register_filterset() to plugins documentation for filtersets * Reorder import statements --------- Co-authored-by: Jeremy Stretch <jstretch@netboxlabs.com>
188 lines
5.1 KiB
Python
188 lines
5.1 KiB
Python
import re
|
|
|
|
from django import forms
|
|
from django.utils.translation import gettext as _
|
|
|
|
from netbox.models.features import ChangeLoggingMixin
|
|
from utilities.forms.fields import QueryField
|
|
from utilities.forms.mixins import BackgroundJobMixin, FilterModifierMixin
|
|
|
|
__all__ = (
|
|
'BulkDeleteForm',
|
|
'BulkEditForm',
|
|
'BulkRenameForm',
|
|
'ConfirmationForm',
|
|
'CSVModelForm',
|
|
'DeleteForm',
|
|
'FilterForm',
|
|
'TableConfigForm',
|
|
)
|
|
|
|
|
|
class ConfirmationForm(forms.Form):
|
|
"""
|
|
A generic confirmation form. The form is not valid unless the `confirm` field is checked.
|
|
"""
|
|
return_url = forms.CharField(
|
|
required=False,
|
|
widget=forms.HiddenInput()
|
|
)
|
|
confirm = forms.BooleanField(
|
|
required=True,
|
|
widget=forms.HiddenInput(),
|
|
initial=True
|
|
)
|
|
|
|
|
|
class DeleteForm(ConfirmationForm):
|
|
"""
|
|
Confirm the deletion of an object, optionally providing a changelog message.
|
|
"""
|
|
changelog_message = forms.CharField(
|
|
required=False,
|
|
max_length=200
|
|
)
|
|
|
|
def __init__(self, *args, instance=None, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
|
|
# Hide the changelog_message filed if the model doesn't support change logging
|
|
if instance is None or not issubclass(instance._meta.model, ChangeLoggingMixin):
|
|
self.fields.pop('changelog_message')
|
|
|
|
|
|
class BulkEditForm(BackgroundJobMixin, forms.Form):
|
|
"""
|
|
Provides bulk edit support for objects.
|
|
|
|
Attributes:
|
|
nullable_fields: A list of field names indicating which fields support being set to null/empty
|
|
"""
|
|
nullable_fields = ()
|
|
|
|
|
|
class BulkRenameForm(forms.Form):
|
|
"""
|
|
An extendable form to be used for renaming objects in bulk.
|
|
"""
|
|
find = forms.CharField(
|
|
strip=False
|
|
)
|
|
replace = forms.CharField(
|
|
strip=False,
|
|
required=False
|
|
)
|
|
use_regex = forms.BooleanField(
|
|
required=False,
|
|
initial=True,
|
|
label=_('Use regular expressions')
|
|
)
|
|
|
|
def clean(self):
|
|
super().clean()
|
|
|
|
# Validate regular expression in "find" field
|
|
if self.cleaned_data['use_regex']:
|
|
try:
|
|
re.compile(self.cleaned_data['find'])
|
|
except re.error:
|
|
raise forms.ValidationError({
|
|
'find': "Invalid regular expression"
|
|
})
|
|
|
|
|
|
class BulkDeleteForm(BackgroundJobMixin, ConfirmationForm):
|
|
pk = forms.ModelMultipleChoiceField(
|
|
queryset=None,
|
|
widget=forms.MultipleHiddenInput
|
|
)
|
|
changelog_message = forms.CharField(
|
|
required=False,
|
|
max_length=200
|
|
)
|
|
|
|
def __init__(self, model, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
|
|
self.fields['pk'].queryset = model.objects.all()
|
|
|
|
# Hide the changelog_message filed if the model doesn't support change logging
|
|
if model is None or not issubclass(model, ChangeLoggingMixin):
|
|
self.fields.pop('changelog_message')
|
|
|
|
|
|
class CSVModelForm(forms.ModelForm):
|
|
"""
|
|
ModelForm used for the import of objects in CSV format.
|
|
"""
|
|
id = forms.IntegerField(
|
|
label=_('ID'),
|
|
required=False,
|
|
help_text=_('Numeric ID of an existing object to update (if not creating a new object)')
|
|
)
|
|
|
|
def __init__(self, *args, headers=None, **kwargs):
|
|
self.headers = headers or {}
|
|
super().__init__(*args, **kwargs)
|
|
|
|
# Modify the model form to accommodate any customized to_field_name properties
|
|
for field, to_field in self.headers.items():
|
|
if to_field is not None:
|
|
self.fields[field].to_field_name = to_field
|
|
|
|
def clean(self):
|
|
# Flag any invalid CSV headers
|
|
for header in self.headers:
|
|
if header not in self.fields:
|
|
raise forms.ValidationError(
|
|
_("Unrecognized header: {name}").format(name=header)
|
|
)
|
|
|
|
return super().clean()
|
|
|
|
|
|
class FilterForm(FilterModifierMixin, forms.Form):
|
|
"""
|
|
Base Form class for FilterSet forms.
|
|
"""
|
|
q = QueryField(
|
|
required=False,
|
|
label=_('Search')
|
|
)
|
|
|
|
|
|
class TableConfigForm(forms.Form):
|
|
"""
|
|
Form for configuring user's table preferences.
|
|
"""
|
|
available_columns = forms.MultipleChoiceField(
|
|
choices=[],
|
|
required=False,
|
|
widget=forms.SelectMultiple(
|
|
attrs={'size': 10, 'class': 'form-select'}
|
|
),
|
|
label=_('Available Columns')
|
|
)
|
|
columns = forms.MultipleChoiceField(
|
|
choices=[],
|
|
required=False,
|
|
widget=forms.SelectMultiple(
|
|
attrs={'size': 10, 'class': 'form-select select-all'}
|
|
),
|
|
label=_('Selected Columns')
|
|
)
|
|
|
|
def __init__(self, table, *args, **kwargs):
|
|
self.table = table
|
|
|
|
super().__init__(*args, **kwargs)
|
|
|
|
# Initialize columns field based on table attributes
|
|
if table:
|
|
self.fields['available_columns'].choices = table.available_columns
|
|
self.fields['columns'].choices = table.selected_columns
|
|
|
|
@property
|
|
def table_name(self):
|
|
return self.table.__class__.__name__
|