plugin.video.viervijfzes/resources/lib/modules/catalog.py

152 lines
5.8 KiB
Python
Raw Normal View History

2020-03-19 16:45:31 +01:00
# -*- coding: utf-8 -*-
""" Catalog module """
from __future__ import absolute_import, division, unicode_literals
import logging
from resources.lib import kodiutils
from resources.lib.kodiutils import TitleItem
from resources.lib.modules.menu import Menu
from resources.lib.viervijfzes import CHANNELS
from resources.lib.viervijfzes.auth import AuthApi
from resources.lib.viervijfzes.content import ContentApi, UnavailableException, CACHE_PREVENT
2020-03-19 16:45:31 +01:00
_LOGGER = logging.getLogger('catalog')
class Catalog:
""" Menu code related to the catalog """
def __init__(self):
""" Initialise object """
auth = AuthApi(kodiutils.get_setting('username'), kodiutils.get_setting('password'), kodiutils.get_tokens_path())
self._api = ContentApi(auth, cache_path=kodiutils.get_cache_path())
2020-03-19 16:45:31 +01:00
self._menu = Menu()
def show_catalog(self):
""" Show all the programs of all channels """
try:
items = []
for channel in list(CHANNELS):
items.extend(self._api.get_programs(channel))
except Exception as ex:
kodiutils.notification(message=str(ex))
raise
listing = [self._menu.generate_titleitem(item) for item in items]
# Sort items by title
2020-03-19 16:45:31 +01:00
# Used for A-Z listing or when movies and episodes are mixed.
kodiutils.show_listing(listing, 30003, content='tvshows', sort='title')
2020-03-19 16:45:31 +01:00
def show_catalog_channel(self, channel):
""" Show the programs of a specific channel
:type channel: str
"""
try:
items = self._api.get_programs(channel)
except Exception as ex:
kodiutils.notification(message=str(ex))
raise
listing = []
for item in items:
listing.append(self._menu.generate_titleitem(item))
# Sort items by title
2020-03-19 16:45:31 +01:00
# Used for A-Z listing or when movies and episodes are mixed.
kodiutils.show_listing(listing, 30003, content='tvshows', sort='title')
2020-03-19 16:45:31 +01:00
def show_program(self, channel, program_id):
""" Show a program from the catalog
:type channel: str
:type program_id: str
"""
try:
program = self._api.get_program(channel, program_id, cache=CACHE_PREVENT) # Use CACHE_PREVENT since we want fresh data
2020-03-19 16:45:31 +01:00
except UnavailableException:
kodiutils.ok_dialog(message=kodiutils.localize(30717)) # This program is not available in the catalogue.
2020-03-19 16:45:31 +01:00
kodiutils.end_of_directory()
return
2020-03-20 13:53:21 +01:00
if not program.episodes:
kodiutils.ok_dialog(message=kodiutils.localize(30717)) # This program is not available in the catalogue.
2020-03-19 16:45:31 +01:00
kodiutils.end_of_directory()
return
# Go directly to the season when we have only one season
if len(program.seasons) == 1:
2020-04-01 11:00:06 +02:00
self.show_program_season(channel, program_id, list(program.seasons.values())[0].uuid)
2020-03-19 16:45:31 +01:00
return
studio = CHANNELS.get(program.channel, {}).get('studio_icon')
listing = []
# Add an '* All seasons' entry when configured in Kodi
if kodiutils.get_global_setting('videolibrary.showallitems') is True:
listing.append(
2020-03-20 13:53:21 +01:00
TitleItem(
title='* %s' % kodiutils.localize(30204), # * All seasons
path=kodiutils.url_for('show_catalog_program_season', channel=channel, program=program_id, season='-1'),
2020-03-20 13:53:21 +01:00
art_dict={
'fanart': program.background,
},
info_dict={
'tvshowtitle': program.title,
'title': kodiutils.localize(30204), # All seasons
'plot': program.description,
'set': program.title,
'studio': studio,
}
)
2020-03-19 16:45:31 +01:00
)
# Add the seasons
for season in list(program.seasons.values()):
2020-03-19 16:45:31 +01:00
listing.append(
2020-03-20 13:53:21 +01:00
TitleItem(
title=season.title, # kodiutils.localize(30205, season=season.number), # Season {season}
path=kodiutils.url_for('show_catalog_program_season', channel=channel, program=program_id, season=season.uuid),
2020-03-20 13:53:21 +01:00
art_dict={
'fanart': program.background,
},
info_dict={
'tvshowtitle': program.title,
'title': kodiutils.localize(30205, season=season.number), # Season {season}
'plot': season.description,
2020-03-20 13:53:21 +01:00
'set': program.title,
'studio': studio,
}
)
2020-03-19 16:45:31 +01:00
)
# Sort by label. Some programs return seasons unordered.
kodiutils.show_listing(listing, 30003, content='tvshows')
2020-03-19 16:45:31 +01:00
def show_program_season(self, channel, program_id, season_uuid):
2020-03-19 16:45:31 +01:00
""" Show the episodes of a program from the catalog
:type channel: str
:type program_id: str
:type season_uuid: str
2020-03-19 16:45:31 +01:00
"""
try:
program = self._api.get_program(channel, program_id)
except UnavailableException:
kodiutils.ok_dialog(message=kodiutils.localize(30717)) # This program is not available in the catalogue.
2020-03-19 16:45:31 +01:00
kodiutils.end_of_directory()
return
if season_uuid == "-1":
2020-03-19 16:45:31 +01:00
# Show all episodes
episodes = program.episodes
else:
# Show the episodes of the season that was selected
episodes = [e for e in program.episodes if e.season_uuid == season_uuid]
2020-03-19 16:45:31 +01:00
listing = [self._menu.generate_titleitem(episode) for episode in episodes]
# Sort by episode number by default. Takes seasons into account.
kodiutils.show_listing(listing, 30003, content='episodes', sort=['episode', 'duration'])