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.
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
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 """
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)
29 # return render_to_response(template_name, locals(), context_instance=RequestContext(request))
30 from wolnelektury.utils import ajax
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()
37 book_list = book_list.filter(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))
45 def picture_detail(request, slug):
46 picture = get_object_or_404(Picture, slug=slug)
48 theme_things = split_tags(picture.related_themes())
50 # categories = SortedDict()
51 # for tag in picture.tags.iterator():
52 # categories.setdefault(tag.category, []).append(tag)
54 return render_to_response("picture/picture_detail.html", {
56 'themes': theme_things.get('theme', []),
57 'things': theme_things.get('thing', []),
58 }, context_instance=RequestContext(request))
61 def picture_viewer(request, slug):
62 picture = get_object_or_404(Picture, slug=slug)
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", {
71 }, context_instance=RequestContext(request))
75 def picture_page(request, key=None):
76 pictures = Picture.objects.order_by('-id')
78 pictures = pictures.filter(id__lt=key)
79 pictures = pictures[:settings.PICTURE_PAGE_SIZE]
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,
93 for picture in pictures
96 'pictures': picture_data,
97 'count': Picture.objects.count(),
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 _
111 import_form = PictureImportForm(request.POST, request.FILES)
112 if import_form.is_valid():
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"))
126 return HttpResponse(_("Error importing file: %r") % import_form.errors)
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', {
135 'author_str': author_str,
136 'with_link': with_link,
141 def picture_short(request, pk):
142 picture = get_object_or_404(Picture, pk=pk)
144 return render(request, 'picture/picture_short.html', {
146 'main_link': picture.get_absolute_url(),
148 'tags': split_tags(picture.tags),
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', {
159 'theme': themes[0] if themes else None,
160 'thing': things[0] if things else None,