from django.contrib.contenttypes.models import ContentType
from django.db.models.signals import post_save
-from forum.models import Badge, Node
+from forum.models import Badge, Node, Action
from forum.actions import AwardAction
import logging
def award(cls, user, action, once=False):
if once:
node = None
+ awarded = AwardAction.get_for(user, cls.ondb)
else:
node = action.node
+ awarded = AwardAction.get_for(user, cls.ondb, node)
- awarded = AwardAction.get_for(user, node, cls.ondb)
+ trigger = isinstance(action, Action) and action or None
if not awarded:
- AwardAction(user=user, node=node, ip=action.ip).save(data=dict(badge=cls.ondb, trigger=action))
\ No newline at end of file
+ AwardAction(user=user, node=node, ip=action.ip).save(data=dict(badge=cls.ondb, trigger=trigger))
\ No newline at end of file