Code layout change.
[wolnelektury.git] / src / social / models.py
1 # -*- coding: utf-8 -*-
2 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
3 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
4 #
5 from django.db import models
6 from django.utils.translation import ugettext_lazy as _
7 from django.conf import settings
8 from django.core.urlresolvers import reverse
9 from ssify import flush_ssi_includes
10 from catalogue.models import Book
11
12
13 class Cite(models.Model):
14     book = models.ForeignKey(Book, verbose_name=_('book'), null=True, blank=True)
15     text = models.TextField(_('text'))
16     small = models.BooleanField(_('small'), default=False,
17         help_text=_('Make this cite display smaller.'))
18     vip = models.CharField(_('VIP'), max_length=128, null=True, blank=True)
19     link = models.URLField(_('link'))
20     sticky = models.BooleanField(_('sticky'), default=False, db_index=True,
21         help_text=_('Sticky cites will take precedense.'))
22
23     image = models.ImageField(_('image'), upload_to='social/cite',
24                 null=True, blank=True,
25         help_text=_('Best image is exactly 975px wide and weights under 100kB.'))
26     image_shift = models.IntegerField(_('shift'), null=True, blank=True,
27                 help_text=_(u'Vertical shift, in percents. 0 means top, 100 is bottom. Default is 50%.'))
28     image_title = models.CharField(_('title'), max_length=255,
29                 null=True, blank=True)
30     image_author = models.CharField(_('author'),
31                 max_length=255, blank=True, null=True)
32     image_link = models.URLField(_('link'), blank=True, null=True)
33     image_license = models.CharField(_('license name'),
34                 max_length=255, blank=True, null=True)
35     image_license_link = models.URLField(_('license link'), blank=True, null=True)
36
37     class Meta:
38         ordering = ('vip', 'text')
39         verbose_name = _('cite')
40         verbose_name_plural = _('cites')
41
42     def __unicode__(self):
43         return u"%s: %s…" % (self.vip, self.text[:60])
44
45     def get_absolute_url(self):
46         """This is used for testing."""
47         return "%s?choose_cite=%d" % (reverse('main_page'), self.id)
48
49     def save(self, *args, **kwargs):
50         ret = super(Cite, self).save(*args, **kwargs)
51         self.flush_includes()
52         return ret
53
54     def flush_includes(self):
55         flush_ssi_includes([
56             template % (self.pk, lang)
57             for template in [
58                 '/ludzie/cite/%s.%s.html',
59                 '/ludzie/cite_main/%s.%s.html',
60             ]
61             for lang in [lc for (lc, _ln) in settings.LANGUAGES]] +
62             ['/ludzie/cite_info/%s.html' % self.pk])