Source code for shuup.simple_supplier.notify_events

from time import time

from django.utils.translation import gettext_lazy as _

from shuup.core import cache
from shuup.notify.base import Event, Variable
from shuup.notify.typology import Boolean, Email, Model


[docs] class AlertLimitReached(Event): cache_key_fmt = "stock_alert_%s_%s" identifier = "alert_limit_reached" name = _("Alert Limit Reached") supplier = Variable(_("Supplier"), type=Model("shuup.Supplier")) product = Variable(_("Product"), type=Model("shuup.Product")) supplier_email = Variable(_("Supplier Email"), type=Email, required=False) shop_email = Variable(_("Shop Email"), type=Email, required=False) dispatched_last_24hs = Variable( _("Fired in the last 24 hours?"), type=Boolean, help_text=_( "This will be True if this event was already dispatched " "in the last 24 hours for the same product and supplier. " "This is useful to prevent sending identical notifications in a short " "period of time." ), )
[docs] def __init__(self, **variable_values): cache_key = self.cache_key_fmt % ( variable_values["supplier"].pk, variable_values["product"].pk, ) last_dispatch_time = cache.get(cache_key) if last_dispatch_time: last_dispatch = int((time() - last_dispatch_time) / 60 / 60) variable_values["dispatched_last_24hs"] = last_dispatch < 24 else: variable_values["dispatched_last_24hs"] = False super().__init__(**variable_values)
[docs] def run(self, shop): cache_key = self.cache_key_fmt % ( self.variable_values["supplier"].pk, self.variable_values["product"].pk, ) # do not run this if the last dispatch was < 1 minute last_dispatch_time = cache.get(cache_key) if last_dispatch_time and time() - last_dispatch_time < 60: return cache.set(cache_key, time(), timeout=(60 * 60 * 24)) super().run(shop=shop)