Font fix
[wolnelektury.git] / src / picture / views.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.conf import settings
6 from django.contrib.auth.decorators import permission_required
7 from django.shortcuts import render_to_response, get_object_or_404, render
8 from django.template import RequestContext
9 from picture.models import Picture, PictureArea
10 from catalogue.utils import split_tags
11 from ssify import ssi_included
12 from sponsors.models import Sponsor
13
14
15 # WTF/unused
16 # # was picture/picture_list.html list (without thumbs)
17 # def picture_list(request, filter=None, get_filter=None, template_name='catalogue/picture_list.html',
18 #                  cache_key=None, context=None):
19 #     """ generates a listing of all books, optionally filtered with a test function """
20 #
21 #     if get_filter:
22 #         filt = get_filter()
23 #     pictures_by_author, orphans = Picture.picture_list(filt)
24 #     books_nav = OrderedDict()
25 #     for tag in pictures_by_author:
26 #         if pictures_by_author[tag]:
27 #             books_nav.setdefault(tag.sort_key[0], []).append(tag)
28 #
29 #     return render_to_response(template_name, locals(), context_instance=RequestContext(request))
30 from wolnelektury.utils import ajax
31
32
33 def picture_list_thumb(request, filter=None, get_filter=None, template_name='picture/picture_list_thumb.html',
34                        cache_key=None, context=None):
35     book_list = Picture.objects.all()
36     if filter:
37         book_list = book_list.filter(filter)
38     if get_filter:
39         book_list = book_list.filter(get_filter())
40     book_list = book_list.order_by('sort_key_author')
41     book_list = list(book_list)
42     return render_to_response(template_name, {'book_list': book_list}, context_instance=RequestContext(request))
43
44
45 def picture_detail(request, slug):
46     picture = get_object_or_404(Picture, slug=slug)
47
48     theme_things = split_tags(picture.related_themes())
49
50     # categories = SortedDict()
51     # for tag in picture.tags.iterator():
52     #     categories.setdefault(tag.category, []).append(tag)
53
54     return render_to_response("picture/picture_detail.html", {
55         'picture': picture,
56         'themes': theme_things.get('theme', []),
57         'things': theme_things.get('thing', []),
58     }, context_instance=RequestContext(request))
59
60
61 def picture_viewer(request, slug):
62     picture = get_object_or_404(Picture, slug=slug)
63     sponsors = []
64     for sponsor in picture.extra_info.get('sponsors', []):
65         have_sponsors = Sponsor.objects.filter(name=sponsor)
66         if have_sponsors.exists():
67             sponsors.append(have_sponsors[0])
68     return render_to_response("picture/picture_viewer.html", {
69         'picture': picture,
70         'sponsors': sponsors,
71     }, context_instance=RequestContext(request))
72
73
74 @ajax(method='get')
75 def picture_page(request, key=None):
76     pictures = Picture.objects.order_by('-id')
77     if key is not None:
78         pictures = pictures.filter(id__lt=key)
79     pictures = pictures[:settings.PICTURE_PAGE_SIZE]
80     picture_data = [
81         {
82             'id': picture.id,
83             'title': picture.title,
84             'author': picture.author_unicode(),
85             'epoch': picture.tag_unicode('epoch'),
86             'kind': picture.tag_unicode('kind'),
87             'genre': picture.tag_unicode('genre'),
88             'style': picture.extra_info['style'],
89             'image_url': picture.image_file.url,
90             'width': picture.width,
91             'height': picture.height,
92         }
93         for picture in pictures
94     ]
95     return {
96         'pictures': picture_data,
97         'count': Picture.objects.count(),
98     }
99
100
101 # =========
102 # = Admin =
103 # =========
104 @permission_required('picture.add_picture')
105 def import_picture(request):
106     """docstring for import_book"""
107     from django.http import HttpResponse
108     from picture.forms import PictureImportForm
109     from django.utils.translation import ugettext as _
110
111     import_form = PictureImportForm(request.POST, request.FILES)
112     if import_form.is_valid():
113         try:
114             import_form.save()
115         except:
116             import sys
117             import pprint
118             import traceback
119             info = sys.exc_info()
120             exception = pprint.pformat(info[1])
121             tb = '\n'.join(traceback.format_tb(info[2]))
122             return HttpResponse(_("An error occurred: %(exception)s\n\n%(tb)s") %
123                                 {'exception': exception, 'tb': tb}, mimetype='text/plain')
124         return HttpResponse(_("Picture imported successfully"))
125     else:
126         return HttpResponse(_("Error importing file: %r") % import_form.errors)
127
128
129 @ssi_included
130 def picture_mini(request, pk, with_link=True):
131     picture = get_object_or_404(Picture, pk=pk)
132     author_str = ", ".join(tag.name for tag in picture.tags.filter(category='author'))
133     return render(request, 'picture/picture_mini_box.html', {
134         'picture': picture,
135         'author_str': author_str,
136         'with_link': with_link,
137     })
138
139
140 @ssi_included
141 def picture_short(request, pk):
142     picture = get_object_or_404(Picture, pk=pk)
143
144     return render(request, 'picture/picture_short.html', {
145         'picture': picture,
146         'main_link': picture.get_absolute_url(),
147         'request': request,
148         'tags': split_tags(picture.tags),
149         })
150
151
152 @ssi_included
153 def picturearea_short(request, pk):
154     area = get_object_or_404(PictureArea, pk=pk)
155     themes = area.tags.filter(category='theme')
156     things = area.tags.filter(category='thing')
157     return render(request, 'picture/picturearea_short.html', {
158         'area': area,
159         'theme': themes[0] if themes else None,
160         'thing': things[0] if things else None,
161     })