summaryrefslogtreecommitdiff
path: root/searx/engines/flickr_noapi.py
diff options
context:
space:
mode:
authorFrank de Lange <github-f@unternet.org>2019-07-28 10:42:00 +0200
committerAlexandre Flament <alex@al-f.net>2019-07-28 10:42:00 +0200
commitcbc5e13275fe3ea5bbab2c7665432398d2179c24 (patch)
treeb2260a70a86997cdfd7168f7cf492c6e32a74cca /searx/engines/flickr_noapi.py
parentc6ac39bceaf853f0afe89822b78370eb6457dc8d (diff)
downloadsearxng-cbc5e13275fe3ea5bbab2c7665432398d2179c24.tar.gz
searxng-cbc5e13275fe3ea5bbab2c7665432398d2179c24.zip
[enh] flickr_noapi: use complete JSON data block, add 'content', 'img_format', 'source', etc. (#1571)
Fetch complete JSON data block, use legend to extract images. Unquote urlencoded strings. Add image description as 'content'. Add 'img_format' and 'source' data (needs PR #1567 to enable this data to be displayed). Show images which lack ownerid instead of discarding them.
Diffstat (limited to 'searx/engines/flickr_noapi.py')
-rw-r--r--searx/engines/flickr_noapi.py51
1 files changed, 28 insertions, 23 deletions
diff --git a/searx/engines/flickr_noapi.py b/searx/engines/flickr_noapi.py
index 08f07f7ce..eeee413ec 100644
--- a/searx/engines/flickr_noapi.py
+++ b/searx/engines/flickr_noapi.py
@@ -16,8 +16,7 @@ from json import loads
from time import time
import re
from searx.engines import logger
-from searx.url_utils import urlencode
-
+from searx.url_utils import urlencode, unquote
logger = logger.getChild('flickr-noapi')
@@ -27,7 +26,7 @@ url = 'https://www.flickr.com/'
search_url = url + 'search?{query}&page={page}'
time_range_url = '&min_upload_date={start}&max_upload_date={end}'
photo_url = 'https://www.flickr.com/photos/{userid}/{photoid}'
-regex = re.compile(r"\"search-photos-lite-models\",\"photos\":(.*}),\"totalItems\":", re.DOTALL)
+modelexport_re = re.compile(r"^\s*modelExport:\s*({.*}),$", re.M)
image_sizes = ('o', 'k', 'h', 'b', 'c', 'z', 'n', 'm', 't', 'q', 's')
paging = True
@@ -57,40 +56,45 @@ def request(query, params):
def response(resp):
results = []
- matches = regex.search(resp.text)
+ matches = modelexport_re.search(resp.text)
if matches is None:
return results
match = matches.group(1)
- search_results = loads(match)
+ model_export = loads(match)
- if '_data' not in search_results:
- return []
+ if 'legend' not in model_export:
+ return results
- photos = search_results['_data']
+ legend = model_export['legend']
- for photo in photos:
+ # handle empty page
+ if not legend or not legend[0]:
+ return results
- # In paged configuration, the first pages' photos
- # are represented by a None object
- if photo is None:
- continue
+ for index in legend:
+ photo = model_export['main'][index[0]][int(index[1])][index[2]][index[3]][int(index[4])]
+ author = unquote(photo.get('realname', ''))
+ source = unquote(photo.get('username', '')) + ' @ Flickr'
+ title = unquote(photo.get('title', ''))
+ content = unquote(photo.get('description', ''))
img_src = None
# From the biggest to the lowest format
for image_size in image_sizes:
if image_size in photo['sizes']:
img_src = photo['sizes'][image_size]['url']
+ img_format = 'jpg ' \
+ + str(photo['sizes'][image_size]['width']) \
+ + 'x' \
+ + str(photo['sizes'][image_size]['height'])
break
if not img_src:
logger.debug('cannot find valid image size: {0}'.format(repr(photo)))
continue
- if 'ownerNsid' not in photo:
- continue
-
# For a bigger thumbnail, keep only the url_z, not the url_n
if 'n' in photo['sizes']:
thumbnail_src = photo['sizes']['n']['url']
@@ -99,19 +103,20 @@ def response(resp):
else:
thumbnail_src = img_src
- url = build_flickr_url(photo['ownerNsid'], photo['id'])
-
- title = photo.get('title', '')
-
- author = photo['username']
+ if 'ownerNsid' not in photo:
+ # should not happen, disowned photo? Show it anyway
+ url = img_src
+ else:
+ url = build_flickr_url(photo['ownerNsid'], photo['id'])
- # append result
results.append({'url': url,
'title': title,
'img_src': img_src,
'thumbnail_src': thumbnail_src,
- 'content': '',
+ 'content': content,
'author': author,
+ 'source': source,
+ 'img_format': img_format,
'template': 'images.html'})
return results