openmedialibrary_platform/Shared/lib/python3.7/site-packages/ox/web/criterion.py

113 lines
4.3 KiB
Python
Raw Permalink Normal View History

2013-10-11 17:28:32 +00:00
# -*- coding: UTF-8 -*-
# vi:si:et:sw=4:sts=4:ts=4
2014-09-30 20:25:10 +00:00
from __future__ import print_function
2013-10-11 17:28:32 +00:00
import re
import ox.cache
from ox.cache import read_url
2015-11-04 12:01:55 +00:00
from ox.html import strip_tags, decode_html
2014-09-30 16:15:32 +00:00
from ox.text import find_re
2013-10-11 17:28:32 +00:00
2018-12-15 00:08:54 +00:00
from . import imdb
2013-10-11 17:28:32 +00:00
def get_id(url):
return url.split("/")[-1]
def get_url(id):
2018-12-15 00:08:54 +00:00
return "https://www.criterion.com/films/%s" % id
2013-10-11 17:28:32 +00:00
def get_data(id, timeout=ox.cache.cache_timeout, get_imdb=False):
'''
>>> get_data('1333').get('imdbId')
u'0060304'
>>> get_data('236')['posters'][0]
u'http://s3.amazonaws.com/criterion-production/release_images/1586/ThirdManReplace.jpg'
>>> get_data('786')['posters'][0]
u'http://s3.amazonaws.com/criterion-production/product_images/185/343_box_348x490.jpg'
'''
data = {
2018-12-15 00:08:54 +00:00
"id": id,
2013-10-11 17:28:32 +00:00
"url": get_url(id)
}
try:
html = read_url(data["url"], timeout=timeout, unicode=True)
except:
2018-12-15 00:08:54 +00:00
html = read_url(data["url"], timeout=timeout).decode('utf-8', 'ignore')
2013-10-11 17:28:32 +00:00
2018-12-15 00:08:54 +00:00
data["number"] = find_re(html, "<b>Spine #(\d+)")
data["title"] = decode_html(find_re(html, "<h1 class=\"header__primarytitle\".*?>(.*?)</h1>"))
2015-11-04 12:01:55 +00:00
data["title"] = data["title"].split(u' \u2014 The Television Version')[0].strip()
2018-12-15 00:08:54 +00:00
results = find_re(html, '<ul class="film-meta-list">(.*?)</ul>')
info = re.compile('<li itemprop="(.*?)".*?>(.*?)</li>', re.DOTALL).findall(results)
info = {k: strip_tags(v).strip() for k, v in info}
if 'director' in info:
data['director'] = info['director']
if 'countryOfOrigin' in info:
data['country'] = [c.strip() for c in decode_html(info['countryOfOrigin']).split(', ')]
if 'inLanguage' in info:
data['language'] = [l.strip() for l in decode_html(info['inLanguage']).split(', ')]
for v in re.compile('<li>(.*?)</li>', re.DOTALL).findall(results):
if 'datePublished' in v:
data['year'] = strip_tags(v).strip()
elif 'duration' in v:
data['duration'] = strip_tags(v).strip()
2015-11-04 12:01:55 +00:00
data["synopsis"] = decode_html(strip_tags(find_re(html,
2018-12-15 00:08:54 +00:00
"<div class=\"product-summary\".*?>.*?<p>(.*?)</p>")))
2013-10-11 17:28:32 +00:00
result = find_re(html, "<div class=\"purchase\">(.*?)</div>")
if 'Blu-Ray' in result or 'Essential Art House DVD' in result:
r = re.compile('<h3 class="section_title first">Other Editions</h3>(.*?)</div>', re.DOTALL).findall(html)
if r:
result = r[0]
result = find_re(result, "<a href=\"(.*?)\"")
if not "/boxsets/" in result:
data["posters"] = [result]
else:
html_ = read_url(result, unicode=True)
2018-12-15 00:08:54 +00:00
result = find_re(html_, '//www.criterion.com/films/%s.*?">(.*?)</a>' % id)
2013-10-11 17:28:32 +00:00
result = find_re(result, "src=\"(.*?)\"")
if result:
data["posters"] = [result.replace("_w100", "")]
else:
data["posters"] = []
data['posters'] = [re.sub('(\?\d+)$', '', p) for p in data['posters']]
2018-12-15 00:08:54 +00:00
data['posters'] = [p for p in data['posters'] if p]
posters = find_re(html, '<div class="product-box-art".*?>(.*?)</div>')
for poster in re.compile('<img src="(.*?)"').findall(posters):
data['posters'].append(poster)
2013-10-11 17:28:32 +00:00
result = find_re(html, "<img alt=\"Film Still\" height=\"252\" src=\"(.*?)\"")
if result:
data["stills"] = [result]
data["trailers"] = []
else:
2018-12-15 00:08:54 +00:00
data["stills"] = list(filter(lambda x: x, [find_re(html, "\"thumbnailURL\", \"(.*?)\"")]))
data["trailers"] = list(filter(lambda x: x, [find_re(html, "\"videoURL\", \"(.*?)\"")]))
2013-10-11 17:28:32 +00:00
if timeout == ox.cache.cache_timeout:
timeout = -1
2018-12-15 00:08:54 +00:00
if get_imdb and 'title' in data and 'director' in data:
2013-10-11 17:28:32 +00:00
# removed year, as "title (year)" may fail to match
data['imdbId'] = imdb.get_movie_id(data['title'], data['director'], timeout=timeout)
return data
def get_ids(page=None):
ids = []
2018-12-15 00:08:54 +00:00
html = read_url("https://www.criterion.com/shop/browse/list?sort=spine_number", unicode=True)
results = re.compile("films/(\d+)-").findall(html)
ids += results
results = re.compile("boxsets/(.*?)\"").findall(html)
for result in results:
html = read_url("https://www.criterion.com/boxsets/" + result, unicode=True)
results = re.compile("films/(\d+)-").findall(html)
2013-10-11 17:28:32 +00:00
ids += results
return sorted(set(ids), key=int)
2018-12-15 00:08:54 +00:00
2013-10-11 17:28:32 +00:00
if __name__ == '__main__':
2014-09-30 20:25:10 +00:00
print(get_ids())