Code layout change.
[wolnelektury.git] / src / picture / templatetags / picture_tags.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 import logging
6 from random import randint
7 from django import template
8 from django.core.urlresolvers import reverse
9 from django.utils.cache import add_never_cache_headers
10 import sorl.thumbnail.default
11 from ssify import ssi_variable
12 from catalogue.utils import split_tags
13 from ..engine import CustomCroppingEngine
14 from ..models import Picture
15
16
17 register = template.Library()
18
19 cropper = CustomCroppingEngine()
20
21 @register.inclusion_tag('picture/picture_wide.html', takes_context=True)
22 def picture_wide(context, picture):
23     context.update({
24         'picture': picture,
25         'main_link': reverse('picture_viewer', args=[picture.slug]),
26         'request': context.get('request'),
27         'tags': split_tags(picture.tags),
28         })
29     return context
30
31
32 @register.simple_tag()
33 def area_thumbnail_url(area, geometry):
34     def to_square(coords):
35         w = coords[1][0] - coords[0][0]
36         h = coords[1][1] - coords[0][1]
37         if w == h:
38             return coords
39         elif w > h:
40             return [[coords[0][0] + w/2 - h/2, coords[0][1]],
41                     [coords[1][0] - w/2 + h/2, coords[1][1]]]
42         else:
43             return [[coords[0][0], coords[0][1] + h/2 - w/2],
44                     [coords[1][0], coords[1][1] - h/2 + w/2, ]]
45
46     # so much for sorl extensibility.
47     # what to do about this?
48     _engine = sorl.thumbnail.default.engine
49     sorl.thumbnail.default.engine = cropper
50     coords = to_square(area.area)
51
52     try:
53         th = sorl.thumbnail.default.backend.get_thumbnail(
54             area.picture.image_file,
55             geometry,
56             crop="%dpx %dpx %dpx %dpx" % tuple(map(lambda d: max(0, d), tuple(coords[0] + coords[1]))))
57     except Exception, e:
58         logging.exception("Error creating a thumbnail for PictureArea")
59         return ''
60
61     sorl.thumbnail.default.engine = _engine
62
63     return th.url
64
65
66 @ssi_variable(register, patch_response=[add_never_cache_headers])
67 def picture_random_picture(request, exclude_ids, unless=None):
68     if unless:
69         return None
70     queryset = Picture.objects.exclude(pk__in=exclude_ids).exclude(image_file='')
71     count = queryset.count()
72     if count:
73         return queryset[randint(0, count - 1)].pk
74     else:
75         return None