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

96 lines
3.7 KiB
Python
Raw Normal View History

2020-03-19 16:45:31 +01:00
# -*- coding: utf-8 -*-
""" Player module """
from __future__ import absolute_import, division, unicode_literals
import logging
from resources.lib import kodiutils
2020-04-20 08:59:10 +02:00
from resources.lib.modules.menu import Menu
2020-03-19 16:45:31 +01:00
from resources.lib.viervijfzes.auth import AuthApi
2020-03-22 10:30:23 +01:00
from resources.lib.viervijfzes.auth_awsidp import InvalidLoginException, AuthenticationException
2020-03-19 16:45:31 +01:00
from resources.lib.viervijfzes.content import ContentApi, UnavailableException, GeoblockedException
_LOGGER = logging.getLogger('player')
class Player:
""" Code responsible for playing media """
def __init__(self):
""" Initialise object """
2020-04-20 08:59:10 +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())
# Workaround for Raspberry Pi 3 and older
kodiutils.set_global_setting('videoplayer.useomxplayer', True)
2020-03-19 16:45:31 +01:00
def play_from_page(self, channel, path):
""" Play the requested item.
:type channel: string
:type path: string
"""
# Get episode information
2020-04-20 08:59:10 +02:00
episode = self._api.get_episode(channel, path)
resolved_stream = None
2020-03-19 16:45:31 +01:00
2020-04-20 08:59:10 +02:00
if episode.stream:
# We already have a resolved stream. Nice!
# We don't need credentials for these streams.
resolved_stream = episode.stream
_LOGGER.debug('Already got a resolved stream: %s', resolved_stream)
2020-03-19 16:45:31 +01:00
2020-04-20 08:59:10 +02:00
if episode.uuid:
# Lookup the stream
resolved_stream = self._resolve_stream(episode.uuid)
_LOGGER.debug('Resolved stream: %s', resolved_stream)
2020-04-20 08:59:10 +02:00
if resolved_stream:
titleitem = Menu.generate_titleitem(episode)
kodiutils.play(resolved_stream, info_dict=titleitem.info_dict, art_dict=titleitem.art_dict, prop_dict=titleitem.prop_dict)
def play(self, uuid):
2020-03-19 16:45:31 +01:00
""" Play the requested item.
2020-04-20 08:59:10 +02:00
:type uuid: string
2020-03-19 16:45:31 +01:00
"""
2020-04-20 08:59:10 +02:00
# Lookup the stream
resolved_stream = self._resolve_stream(uuid)
kodiutils.play(resolved_stream)
2020-03-25 07:50:45 +01:00
2020-04-20 08:59:10 +02:00
@staticmethod
def _resolve_stream(uuid):
""" Resolve the stream for the requested item
:type uuid: string
"""
2020-03-19 16:45:31 +01:00
try:
2020-03-21 20:34:07 +01:00
# Check if we have credentials
if not kodiutils.get_setting('username') or not kodiutils.get_setting('password'):
2020-03-22 10:30:23 +01:00
confirm = kodiutils.yesno_dialog(
message=kodiutils.localize(30701)) # To watch a video, you need to enter your credentials. Do you want to enter them now?
2020-03-21 20:34:07 +01:00
if confirm:
kodiutils.open_settings()
kodiutils.end_of_directory()
2020-04-20 08:59:10 +02:00
return None
2020-03-21 20:34:07 +01:00
# Fetch an auth token now
2020-03-22 10:30:23 +01:00
try:
auth = AuthApi(kodiutils.get_setting('username'), kodiutils.get_setting('password'), kodiutils.get_tokens_path())
# Get stream information
2020-04-20 08:59:10 +02:00
resolved_stream = ContentApi(auth).get_stream_by_uuid(uuid)
return resolved_stream
2020-03-22 10:30:23 +01:00
except (InvalidLoginException, AuthenticationException) as ex:
_LOGGER.error(ex)
kodiutils.ok_dialog(message=kodiutils.localize(30702, error=str(ex)))
2020-03-22 10:30:23 +01:00
kodiutils.end_of_directory()
2020-04-20 08:59:10 +02:00
return None
2020-03-21 20:34:07 +01:00
2020-03-19 16:45:31 +01:00
except GeoblockedException:
kodiutils.ok_dialog(heading=kodiutils.localize(30709), message=kodiutils.localize(30710)) # This video is geo-blocked...
2020-04-20 08:59:10 +02:00
return None
2020-03-19 16:45:31 +01:00
except UnavailableException:
kodiutils.ok_dialog(heading=kodiutils.localize(30711), message=kodiutils.localize(30712)) # The video is unavailable...
2020-04-20 08:59:10 +02:00
return None