changed Fragment.short_html (#309)
[wolnelektury.git] / apps / catalogue / templatetags / catalogue_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 feedparser
6 import datetime
7
8 from django import template
9 from django.template import Node, Variable
10 from django.utils.encoding import smart_str
11 from django.core.urlresolvers import reverse
12 from django.contrib.auth.forms import UserCreationForm, AuthenticationForm
13 from django.db.models import Q
14 from django.conf import settings
15
16
17 register = template.Library()
18
19
20 class RegistrationForm(UserCreationForm):
21     def as_ul(self):
22         "Returns this form rendered as HTML <li>s -- excluding the <ul></ul>."
23         return self._html_output(u'<li>%(errors)s%(label)s %(field)s<span class="help-text">%(help_text)s</span></li>', u'<li>%s</li>', '</li>', u' %s', False)
24
25
26 class LoginForm(AuthenticationForm):
27     def as_ul(self):
28         "Returns this form rendered as HTML <li>s -- excluding the <ul></ul>."
29         return self._html_output(u'<li>%(errors)s%(label)s %(field)s<span class="help-text">%(help_text)s</span></li>', u'<li>%s</li>', '</li>', u' %s', False)
30
31
32 def iterable(obj):
33     try:
34         iter(obj)
35         return True
36     except TypeError:
37         return False
38
39
40 def capfirst(text):
41     try:
42         return '%s%s' % (text[0].upper(), text[1:])
43     except IndexError:
44         return ''
45
46
47
48 def simple_title(tags):
49     mapping = {
50         'author': u'Autor',
51         'theme': u'motyw',
52         'epoch': u'epoka',
53         'genre': u'gatunek',
54         'kind': u'rodzaj',
55         'set': u'półka',
56     }
57
58     title = []
59     for tag in tags:
60         title.append("%s: %s" % (mapping[tag.category], tag.name))
61     return capfirst(', '.join(title))
62
63
64 @register.simple_tag
65 def book_title(book, html_links=False):
66     names = list(book.tags.filter(category='author'))
67
68     books = []
69     while book:
70         books.append(book)
71         book = book.parent
72     names.extend(reversed(books[::-1]))
73
74     if html_links:
75         names = ['<a href="%s">%s</a>' % (tag.get_absolute_url(), tag.name) for tag in names]
76     else:
77         names = [tag.name for tag in names]
78
79     return ', '.join(names)
80
81
82 @register.simple_tag
83 def book_title_html(book):
84     return book_title(book, html_links=True)
85
86
87 @register.simple_tag
88 def title_from_tags(tags):
89     def split_tags(tags):
90         result = {}
91         for tag in tags:
92             result[tag.category] = tag
93         return result
94
95     # TODO: Remove this after adding flection mechanism
96     return simple_title(tags)
97
98     class Flection(object):
99         def get_case(self, name, flection):
100             return name
101     flection = Flection()
102
103     self = split_tags(tags)
104
105     title = u''
106
107     # Specjalny przypadek oglądania wszystkich lektur na danej półce
108     if len(self) == 1 and 'set' in self:
109         return u'Półka %s' % self['set']
110
111     # Specjalny przypadek "Twórczość w pozytywizmie", wtedy gdy tylko epoka
112     # jest wybrana przez użytkownika
113     if 'epoch' in self and len(self) == 1:
114         text = u'Twórczość w %s' % flection.get_case(unicode(self['epoch']), u'miejscownik')
115         return capfirst(text)
116
117     # Specjalny przypadek "Dramat w twórczości Sofoklesa", wtedy gdy podane
118     # są tylko rodzaj literacki i autor
119     if 'kind' in self and 'author' in self and len(self) == 2:
120         text = u'%s w twórczości %s' % (unicode(self['kind']),
121             flection.get_case(unicode(self['author']), u'dopełniacz'))
122         return capfirst(text)
123
124     # Przypadki ogólniejsze
125     if 'theme' in self:
126         title += u'Motyw %s' % unicode(self['theme'])
127
128     if 'genre' in self:
129         if 'theme' in self:
130             title += u' w %s' % flection.get_case(unicode(self['genre']), u'miejscownik')
131         else:
132             title += unicode(self['genre'])
133
134     if 'kind' in self or 'author' in self or 'epoch' in self:
135         if 'genre' in self or 'theme' in self:
136             if 'kind' in self:
137                 title += u' w %s ' % flection.get_case(unicode(self['kind']), u'miejscownik')
138             else:
139                 title += u' w twórczości '
140         else:
141             title += u'%s ' % unicode(self.get('kind', u'twórczość'))
142
143     if 'author' in self:
144         title += flection.get_case(unicode(self['author']), u'dopełniacz')
145     elif 'epoch' in self:
146         title += flection.get_case(unicode(self['epoch']), u'dopełniacz')
147
148     return capfirst(title)
149
150
151 @register.simple_tag
152 def user_creation_form():
153     return RegistrationForm(prefix='registration').as_ul()
154
155
156 @register.simple_tag
157 def authentication_form():
158     return LoginForm(prefix='login').as_ul()
159
160
161 @register.inclusion_tag('catalogue/breadcrumbs.html')
162 def breadcrumbs(tags, search_form=True):
163     from catalogue.forms import SearchForm
164     context = {'tag_list': tags}
165     try:
166         max_tag_list = settings.MAX_TAG_LIST
167     except AttributeError:
168         max_tag_list = -1
169     if search_form and (max_tag_list == -1 or len(tags) < max_tag_list):
170         context['search_form'] = SearchForm(tags=tags)
171     return context
172
173
174 @register.tag
175 def catalogue_url(parser, token):
176     bits = token.split_contents()
177     tag_name = bits[0]
178
179     tags_to_add = []
180     tags_to_remove = []
181     for bit in bits[1:]:
182         if bit[0] == '-':
183             tags_to_remove.append(bit[1:])
184         else:
185             tags_to_add.append(bit)
186
187     return CatalogueURLNode(tags_to_add, tags_to_remove)
188
189
190 class CatalogueURLNode(Node):
191     def __init__(self, tags_to_add, tags_to_remove):
192         self.tags_to_add = [Variable(tag) for tag in tags_to_add]
193         self.tags_to_remove = [Variable(tag) for tag in tags_to_remove]
194
195     def render(self, context):
196         tags_to_add = []
197         tags_to_remove = []
198
199         for tag_variable in self.tags_to_add:
200             tag = tag_variable.resolve(context)
201             if isinstance(tag, (list, dict)):
202                 tags_to_add += [t for t in tag]
203             else:
204                 tags_to_add.append(tag)
205
206         for tag_variable in self.tags_to_remove:
207             tag = tag_variable.resolve(context)
208             if iterable(tag):
209                 tags_to_remove += [t for t in tag]
210             else:
211                 tags_to_remove.append(tag)
212
213         tag_slugs = [tag.url_chunk for tag in tags_to_add]
214         for tag in tags_to_remove:
215             try:
216                 tag_slugs.remove(tag.url_chunk)
217             except KeyError:
218                 pass
219
220         if len(tag_slugs) > 0:
221             return reverse('tagged_object_list', kwargs={'tags': '/'.join(tag_slugs)})
222         else:
223             return reverse('main_page')
224
225
226 @register.inclusion_tag('catalogue/latest_blog_posts.html')
227 def latest_blog_posts(feed_url, posts_to_show=5):
228     try:
229         feed = feedparser.parse(str(feed_url))
230         posts = []
231         for i in range(posts_to_show):
232             pub_date = feed['entries'][i].updated_parsed
233             published = datetime.date(pub_date[0], pub_date[1], pub_date[2] )
234             posts.append({
235                 'title': feed['entries'][i].title,
236                 'summary': feed['entries'][i].summary,
237                 'link': feed['entries'][i].link,
238                 'date': published,
239                 })
240         return {'posts': posts}
241     except:
242         return {'posts': []}
243
244
245 @register.inclusion_tag('catalogue/tag_list.html')
246 def tag_list(tags, choices=None):
247     if choices is None:
248         choices = []
249     if len(tags) == 1:
250         one_tag = tags[0]
251     return locals()
252
253
254 @register.inclusion_tag('catalogue/folded_tag_list.html')
255 def folded_tag_list(tags, choices=None):
256     if choices is None:
257         choices = []
258     some_tags_hidden = False
259     tag_count = len(tags)
260
261     if tag_count == 1:
262         one_tag = tags[0]
263     else:
264         shown_tags = [tag for tag in tags if tag.main_page]
265         if tag_count > len(shown_tags):
266             some_tags_hidden = True
267     return locals()
268