本文整理匯總了Python中notification.models.Notification.item方法的典型用法代碼示例。如果您正苦於以下問題:Python Notification.item方法的具體用法?Python Notification.item怎麽用?Python Notification.item使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類notification.models.Notification
的用法示例。
在下文中一共展示了Notification.item方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: queue_notification
# 需要導入模塊: from notification.models import Notification [as 別名]
# 或者: from notification.models.Notification import item [as 別名]
def queue_notification(sender_id, recipient_id, model_name, obj_id):
"""
Adds a notification for an agree, thanks, bookmark, or follow.
Increments the notification count in the cache.
sender_id: agree.giver_id, thank.giver_id, bookmark.user_id,
or backward.source_id
recipient_id: agree.review.user_id, thank.review.user_id,
0, or backward.destination_id
model_name: string of class name
obj_id: object.pk
"""
model = get_model(MODEL_APP_NAME[model_name], model_name)
try:
pg_notification = Notification(
sender=User.objects.get(pk=sender_id),
recipient=User.objects.get(pk=recipient_id),
notification_type=model_name
)
if model_name == "agree" or model_name == "thank":
obj = model.objects.get(pk=obj_id)
pg_notification.item = obj.review.item
if model_name == "thank":
pg_notification.note = obj.note
pg_notification.save()
if not cacheAPI._get_new_notifications_count(recipient_id):
cacheAPI._reset_new_notifications_count(recipient_id)
cacheAPI._increment_new_notifications_count(recipient_id)
cacheAPI._cache_notification_for_user(pg_notification)
announce_client.emit(
recipient_id,
'notification',
data={ 'new': 1 } # Currently un-used
)
except ObjectDoesNotExist:
pass