From f1b3b660ff485b09a1bd453e23e081d3122a05ea Mon Sep 17 00:00:00 2001 From: moanos Date: Sat, 11 Jan 2025 14:19:02 +0100 Subject: [PATCH] feat: Add notification for unchecked ANs --- src/fellchensammlung/tasks.py | 2 ++ src/fellchensammlung/tools/notifications.py | 11 +++++++++++ src/fellchensammlung/views.py | 10 ++++++---- 3 files changed, 19 insertions(+), 4 deletions(-) create mode 100644 src/fellchensammlung/tools/notifications.py diff --git a/src/fellchensammlung/tasks.py b/src/fellchensammlung/tasks.py index d40e8ef..8d1eb9f 100644 --- a/src/fellchensammlung/tasks.py +++ b/src/fellchensammlung/tasks.py @@ -7,6 +7,7 @@ from .mail import send_notification_email from .tools.admin import clean_locations, deactivate_unchecked_adoption_notices, deactivate_404_adoption_notices from .tools.misc import healthcheck_ok from .models import Location, AdoptionNotice, Timestamp +from .tools.notifications import notify_moderators_of_AN_to_be_checked from .tools.search import notify_search_subscribers @@ -45,6 +46,7 @@ def post_adoption_notice_save(pk): logging.info(f"Location was added to Adoption notice {pk}") notify_search_subscribers(instance, only_if_active=True) + notify_moderators_of_AN_to_be_checked(instance) @celery_app.task(name="tools.healthcheck") def task_healthcheck(): diff --git a/src/fellchensammlung/tools/notifications.py b/src/fellchensammlung/tools/notifications.py new file mode 100644 index 0000000..fa26666 --- /dev/null +++ b/src/fellchensammlung/tools/notifications.py @@ -0,0 +1,11 @@ +from fellchensammlung.models import User, AdoptionNoticeNotification, TrustLevel + + +def notify_moderators_of_AN_to_be_checked(adoption_notice): + if adoption_notice.is_disabled_unchecked: + for moderator in User.objects.filter(trust_level__gt=TrustLevel.MODERATOR): + AdoptionNoticeNotification.objects.create(adoption_notice=adoption_notice, + user=moderator, + title=f" Prüfe Vermittlung {adoption_notice}", + text=f"{adoption_notice} muss geprüft werden bevor sie veröffentlicht wird.", + ) \ No newline at end of file diff --git a/src/fellchensammlung/views.py b/src/fellchensammlung/views.py index 481057c..2f24821 100644 --- a/src/fellchensammlung/views.py +++ b/src/fellchensammlung/views.py @@ -17,7 +17,7 @@ from notfellchen import settings from fellchensammlung import logger from .models import AdoptionNotice, Text, Animal, Rule, Image, Report, ModerationAction, \ User, Location, AdoptionNoticeStatus, Subscriptions, CommentNotification, BaseNotification, RescueOrganization, \ - Species, Log, Timestamp, TrustLevel, SexChoicesWithAll, SearchSubscription + Species, Log, Timestamp, TrustLevel, SexChoicesWithAll, SearchSubscription, AdoptionNoticeNotification from .forms import AdoptionNoticeForm, AdoptionNoticeFormWithDateWidget, ImageForm, ReportAdoptionNoticeForm, \ CommentForm, ReportCommentForm, AnimalForm, \ AdoptionNoticeSearchForm, AnimalFormWithDateWidget, AdoptionNoticeFormWithDateWidgetAutoAnimal @@ -209,7 +209,7 @@ def search(request): "location": search.location, "search_radius": search.max_distance, "zoom_level": zoom_level_for_radius(search.max_distance), - "geocoding_api_url": settings.GEOCODING_API_URL,} + "geocoding_api_url": settings.GEOCODING_API_URL, } return render(request, 'fellchensammlung/search.html', context=context) @@ -242,7 +242,7 @@ def add_adoption_notice(request): Log.objects.create(user=request.user, action="add_adoption_notice", text=f"{request.user} hat Vermittlung {an_instance.pk} hinzugefügt") - """Spin up a task that adds the location""" + """Spin up a task that adds the location and notifies search subscribers""" post_adoption_notice_save.delay(an_instance.id) """Subscriptions""" @@ -445,7 +445,7 @@ def user_detail(request, user, token=None): context = {"user": user, "adoption_notices": AdoptionNotice.objects.filter(owner=user), "notifications": BaseNotification.objects.filter(user=user, read=False), - "search_subscriptions": SearchSubscription.objects.filter(owner=user),} + "search_subscriptions": SearchSubscription.objects.filter(owner=user), } if token is not None: context["token"] = token return render(request, 'fellchensammlung/details/detail-user.html', context=context) @@ -609,11 +609,13 @@ def external_site_warning(request): return render(request, 'fellchensammlung/external_site_warning.html', context=context) + def list_rescue_organizations(request): rescue_organizations = RescueOrganization.objects.all() context = {"rescue_organizations": rescue_organizations} return render(request, 'fellchensammlung/animal-shelters.html', context=context) + def detail_view_rescue_organization(request, rescue_organization_id): org = RescueOrganization.objects.get(pk=rescue_organization_id) return render(request, 'fellchensammlung/details/detail-rescue-organization.html',