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