1 # -*- coding: utf-8 -*-
3 # This file is part of FNP-Redakcja, licensed under GNU Affero GPLv3 or later.
4 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
7 from urllib2 import urlopen
8 from django import forms
9 from django.utils.translation import ugettext_lazy as _
10 from cover.models import Image
13 class ImageAddForm(forms.ModelForm):
17 def __init__(self, *args, **kwargs):
18 super(ImageAddForm, self).__init__(*args, **kwargs)
19 self.fields['file'].required = self.fields['download_url'].required = self.fields['source_url'].required = False
21 def clean_download_url(self):
22 return self.cleaned_data['download_url'] or None
24 def clean_source_url(self):
25 return self.cleaned_data['source_url'] or None
28 cleaned_data = super(ImageAddForm, self).clean()
29 if not cleaned_data.get('download_url', None) and not cleaned_data.get('file', None):
30 raise forms.ValidationError('No image specified')
34 class ImageEditForm(forms.ModelForm):
35 """Form used for editing a Book."""
38 exclude = ['download_url']
41 class ReadonlyImageEditForm(ImageEditForm):
42 """Form used for not editing a Book."""
44 def __init__(self, *args, **kwargs):
45 super(ReadonlyImageEditForm, self).__init__(*args, **kwargs)
46 for field in self.fields.values():
47 field.widget.attrs.update({"readonly": True})
49 def save(self, *args, **kwargs):
50 raise AssertionError("ReadonlyImageEditForm should not be saved.")
53 class FlickrForm(forms.Form):
54 source_url = forms.URLField(label=_('Flickr URL'))
56 def clean_source_url(self):
57 def normalize_html(html):
58 return re.sub('[\t\n]', '', html)
60 url = self.cleaned_data['source_url']
61 m = re.match(r'(https?://)?(www\.|secure\.)?flickr\.com/photos/(?P<author>[^/]+)/(?P<img>\d+)/?', url)
63 raise forms.ValidationError("It doesn't look like Flickr URL.")
64 author_slug, img_id = m.group('author'), m.group('img')
65 base_url = "https://www.flickr.com/photos/%s/%s/" % (author_slug, img_id)
68 html = normalize_html(urlopen(url).read().decode('utf-8'))
70 raise forms.ValidationError('Error reading page.')
71 match = re.search(r'<a href="([^"]*)" rel="license cc:license">Some rights reserved</a>', html)
74 license_url = match.group(1)
75 self.cleaned_data['license_url'] = license_url
76 re_license = re.compile(r'http://creativecommons.org/licenses/([^/]*)/([^/]*)/.*')
77 m = re_license.match(license_url)
79 self.cleaned_data['license_name'] = 'CC %s %s' % (m.group(1).upper(), m.group(2))
80 except AssertionError:
81 raise forms.ValidationError('Error reading license name.')
83 m = re.search(r'"ownername":"([^"]*)', html)
85 self.cleaned_data['author'] = "%s@Flickr" % m.group(1)
87 raise forms.ValidationError('Error reading author name.')
89 m = re.search(r'<h1[^>]*>(.*?)</h1>', html)
91 raise forms.ValidationError('Error reading image title.')
92 self.cleaned_data['title'] = m.group(1)
94 url_size = base_url + "sizes/o/"
95 html = normalize_html(urlopen(url_size).read().decode('utf-8'))
96 m = re.search(r'<div id="allsizes-photo">\s*<img src="([^"]*)"', html)
98 self.cleaned_data['download_url'] = m.group(1)
100 raise forms.ValidationError('Error reading image URL.')