forked from jantoniomartin/condottieri_messages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodels.py
72 lines (61 loc) · 2.99 KB
/
models.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
## Copyright (c) 2010 by Jose Antonio Martin <jantonio.martin AT gmail DOT com>
## This program is free software: you can redistribute it and/or modify it
## under the terms of the GNU Affero General Public License as published by the
## Free Software Foundation, either version 3 of the License, or (at your option
## any later version.
##
## This program is distributed in the hope that it will be useful, but WITHOUT
## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
## FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License
## for more details.
##
## You should have received a copy of the GNU Affero General Public License
## along with this program. If not, see <http://www.gnu.org/licenses/agpl.txt>.
##
## This license is also included in the file COPYING
##
## AUTHOR: Jose Antonio Martin <jantonio.martin AT gmail DOT com>
from django.db import models
from django.conf import settings
from django.utils.translation import ugettext_lazy as _
from messages import models as messages
from machiavelli.models import Player, Revolution, SEASONS
from machiavelli.signals import government_overthrown
if "notification" in settings.INSTALLED_APPS:
from notification import models as notification
else:
notification = None
class Letter(messages.Message):
""" Letter is just a django-messages Message that adds two fields: sender_player and
recipient_player. """
sender_player = models.ForeignKey(Player, related_name='sent_messages', verbose_name=_("From country"))
recipient_player = models.ForeignKey(Player, related_name='received_messages', verbose_name=_("To country"))
year = models.PositiveIntegerField(default=0)
season = models.PositiveIntegerField(default=1, choices=SEASONS)
def save(self, *args, **kwargs):
if not self.id:
self.sender = self.sender_player.user
self.recipient = self.recipient_player.user
self.year = self.sender_player.game.year
self.season = self.sender_player.game.season
super(Letter, self).save(*args, **kwargs)
def get_absolute_url(self):
return ('condottieri_messages_detail', [self.id])
get_absolute_url = models.permalink(get_absolute_url)
def notify_new_letter(sender, instance, created, **kw):
if notification and isinstance(instance, Letter) and created:
user = [instance.recipient,]
game = instance.recipient_player.game
extra_context = {'game': game,
'letter': instance,
'STATIC_URL': settings.STATIC_URL,}
if game.fast:
notification.send_now(user, "condottieri_messages_received", extra_context)
else:
notification.send(user, "condottieri_messages_received", extra_context)
models.signals.post_save.connect(notify_new_letter, sender=Letter)
def update_letter_users(sender, **kwargs):
assert isinstance(sender, Revolution), "sender must be a Revolution"
Letter.objects.filter(sender_player=sender.government_player).update(sender=sender.opposition)
Letter.objects.filter(recipient_player=sender.government_player).update(recipient=sender.opposition)
government_overthrown.connect(update_letter_users)