80ee0b7e201e9db8327b555400c4e9985520af98
[redakcja.git] / apps / cover / utils.py
1 # -*- coding: utf-8 -*-
2 #
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.
5 #
6 import json
7 import re
8 from urllib import FancyURLopener
9
10 from django.contrib.sites.models import Site
11
12
13 class URLOpener(FancyURLopener):
14     @property
15     def version(self):
16         return 'FNP Redakcja (http://%s)' % Site.objects.get_current()
17
18
19 class FlickrError(Exception):
20     pass
21
22
23 def get_flickr_data(url):
24     m = re.match(r'(https?://)?(www\.|secure\.)?flickr\.com/photos/(?P<author>[^/]+)/(?P<img>\d+)/?', url)
25     if not m:
26         raise FlickrError("It doesn't look like Flickr URL.")
27     author_slug, img_id = m.group('author'), m.group('img')
28     base_url = "https://www.flickr.com/photos/%s/%s/" % (author_slug, img_id)
29     try:
30         html = URLOpener().open(url).read().decode('utf-8')
31     except IOError:
32         raise FlickrError('Error reading page')
33     match = re.search(r'<a href="([^"]*)"[^>]* rel="license ', html)
34     if not match:
35         raise FlickrError('License not found.')
36     else:
37         license_url = match.group(1)
38         re_license = re.compile(r'https?://creativecommons.org/licenses/([^/]*)/([^/]*)/.*')
39         m = re_license.match(license_url)
40         if not m:
41             raise FlickrError('License does not look like CC: %s' % license_url)
42         license_name = 'CC %s %s' % (m.group(1).upper(), m.group(2))
43     m = re.search(r'<a[^>]* class="owner-name [^>]*>([^<]*)<', html)
44     if m:
45         author = "%s@Flickr" % m.group(1)
46     else:
47         raise FlickrError('Error reading author name.')
48     m = re.search(r'<h1[^>]*>(.*?)</h1>', html, re.S)
49     if not m:
50         raise FlickrError('Error reading image title.')
51     title = m.group(1).strip()
52     m = re.search(r'modelExport: (\{.*\})', html)
53     try:
54         assert m
55         download_url = 'https:' + json.loads(m.group(1))['photo-models'][0]['sizes']['o']['url']
56     except (AssertionError, ValueError, IndexError, KeyError):
57         raise FlickrError('Error reading image URL.')
58     return {
59         'source_url': base_url,
60         'license_url': license_url,
61         'license_name': license_name,
62         'author': author,
63         'title': title,
64         'download_url': download_url,
65     }