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 'image_url': picture.image_file.url,
86 'width': picture.width,
87 'height': picture.height,
89 for picture in pictures
92 'pictures': picture_data,
93 'count': Picture.objects.count(),
100 @permission_required('picture.add_picture')
101 def import_picture(request):
102 """docstring for import_book"""
103 from django.http import HttpResponse
104 from picture.forms import PictureImportForm
105 from django.utils.translation import ugettext as _
107 import_form = PictureImportForm(request.POST, request.FILES)
108 if import_form.is_valid():
115 info = sys.exc_info()
116 exception = pprint.pformat(info[1])
117 tb = '\n'.join(traceback.format_tb(info[2]))
118 return HttpResponse(_("An error occurred: %(exception)s\n\n%(tb)s") %
119 {'exception': exception, 'tb': tb}, mimetype='text/plain')
120 return HttpResponse(_("Picture imported successfully"))
122 return HttpResponse(_("Error importing file: %r") % import_form.errors)
126 def picture_mini(request, pk, with_link=True):
127 picture = get_object_or_404(Picture, pk=pk)
128 author_str = ", ".join(tag.name for tag in picture.tags.filter(category='author'))
129 return render(request, 'picture/picture_mini_box.html', {
131 'author_str': author_str,
132 'with_link': with_link,
137 def picture_short(request, pk):
138 picture = get_object_or_404(Picture, pk=pk)
140 return render(request, 'picture/picture_short.html', {
142 'main_link': picture.get_absolute_url(),
144 'tags': split_tags(picture.tags),
149 def picturearea_short(request, pk):
150 area = get_object_or_404(PictureArea, pk=pk)
151 themes = area.tags.filter(category='theme')
152 things = area.tags.filter(category='thing')
153 return render(request, 'picture/picturearea_short.html', {
155 'theme': themes[0] if themes else None,
156 'thing': things[0] if things else None,