PlexKodiConnect/resources/lib/userclient.py

376 lines
13 KiB
Python
Raw Normal View History

2015-12-25 07:07:00 +11:00
# -*- coding: utf-8 -*-
2016-02-20 06:03:06 +11:00
###############################################################################
2016-09-03 01:40:36 +10:00
import logging
2015-12-25 07:07:00 +11:00
import threading
import xbmc
import xbmcgui
import xbmcaddon
import xbmcvfs
2016-09-03 01:40:36 +10:00
from utils import window, settings, language as lang, ThreadMethods, \
tryDecode, ThreadMethodsAdditionalSuspend
2015-12-25 07:07:00 +11:00
import downloadutils
2015-12-28 03:12:46 +11:00
import PlexAPI
from PlexFunctions import GetMachineIdentifier
2015-12-28 03:12:46 +11:00
2016-02-20 06:03:06 +11:00
###############################################################################
2015-12-25 07:07:00 +11:00
2016-09-03 01:40:36 +10:00
log = logging.getLogger("PLEX."+__name__)
2016-09-05 00:48:57 +10:00
addonName = 'PlexKodiConnect'
2016-09-03 01:40:36 +10:00
###############################################################################
2015-12-25 07:07:00 +11:00
2016-09-03 01:40:36 +10:00
@ThreadMethodsAdditionalSuspend('suspend_Userclient')
@ThreadMethods
2015-12-25 07:07:00 +11:00
class UserClient(threading.Thread):
# Borg - multiple instances, shared state
2016-01-25 20:36:24 +11:00
__shared_state = {}
2015-12-25 07:07:00 +11:00
def __init__(self):
self.__dict__ = self.__shared_state
2015-12-25 07:07:00 +11:00
self.auth = True
self.retry = 0
2015-12-25 07:07:00 +11:00
self.currUser = None
self.currUserId = None
self.currServer = None
self.currToken = None
self.HasAccess = True
self.AdditionalUser = []
2015-12-25 07:07:00 +11:00
self.userSettings = None
2015-12-25 07:07:00 +11:00
self.addon = xbmcaddon.Addon()
self.doUtils = downloadutils.DownloadUtils()
2016-01-13 03:23:55 +11:00
2015-12-25 07:07:00 +11:00
threading.Thread.__init__(self)
def getUsername(self):
"""
Returns username as unicode
"""
2016-09-03 01:40:36 +10:00
username = settings('username')
2015-12-25 07:07:00 +11:00
if not username:
2016-09-03 01:40:36 +10:00
log.debug("No username saved, trying to get Plex username")
username = settings('plexLogin')
2016-03-04 23:34:30 +11:00
if not username:
2016-09-03 01:40:36 +10:00
log.debug("Also no Plex username found")
2016-03-04 23:34:30 +11:00
return ""
2015-12-25 07:07:00 +11:00
return username
def getServer(self, prefix=True):
2016-03-04 23:34:30 +11:00
# Original host
self.servername = settings('plex_servername')
2016-03-04 23:34:30 +11:00
HTTPS = settings('https') == "true"
host = settings('ipaddress')
port = settings('port')
self.machineIdentifier = settings('plex_machineIdentifier')
2015-12-25 07:07:00 +11:00
server = host + ":" + port
2016-02-20 06:03:06 +11:00
2015-12-25 07:07:00 +11:00
if not host:
2016-09-03 01:40:36 +10:00
log.debug("No server information saved.")
2015-12-25 07:07:00 +11:00
return False
# If https is true
if prefix and HTTPS:
server = "https://%s" % server
# If https is false
elif prefix and not HTTPS:
server = "http://%s" % server
# User entered IP; we need to get the machineIdentifier
if self.machineIdentifier == '' and prefix is True:
self.machineIdentifier = GetMachineIdentifier(server)
if self.machineIdentifier is None:
self.machineIdentifier = ''
settings('plex_machineIdentifier', value=self.machineIdentifier)
2016-09-03 01:40:36 +10:00
log.info('Returning active server: %s' % server)
return server
2015-12-25 07:07:00 +11:00
def getSSLverify(self):
# Verify host certificate
2016-09-03 01:40:36 +10:00
return None if settings('sslverify') == 'true' else False
2015-12-25 07:07:00 +11:00
def getSSL(self):
# Client side certificate
2016-09-03 01:40:36 +10:00
return None if settings('sslcert') == 'None' \
else settings('sslcert')
2015-12-25 07:07:00 +11:00
def setUserPref(self):
2016-09-03 01:40:36 +10:00
log.info('Setting user preferences')
2016-03-10 01:37:27 +11:00
# Only try to get user avatar if there is a token
if self.currToken:
url = PlexAPI.PlexAPI().GetUserArtworkURL(self.currUser)
if url:
2016-09-03 01:40:36 +10:00
window('PlexUserImage', value=url)
2015-12-25 07:07:00 +11:00
# Set resume point max
2015-12-28 20:35:27 +11:00
# url = "{server}/emby/System/Configuration?format=json"
# result = doUtils.downloadUrl(url)
2015-12-25 07:07:00 +11:00
def hasAccess(self):
2016-02-20 06:03:06 +11:00
# Plex: always return True for now
return True
2015-12-25 07:07:00 +11:00
# hasAccess is verified in service.py
url = "{server}/emby/Users?format=json"
result = self.doUtils.downloadUrl(url)
2016-02-20 06:03:06 +11:00
2016-04-26 22:41:58 +10:00
if result is False:
2015-12-25 07:07:00 +11:00
# Access is restricted, set in downloadutils.py via exception
2016-09-03 01:40:36 +10:00
log.info("Access is restricted.")
2015-12-25 07:07:00 +11:00
self.HasAccess = False
2016-02-20 06:03:06 +11:00
2016-05-31 16:06:42 +10:00
elif window('plex_online') != "true":
2015-12-25 07:07:00 +11:00
# Server connection failed
pass
2016-05-31 16:06:42 +10:00
elif window('plex_serverStatus') == "restricted":
2016-09-03 01:40:36 +10:00
log.info("Access is granted.")
2015-12-25 07:07:00 +11:00
self.HasAccess = True
2016-05-31 16:06:42 +10:00
window('plex_serverStatus', clear=True)
2016-09-05 00:48:57 +10:00
xbmcgui.Dialog().notification(addonName,
2016-09-03 01:40:36 +10:00
lang(33007))
2015-12-25 07:07:00 +11:00
2016-03-10 01:37:27 +11:00
def loadCurrUser(self, username, userId, usertoken, authenticated=False):
2016-09-03 01:40:36 +10:00
log.info('Loading current user')
2015-12-25 07:07:00 +11:00
doUtils = self.doUtils
2016-02-20 06:03:06 +11:00
2015-12-25 07:07:00 +11:00
self.currUserId = userId
2016-03-10 01:37:27 +11:00
self.currToken = usertoken
2015-12-25 07:07:00 +11:00
self.currServer = self.getServer()
self.ssl = self.getSSLverify()
self.sslcert = self.getSSL()
2016-02-20 06:03:06 +11:00
if authenticated is False:
2016-09-03 01:40:36 +10:00
log.info('Testing validity of current token')
res = PlexAPI.PlexAPI().CheckConnection(self.currServer,
token=self.currToken,
verifySSL=self.ssl)
2016-03-04 23:34:30 +11:00
if res is False:
2016-09-03 01:40:36 +10:00
log.error('Answer from PMS is not as expected. Retrying')
2016-03-04 23:34:30 +11:00
return False
elif res == 401:
2016-09-03 01:40:36 +10:00
log.warn('Token is no longer valid')
2015-12-25 07:07:00 +11:00
return False
2016-03-04 23:34:30 +11:00
elif res >= 400:
2016-09-03 01:40:36 +10:00
log.error('Answer from PMS is not as expected. Retrying')
2016-03-04 23:34:30 +11:00
return False
2015-12-25 07:07:00 +11:00
# Set to windows property
2016-03-11 02:02:46 +11:00
window('currUserId', value=userId)
2016-02-20 06:03:06 +11:00
window('plex_username', value=username)
2016-03-11 02:02:46 +11:00
# This is the token for the current PMS (might also be '')
window('pms_token', value=self.currToken)
# This is the token for plex.tv for the current user
# Is only '' if user is not signed in to plex.tv
2016-03-17 22:45:38 +11:00
window('plex_token', value=settings('plexToken'))
window('plex_restricteduser', value=settings('plex_restricteduser'))
2016-03-11 02:02:46 +11:00
window('pms_server', value=self.currServer)
2016-02-20 06:03:06 +11:00
window('plex_machineIdentifier', value=self.machineIdentifier)
2016-03-10 01:37:27 +11:00
window('plex_servername', value=self.servername)
window('plex_authenticated', value='true')
window('useDirectPaths', value='true'
2016-09-03 01:40:36 +10:00
if settings('useDirectPaths') == "1" else 'false')
2016-03-04 23:34:30 +11:00
2015-12-25 07:07:00 +11:00
# Start DownloadUtils session
2016-04-13 22:34:58 +10:00
doUtils.startSession(reset=True)
2016-03-04 01:28:44 +11:00
# self.getAdditionalUsers()
2015-12-25 07:07:00 +11:00
# Set user preferences in settings
self.currUser = username
self.setUserPref()
2016-03-10 01:37:27 +11:00
# Writing values to settings file
settings('username', value=username)
settings('userid', value=userId)
settings('accessToken', value=usertoken)
dialog = xbmcgui.Dialog()
2016-09-03 01:40:36 +10:00
if settings('connectMsg') == "true":
if username:
dialog.notification(
2016-09-05 00:48:57 +10:00
heading=addonName,
message="Welcome " + username,
icon="special://home/addons/plugin.video.plexkodiconnect/icon.png")
else:
dialog.notification(
2016-09-05 00:48:57 +10:00
heading=addonName,
message="Welcome",
icon="special://home/addons/plugin.video.plexkodiconnect/icon.png")
2015-12-28 21:04:28 +11:00
return True
2015-12-25 07:07:00 +11:00
def authenticate(self):
2016-09-03 01:40:36 +10:00
log.info('Authenticating user')
2016-02-17 19:13:37 +11:00
dialog = xbmcgui.Dialog()
2016-03-10 01:37:27 +11:00
# Give attempts at entering password / selecting user
if self.retry >= 2:
2016-09-03 01:40:36 +10:00
log.error("Too many retries to login.")
2016-05-31 16:06:42 +10:00
window('plex_serverStatus', value="Stop")
2016-03-10 01:37:27 +11:00
dialog.ok(lang(33001),
lang(39023))
xbmc.executebuiltin(
'Addon.OpenSettings(plugin.video.plexkodiconnect)')
return False
2016-03-10 01:37:27 +11:00
2015-12-25 07:07:00 +11:00
# Get /profile/addon_data
2016-09-03 01:40:36 +10:00
addondir = tryDecode(xbmc.translatePath(
self.addon.getAddonInfo('profile')))
2015-12-25 07:07:00 +11:00
hasSettings = xbmcvfs.exists("%ssettings.xml" % addondir)
# If there's no settings.xml
if not hasSettings:
2016-09-03 01:40:36 +10:00
log.error("Error, no settings.xml found.")
2015-12-25 07:07:00 +11:00
self.auth = False
2016-03-10 01:37:27 +11:00
return False
2016-03-04 23:34:30 +11:00
server = self.getServer()
2016-03-10 01:37:27 +11:00
# If there is no server we can connect to
2016-03-04 23:34:30 +11:00
if not server:
2016-09-03 01:40:36 +10:00
log.info("Missing server information.")
2015-12-25 07:07:00 +11:00
self.auth = False
2016-03-10 01:37:27 +11:00
return False
# If there is a username in the settings, try authenticating
username = settings('username')
userId = settings('userid')
usertoken = settings('accessToken')
enforceLogin = settings('enforceUserLogin')
# Found a user in the settings, try to authenticate
if username and enforceLogin == 'false':
2016-09-03 01:40:36 +10:00
log.info('Trying to authenticate with old settings')
2016-03-10 01:37:27 +11:00
if self.loadCurrUser(username,
userId,
usertoken,
authenticated=False):
# SUCCESS: loaded a user from the settings
return True
2015-12-25 07:07:00 +11:00
else:
2016-03-10 01:37:27 +11:00
# Failed to use the settings - delete them!
2016-09-03 01:40:36 +10:00
log.info("Failed to use settings credentials. Deleting them")
2016-03-10 01:37:27 +11:00
settings('username', value='')
settings('userid', value='')
settings('accessToken', value='')
2015-12-25 07:07:00 +11:00
2016-03-04 23:34:30 +11:00
plx = PlexAPI.PlexAPI()
2016-03-10 01:37:27 +11:00
# Could not use settings - try to get Plex user list from plex.tv
plextoken = settings('plexToken')
if plextoken:
2016-09-03 01:40:36 +10:00
log.info("Trying to connect to plex.tv to get a user list")
2016-03-10 01:37:27 +11:00
userInfo = plx.ChoosePlexHomeUser(plextoken)
if userInfo is False:
# FAILURE: Something went wrong, try again
2016-03-04 23:34:30 +11:00
self.auth = True
2016-03-10 01:37:27 +11:00
self.retry += 1
return False
username = userInfo['username']
userId = userInfo['userid']
usertoken = userInfo['token']
2015-12-25 07:07:00 +11:00
else:
2016-09-03 01:40:36 +10:00
log.info("Trying to authenticate without a token")
2016-03-10 01:37:27 +11:00
username = ''
userId = ''
usertoken = ''
2016-03-10 01:37:27 +11:00
if self.loadCurrUser(username, userId, usertoken, authenticated=False):
# SUCCESS: loaded a user from the settings
return True
else:
# FAILUR: Something went wrong, try again
self.auth = True
self.retry += 1
2016-03-10 01:37:27 +11:00
return False
2015-12-25 07:07:00 +11:00
def resetClient(self):
2016-09-03 01:40:36 +10:00
log.info("Reset UserClient authentication.")
2016-03-11 02:02:46 +11:00
self.doUtils.stopSession()
window('plex_authenticated', clear=True)
2016-03-11 02:02:46 +11:00
window('pms_token', clear=True)
window('plex_token', clear=True)
window('pms_server', clear=True)
window('plex_machineIdentifier', clear=True)
window('plex_servername', clear=True)
window('currUserId', clear=True)
2016-03-10 01:37:27 +11:00
window('plex_username', clear=True)
window('plex_restricteduser', clear=True)
2016-01-13 03:23:55 +11:00
2016-03-10 01:37:27 +11:00
settings('username', value='')
settings('userid', value='')
settings('accessToken', value='')
# Reset token in downloads
self.doUtils.setToken('')
self.doUtils.setUserId('')
self.doUtils.setUsername('')
self.currToken = None
2015-12-25 07:07:00 +11:00
self.auth = True
self.currUser = None
2016-03-04 01:28:44 +11:00
self.currUserId = None
2016-01-13 03:23:55 +11:00
2016-03-10 01:37:27 +11:00
self.retry = 0
2015-12-25 07:07:00 +11:00
def run(self):
2016-09-03 01:40:36 +10:00
log.info("----===## Starting UserClient ##===----")
2016-01-27 01:13:03 +11:00
while not self.threadStopped():
while self.threadSuspended():
if self.threadStopped():
break
2016-03-08 21:20:11 +11:00
xbmc.sleep(1000)
2015-12-25 07:07:00 +11:00
2016-05-31 16:06:42 +10:00
status = window('plex_serverStatus')
2016-03-11 02:02:46 +11:00
if status == "Stop":
xbmc.sleep(500)
continue
# Verify the connection status to server
elif status == "restricted":
# Parental control is restricting access
self.HasAccess = False
elif status == "401":
# Unauthorized access, revoke token
2016-05-31 16:06:42 +10:00
window('plex_serverStatus', value="Auth")
2016-03-11 02:02:46 +11:00
self.resetClient()
xbmc.sleep(2000)
2015-12-25 07:07:00 +11:00
if self.auth and (self.currUser is None):
# Try to authenticate user
if not status or status == "Auth":
# Set auth flag because we no longer need
# to authenticate the user
self.auth = False
2016-03-10 01:37:27 +11:00
if self.authenticate():
2016-03-10 01:53:46 +11:00
# Successfully authenticated and loaded a user
2016-09-03 01:40:36 +10:00
log.info("Successfully authenticated!")
log.info("Current user: %s" % self.currUser)
log.info("Current userId: %s" % self.currUserId)
2016-03-10 01:37:27 +11:00
self.retry = 0
window('suspend_LibraryThread', clear=True)
2016-05-31 16:06:42 +10:00
window('plex_serverStatus', clear=True)
2015-12-25 07:07:00 +11:00
if not self.auth and (self.currUser is None):
2016-03-04 23:34:30 +11:00
# Loop if no server found
2015-12-25 07:07:00 +11:00
server = self.getServer()
2016-02-20 06:03:06 +11:00
2015-12-25 07:07:00 +11:00
# The status Stop is for when user cancelled password dialog.
2016-03-11 02:02:46 +11:00
# Or retried too many times
2016-03-04 23:34:30 +11:00
if server and status != "Stop":
2015-12-25 07:07:00 +11:00
# Only if there's information found to login
2016-09-03 01:40:36 +10:00
log.info("Server found: %s" % server)
2015-12-25 07:07:00 +11:00
self.auth = True
# Minimize CPU load
xbmc.sleep(100)
2016-01-27 01:13:03 +11:00
self.doUtils.stopSession()
2016-09-03 01:40:36 +10:00
log.info("##===---- UserClient Stopped ----===##")