mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-15 01:15:05 +00:00
Merge branch 'main' into dev
This commit is contained in:
commit
07799f6dd9
4 changed files with 22 additions and 8 deletions
|
@ -5,6 +5,13 @@
|
|||
* Update urllib3 2.2.1 (54d6edf) to 2.2.2 (27e2a5c)
|
||||
|
||||
|
||||
### 3.32.3 (2024-06-26 18:10:00 UTC)
|
||||
|
||||
* Fix votes on shows/IMDb cards
|
||||
* Fix ratings on shows/TMDB cards
|
||||
* Fix TVmaze parser
|
||||
|
||||
|
||||
### 3.32.2 (2024-06-26 07:20:00 UTC)
|
||||
|
||||
* Fix systemd linefeed typo
|
||||
|
|
|
@ -473,6 +473,7 @@ class TmdbIndexer(TVInfoBase):
|
|||
ti_show.popularity = show_dict.get('popularity')
|
||||
ti_show.vote_count = show_dict.get('vote_count')
|
||||
ti_show.vote_average = show_dict.get('vote_average')
|
||||
ti_show.rating = ti_show.vote_average
|
||||
ti_show.origin_countries = show_dict.get('origin_country') or []
|
||||
ti_show.genre_list = []
|
||||
ti_show.origin_countries = clean_data(show_dict.get('origin_country') or [])
|
||||
|
|
|
@ -372,6 +372,7 @@ class TvMaze(TVInfoBase):
|
|||
log.error('error episodes have no numbers')
|
||||
ti_season = ti_season or ti_show[cur_season.season_number] # type: TVInfoSeason
|
||||
for k, v in iteritems(season_map):
|
||||
if k not in ('network', ) and k in season_map:
|
||||
setattr(ti_season, k, clean_data(getattr(cur_season, v, None)) or empty_se.get(v))
|
||||
if cur_season.network:
|
||||
self._set_network(ti_season, cur_season.network, False)
|
||||
|
@ -558,7 +559,7 @@ class TvMaze(TVInfoBase):
|
|||
_s_o = TVInfoShow()
|
||||
show_dict = _s_o.__dict__
|
||||
for k, v in iteritems(show_dict):
|
||||
if k not in ('cast', 'crew', 'images', 'aliases', 'rating'):
|
||||
if k not in ('cast', 'crew', 'images', 'aliases', 'rating', 'network') and k in show_map:
|
||||
show_dict[k] = getattr(_s_d, show_map.get(k, k), clean_data(show_dict[k]))
|
||||
_s_o.aliases = [clean_data(a.name) for a in _s_d.akas]
|
||||
_s_o.runtime = _s_d.average_runtime or _s_d.runtime
|
||||
|
|
|
@ -4822,14 +4822,19 @@ class AddShows(Home):
|
|||
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)
|
||||
|
||||
genres = row.select('.genre')
|
||||
images = {}
|
||||
img = row.select('img.ipc-image')
|
||||
overview = self.parse_imdb_overview(row)
|
||||
rating = row.select_one('.ipc-rating-star').get_text()
|
||||
rating = rating and rating.split()[0] or ''
|
||||
voting = row('span', text=re.compile(r'(?i)vote'))
|
||||
voting = voting and re.sub(r'\D', '', voting[0].find_parent('div').get_text()) or ''
|
||||
try:
|
||||
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
|
||||
if len(img):
|
||||
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),
|
||||
title=title,
|
||||
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', ''))},
|
||||
no_mapped_ids=False)
|
||||
|
@ -5479,8 +5484,8 @@ class AddShows(Home):
|
|||
country_img=sickgear.MEMCACHE_FLAG_IMAGES.get(cc.lower(), False),
|
||||
network=network_name,
|
||||
url_src_db=base_url % cur_show_info.id,
|
||||
rating=0 < (cur_show_info.rating or 0) and
|
||||
('%.2f' % (cur_show_info.rating * 10)).replace('.00', '') or 0,
|
||||
rating=0 < (cur_show_info.vote_average or 0) and
|
||||
('%.2f' % (cur_show_info.vote_average * 10)).replace('.00', '') or 0,
|
||||
votes=('%.2f' % cur_show_info.popularity) or 0,
|
||||
))
|
||||
if p_ref:
|
||||
|
|
Loading…
Reference in a new issue