-
Notifications
You must be signed in to change notification settings - Fork 13
Fixes #342: Error on update form if object has been deleted in main #348
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
arthanson
wants to merge
2
commits into
main
Choose a base branch
from
342-diff-main-2
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,11 +6,14 @@ | |
| from django.dispatch import receiver | ||
| from django.utils import timezone | ||
| from django.utils.translation import gettext_lazy as _ | ||
| from django.core.exceptions import ValidationError | ||
| from django.contrib.contenttypes.models import ContentType | ||
|
|
||
| from core.choices import ObjectChangeActionChoices | ||
| from core.models import ObjectChange, ObjectType | ||
| from extras.events import process_event_rules | ||
| from extras.models import EventRule | ||
| from netbox.signals import post_clean | ||
| from netbox_branching import signals | ||
| from utilities.exceptions import AbortRequest | ||
| from utilities.serialization import serialize_object | ||
|
|
@@ -25,9 +28,43 @@ | |
| 'handle_branch_event', | ||
| 'record_change_diff', | ||
| 'validate_branch_deletion', | ||
| 'validate_branching_operations', | ||
| ) | ||
|
|
||
|
|
||
| @receiver(post_clean) | ||
| def validate_branching_operations(sender, instance, **kwargs): | ||
| """ | ||
| Validate that branching operations are valid (e.g., not modifying deleted objects). | ||
| """ | ||
| branch = active_branch.get() | ||
|
|
||
| # Only validate if we're in a branch and this model supports branching | ||
| if branch is None: | ||
| return | ||
|
|
||
| # Check if this model supports branching | ||
| content_type = ContentType.objects.get_for_model(instance) | ||
| if 'branching' not in content_type.object_type.features: | ||
| return | ||
|
|
||
| # For updates and deletes, check if the object exists in main | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm probably missing it, but how are we accounting for deletes? |
||
| if hasattr(instance, 'pk') and instance.pk is not None: | ||
| model = instance.__class__ | ||
| with deactivate_branch(): | ||
| try: | ||
| # Try to get the object from main database | ||
| model.objects.get(pk=instance.pk) | ||
| except model.DoesNotExist: | ||
| raise ValidationError( | ||
| _("Cannot modify {model_name} '{object_name}' because it has been deleted in the main branch.") | ||
| .format( | ||
| model_name=model._meta.verbose_name, | ||
| object_name=str(instance) | ||
| ) | ||
| ) | ||
|
|
||
|
|
||
| @receiver(post_save, sender=ObjectChange) | ||
| def record_change_diff(instance, **kwargs): | ||
| """ | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any reason to not query on
ObjectTypedirectly here?