Fix votes on shows/IMDb cards.

This commit is contained in:
JackDandy 2024-06-26 18:07:24 +01:00
parent fd87f18ab0
commit cda6fb6b2c
2 changed files with 17 additions and 7 deletions

View file

@ -1,4 +1,9 @@
### 3.32.2 (2024-06-26 07:20:00 UTC) ### 3.32.3 (2024-06-26 18:10:00 UTC)
* Fix votes on shows/IMDb cards
### 3.32.2 (2024-06-26 07:20:00 UTC)
* Fix systemd linefeed typo * Fix systemd linefeed typo

View file

@ -4822,14 +4822,19 @@ class AddShows(Home):
ord_premiered, str_premiered, started_past, oldest_dt, newest_dt, oldest, newest, _, _, _, _ \ ord_premiered, str_premiered, started_past, oldest_dt, newest_dt, oldest, newest, _, _, _, _ \
= self.sanitise_dates('01-01-%s' % year, oldest_dt, newest_dt, oldest, newest) = self.sanitise_dates('01-01-%s' % year, oldest_dt, newest_dt, oldest, newest)
genres = row.select('.genre')
images = {} images = {}
img = row.select('img.ipc-image') img = row.select('img.ipc-image')
overview = self.parse_imdb_overview(row) overview = self.parse_imdb_overview(row)
rating = row.select_one('.ipc-rating-star').get_text() rating = row.select_one('.ipc-rating-star').get_text()
rating = rating and rating.split()[0] or '' rating = rating and rating.split()[0] or ''
voting = row('span', text=re.compile(r'(?i)vote')) try:
voting = voting and re.sub(r'\D', '', voting[0].find_parent('div').get_text()) or '' voting = row.select_one('.ipc-rating-star--voteCount').get_text(strip=True).strip('()').lower()
if voting.endswith('k'):
voting = helpers.try_float(voting[:-1]) * 1000
elif voting.endswith('m'):
voting = helpers.try_float(voting[:-1]) * 1000000
except (BaseException, Exception):
voting = ''
img_uri = None img_uri = None
if len(img): if len(img):
img_uri = img[0].get('src') img_uri = img[0].get('src')
@ -4859,7 +4864,7 @@ class AddShows(Home):
rating=0 if not len(rating) else int(helpers.try_float(rating) * 10), rating=0 if not len(rating) else int(helpers.try_float(rating) * 10),
title=title, title=title,
url_src_db='https://www.imdb.com/%s/' % url_path.strip('/'), url_src_db='https://www.imdb.com/%s/' % url_path.strip('/'),
votes=0 if not len(voting) else helpers.try_int(voting, 'TBA'))) votes=helpers.try_int(voting, 'TBA')))
show_obj = helpers.find_show_by_id({TVINFO_IMDB: int(ids['imdb'].replace('tt', ''))}, show_obj = helpers.find_show_by_id({TVINFO_IMDB: int(ids['imdb'].replace('tt', ''))},
no_mapped_ids=False) no_mapped_ids=False)
@ -5479,8 +5484,8 @@ class AddShows(Home):
country_img=sickgear.MEMCACHE_FLAG_IMAGES.get(cc.lower(), False), country_img=sickgear.MEMCACHE_FLAG_IMAGES.get(cc.lower(), False),
network=network_name, network=network_name,
url_src_db=base_url % cur_show_info.id, url_src_db=base_url % cur_show_info.id,
rating=0 < (cur_show_info.rating or 0) and rating=0 < (cur_show_info.vote_average or 0) and
('%.2f' % (cur_show_info.rating * 10)).replace('.00', '') or 0, ('%.2f' % (cur_show_info.vote_average * 10)).replace('.00', '') or 0,
votes=('%.2f' % cur_show_info.popularity) or 0, votes=('%.2f' % cur_show_info.popularity) or 0,
)) ))
if p_ref: if p_ref: