feat: Add notification for unchecked ANs
This commit is contained in:
parent
26cb60c1c8
commit
f1b3b660ff
@ -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.admin import clean_locations, deactivate_unchecked_adoption_notices, deactivate_404_adoption_notices
|
||||||
from .tools.misc import healthcheck_ok
|
from .tools.misc import healthcheck_ok
|
||||||
from .models import Location, AdoptionNotice, Timestamp
|
from .models import Location, AdoptionNotice, Timestamp
|
||||||
|
from .tools.notifications import notify_moderators_of_AN_to_be_checked
|
||||||
from .tools.search import notify_search_subscribers
|
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}")
|
logging.info(f"Location was added to Adoption notice {pk}")
|
||||||
|
|
||||||
notify_search_subscribers(instance, only_if_active=True)
|
notify_search_subscribers(instance, only_if_active=True)
|
||||||
|
notify_moderators_of_AN_to_be_checked(instance)
|
||||||
|
|
||||||
@celery_app.task(name="tools.healthcheck")
|
@celery_app.task(name="tools.healthcheck")
|
||||||
def task_healthcheck():
|
def task_healthcheck():
|
||||||
|
11
src/fellchensammlung/tools/notifications.py
Normal file
11
src/fellchensammlung/tools/notifications.py
Normal file
@ -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.",
|
||||||
|
)
|
@ -17,7 +17,7 @@ from notfellchen import settings
|
|||||||
from fellchensammlung import logger
|
from fellchensammlung import logger
|
||||||
from .models import AdoptionNotice, Text, Animal, Rule, Image, Report, ModerationAction, \
|
from .models import AdoptionNotice, Text, Animal, Rule, Image, Report, ModerationAction, \
|
||||||
User, Location, AdoptionNoticeStatus, Subscriptions, CommentNotification, BaseNotification, RescueOrganization, \
|
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, \
|
from .forms import AdoptionNoticeForm, AdoptionNoticeFormWithDateWidget, ImageForm, ReportAdoptionNoticeForm, \
|
||||||
CommentForm, ReportCommentForm, AnimalForm, \
|
CommentForm, ReportCommentForm, AnimalForm, \
|
||||||
AdoptionNoticeSearchForm, AnimalFormWithDateWidget, AdoptionNoticeFormWithDateWidgetAutoAnimal
|
AdoptionNoticeSearchForm, AnimalFormWithDateWidget, AdoptionNoticeFormWithDateWidgetAutoAnimal
|
||||||
@ -242,7 +242,7 @@ def add_adoption_notice(request):
|
|||||||
Log.objects.create(user=request.user, action="add_adoption_notice",
|
Log.objects.create(user=request.user, action="add_adoption_notice",
|
||||||
text=f"{request.user} hat Vermittlung {an_instance.pk} hinzugefügt")
|
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)
|
post_adoption_notice_save.delay(an_instance.id)
|
||||||
|
|
||||||
"""Subscriptions"""
|
"""Subscriptions"""
|
||||||
@ -609,11 +609,13 @@ def external_site_warning(request):
|
|||||||
|
|
||||||
return render(request, 'fellchensammlung/external_site_warning.html', context=context)
|
return render(request, 'fellchensammlung/external_site_warning.html', context=context)
|
||||||
|
|
||||||
|
|
||||||
def list_rescue_organizations(request):
|
def list_rescue_organizations(request):
|
||||||
rescue_organizations = RescueOrganization.objects.all()
|
rescue_organizations = RescueOrganization.objects.all()
|
||||||
context = {"rescue_organizations": rescue_organizations}
|
context = {"rescue_organizations": rescue_organizations}
|
||||||
return render(request, 'fellchensammlung/animal-shelters.html', context=context)
|
return render(request, 'fellchensammlung/animal-shelters.html', context=context)
|
||||||
|
|
||||||
|
|
||||||
def detail_view_rescue_organization(request, rescue_organization_id):
|
def detail_view_rescue_organization(request, rescue_organization_id):
|
||||||
org = RescueOrganization.objects.get(pk=rescue_organization_id)
|
org = RescueOrganization.objects.get(pk=rescue_organization_id)
|
||||||
return render(request, 'fellchensammlung/details/detail-rescue-organization.html',
|
return render(request, 'fellchensammlung/details/detail-rescue-organization.html',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user