Add year searches to TV shows

This commit is contained in:
Scott Wallace 2021-12-12 10:26:28 +00:00
parent 2681786f9c
commit 4d9f76b9e0
Signed by: scott
GPG key ID: AA742FDC5AFE2A72
4 changed files with 34 additions and 2 deletions

1
.gitignore vendored
View file

@ -84,6 +84,7 @@ ipython_config.py
# pyenv
.python-version
.pyenv
# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.

View file

@ -134,6 +134,34 @@ class TestTmdbMethods(unittest.IsolatedAsyncioTestCase):
self.assertEqual('The Flash', movie.title)
await movie.close_session()
async def test_search_tvshow_v(self):
movie = TvShow()
await movie.load_parameters()
mid = await movie.search_title('V')
self.assertEqual(mid, 21494)
await movie.close_session()
async def test_tv_title_v(self):
movie = TvShow()
await movie.load_parameters()
await movie.search_title('V')
self.assertEqual('V', movie.title)
await movie.close_session()
async def test_search_tvshow_v_2009(self):
movie = TvShow()
await movie.load_parameters()
mid = await movie.search_title('V', 1983)
self.assertEqual(mid, 14141)
await movie.close_session()
async def test_tv_title_v_1983(self):
movie = TvShow()
await movie.load_parameters()
await movie.search_title('V', 1983)
self.assertEqual('V', movie.title)
await movie.close_session()
async def test_cast_2(self):
movie = TvShow()
await movie.load_parameters()

View file

@ -206,7 +206,8 @@ class TmdbBot(Plugin):
language = self.db.get_language(evt.sender)
if language:
movie.set_language(language)
await movie.search_title(message)
title, year = self.split_title_year(message)
await movie.search_title(title, year)
if movie.valid:
await self.send_movie_info(evt, movie)
else:

View file

@ -161,9 +161,11 @@ class TvShow(TmdbApiSingle):
def __init__(self):
super().__init__()
async def search_title(self, title):
async def search_title(self, title, year: int = 0):
payload = {}
payload['query'] = title
if year:
payload['first_air_date_year'] = str(year)
json = await self.request('/search/tv', params=payload)
if json['total_results'] > 0:
movie_id = json['results'][0]['id']