mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-07-23 14:59:36 +02:00
- Implemented unsharing functionality in CollectionViewSet, including removal of user-owned locations from collections. - Refactored ContentImageViewSet to support multiple content types and improved permission checks for image uploads. - Added user ownership checks in LocationViewSet for delete operations. - Enhanced collection management in the frontend to display both owned and shared collections separately. - Updated Immich integration to handle access control based on location visibility and user permissions. - Improved UI components to show creator information and manage collection links more effectively. - Added loading states and error handling in collection fetching logic.
26 lines
1.2 KiB
Python
26 lines
1.2 KiB
Python
from django.db.models.signals import m2m_changed
|
|
from django.dispatch import receiver
|
|
from adventures.models import Location
|
|
|
|
@receiver(m2m_changed, sender=Location.collections.through)
|
|
def update_adventure_publicity(sender, instance, action, **kwargs):
|
|
"""
|
|
Signal handler to update adventure publicity when collections are added/removed
|
|
This function checks if the adventure's collections contain any public collection.
|
|
"""
|
|
if not isinstance(instance, Location):
|
|
return
|
|
# Only process when collections are added or removed
|
|
if action in ('post_add', 'post_remove', 'post_clear'):
|
|
collections = instance.collections.all()
|
|
|
|
if collections.exists():
|
|
# If any collection is public, make the adventure public
|
|
has_public_collection = collections.filter(is_public=True).exists()
|
|
|
|
if has_public_collection and not instance.is_public:
|
|
instance.is_public = True
|
|
instance.save(update_fields=['is_public'])
|
|
elif not has_public_collection and instance.is_public:
|
|
instance.is_public = False
|
|
instance.save(update_fields=['is_public'])
|