mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-04-20 13:11:00 +00:00
36 lines
1.4 KiB
Python
36 lines
1.4 KiB
Python
from django.forms import model_to_dict
|
|
|
|
from notifications.settings import notification_settings
|
|
|
|
|
|
def get_num_to_fetch(request):
|
|
default_num_to_fetch = notification_settings.NUM_TO_FETCH
|
|
try:
|
|
# If they don't specify, make it 5.
|
|
num_to_fetch = request.GET.get("max", default_num_to_fetch)
|
|
num_to_fetch = int(num_to_fetch)
|
|
if not 1 <= num_to_fetch <= 100:
|
|
num_to_fetch = default_num_to_fetch
|
|
except ValueError: # If casting to an int fails.
|
|
num_to_fetch = default_num_to_fetch
|
|
return num_to_fetch
|
|
|
|
|
|
def get_notification_list(request, method_name="all"):
|
|
num_to_fetch = get_num_to_fetch(request)
|
|
notification_list = []
|
|
for notification in getattr(request.user.notifications, method_name)()[0:num_to_fetch]:
|
|
struct = model_to_dict(notification)
|
|
struct["slug"] = notification.id
|
|
if notification.actor:
|
|
struct["actor"] = str(notification.actor)
|
|
if notification.target:
|
|
struct["target"] = str(notification.target)
|
|
if notification.action_object:
|
|
struct["action_object"] = str(notification.action_object)
|
|
if notification.data:
|
|
struct["data"] = notification.data
|
|
notification_list.append(struct)
|
|
if request.GET.get("mark_as_read"):
|
|
notification.mark_as_read()
|
|
return notification_list
|