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
|
2020-03-22 15:37:15 +01:00
|
|
|
from resources.lib.viervijfzes.auth import AuthApi
|
2020-03-24 17:58:40 +01:00
|
|
|
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 """
|
2020-04-01 11:01:22 +02:00
|
|
|
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
|
|
|
|
|
|
|
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
|
|
|
|
|
2020-04-20 08:59:10 +02:00
|
|
|
listing = [Menu.generate_titleitem(item) for item in items]
|
2020-03-19 16:45:31 +01:00
|
|
|
|
2020-03-22 15:37:15 +01:00
|
|
|
# Sort items by title
|
2020-03-19 16:45:31 +01:00
|
|
|
# Used for A-Z listing or when movies and episodes are mixed.
|
2020-03-22 15:37:15 +01:00
|
|
|
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:
|
2020-04-20 08:59:10 +02:00
|
|
|
listing.append(Menu.generate_titleitem(item))
|
2020-03-19 16:45:31 +01:00
|
|
|
|
2020-03-22 15:37:15 +01:00
|
|
|
# Sort items by title
|
2020-03-19 16:45:31 +01:00
|
|
|
# Used for A-Z listing or when movies and episodes are mixed.
|
2020-03-22 15:37:15 +01:00
|
|
|
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:
|
2020-04-20 08:59:10 +02:00
|
|
|
program = self._api.get_program(channel, program_id, extract_clips=True, cache=CACHE_PREVENT) # Use CACHE_PREVENT since we want fresh data
|
2020-03-19 16:45:31 +01:00
|
|
|
except UnavailableException:
|
2020-03-21 20:46:14 +01:00
|
|
|
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-04-20 08:59:10 +02:00
|
|
|
if not program.episodes and not program.clips:
|
2020-03-21 20:46:14 +01:00
|
|
|
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-04-20 08:59:10 +02:00
|
|
|
# Go directly to the season when we have only one season and no clips
|
|
|
|
if not program.clips and 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
|
2020-04-20 08:59:10 +02:00
|
|
|
if program.seasons and kodiutils.get_global_setting('videolibrary.showallitems') is True:
|
2020-03-19 16:45:31 +01:00
|
|
|
listing.append(
|
2020-03-20 13:53:21 +01:00
|
|
|
TitleItem(
|
|
|
|
title='* %s' % kodiutils.localize(30204), # * All seasons
|
2020-03-22 15:37:15 +01:00
|
|
|
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
|
2020-03-25 08:08:15 +01:00
|
|
|
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(
|
2020-03-25 08:08:15 +01:00
|
|
|
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,
|
2020-03-25 08:08:15 +01:00
|
|
|
'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
|
|
|
)
|
|
|
|
|
2020-04-20 08:59:10 +02:00
|
|
|
# Add Clips
|
|
|
|
if program.clips:
|
|
|
|
listing.append(
|
|
|
|
TitleItem(
|
|
|
|
title=kodiutils.localize(30059, program=program.title), # Clips for {program}
|
|
|
|
path=kodiutils.url_for('show_catalog_program_clips', channel=channel, program=program_id),
|
|
|
|
art_dict={
|
|
|
|
'fanart': program.background,
|
|
|
|
},
|
|
|
|
info_dict={
|
|
|
|
'tvshowtitle': program.title,
|
|
|
|
'title': kodiutils.localize(30059, program=program.title), # Clips for {program}
|
|
|
|
'plot': kodiutils.localize(30060, program=program.title), # Watch short clips of {program}
|
|
|
|
'set': program.title,
|
|
|
|
'studio': studio,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2020-03-19 16:45:31 +01:00
|
|
|
# Sort by label. Some programs return seasons unordered.
|
2020-03-22 15:37:15 +01:00
|
|
|
kodiutils.show_listing(listing, 30003, content='tvshows')
|
2020-03-19 16:45:31 +01:00
|
|
|
|
2020-03-22 15:37:15 +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
|
2020-03-22 15:37:15 +01:00
|
|
|
:type season_uuid: str
|
2020-03-19 16:45:31 +01:00
|
|
|
"""
|
|
|
|
try:
|
|
|
|
program = self._api.get_program(channel, program_id)
|
|
|
|
except UnavailableException:
|
2020-03-21 20:46:14 +01:00
|
|
|
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-22 15:37:15 +01:00
|
|
|
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
|
2020-03-22 15:37:15 +01:00
|
|
|
episodes = [e for e in program.episodes if e.season_uuid == season_uuid]
|
2020-03-19 16:45:31 +01:00
|
|
|
|
2020-04-20 08:59:10 +02:00
|
|
|
listing = [Menu.generate_titleitem(episode) for episode in episodes]
|
2020-03-19 16:45:31 +01:00
|
|
|
|
|
|
|
# Sort by episode number by default. Takes seasons into account.
|
|
|
|
kodiutils.show_listing(listing, 30003, content='episodes', sort=['episode', 'duration'])
|
2020-04-20 08:59:10 +02:00
|
|
|
|
|
|
|
def show_program_clips(self, channel, program_id):
|
|
|
|
""" Show the clips of a program from the catalog
|
|
|
|
:type channel: str
|
|
|
|
:type program_id: str
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
# We need to query the backend, since we don't cache clips.
|
|
|
|
program = self._api.get_program(channel, program_id, extract_clips=True, cache=CACHE_PREVENT)
|
|
|
|
except UnavailableException:
|
|
|
|
kodiutils.ok_dialog(message=kodiutils.localize(30717)) # This program is not available in the catalogue.
|
|
|
|
kodiutils.end_of_directory()
|
|
|
|
return
|
|
|
|
|
|
|
|
listing = [Menu.generate_titleitem(episode) for episode in program.clips]
|
|
|
|
|
|
|
|
# Sort like we get our results back.
|
|
|
|
kodiutils.show_listing(listing, 30003, content='episodes')
|