PlexKodiConnect/resources/lib/initialsetup.py

503 lines
20 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
2016-02-20 06:03:06 +11:00
###############################################################################
2016-08-31 00:13:13 +10:00
import logging
import xbmc
import xbmcgui
from utils import settings, window, language as lang, tryEncode, \
advancedsettings_xml
import downloadutils
2016-12-28 03:33:52 +11:00
from userclient import UserClient
2017-01-25 02:53:50 +11:00
from PlexAPI import PlexAPI
from PlexFunctions import GetMachineIdentifier, get_PMS_settings
import state
2015-12-27 22:14:06 +11:00
2016-02-20 06:03:06 +11:00
###############################################################################
2016-08-31 00:13:13 +10:00
log = logging.getLogger("PLEX."+__name__)
###############################################################################
class InitialSetup():
def __init__(self):
2016-08-31 00:13:13 +10:00
log.debug('Entering initialsetup class')
self.doUtils = downloadutils.DownloadUtils().downloadUrl
2017-01-25 02:53:50 +11:00
self.plx = PlexAPI()
2016-05-25 04:43:52 +10:00
self.dialog = xbmcgui.Dialog()
2016-12-28 03:33:52 +11:00
self.server = UserClient().getServer()
2016-08-31 00:13:13 +10:00
self.serverid = settings('plex_machineIdentifier')
2016-05-25 04:43:52 +10:00
# Get Plex credentials from settings file, if they exist
plexdict = self.plx.GetPlexLoginFromSettings()
self.myplexlogin = plexdict['myplexlogin'] == 'true'
self.plexLogin = plexdict['plexLogin']
self.plexToken = plexdict['plexToken']
self.plexid = plexdict['plexid']
# Token for the PMS, not plex.tv
self.pms_token = settings('accessToken')
2016-05-25 04:43:52 +10:00
if self.plexToken:
2016-08-31 00:13:13 +10:00
log.debug('Found a plex.tv token in the settings')
2016-05-25 04:43:52 +10:00
def PlexTVSignIn(self):
2016-05-25 03:00:39 +10:00
"""
2016-05-25 04:43:52 +10:00
Signs (freshly) in to plex.tv (will be saved to file settings)
Returns True if successful, or False if not
2016-05-25 03:00:39 +10:00
"""
2016-05-25 04:43:52 +10:00
result = self.plx.PlexTvSignInWithPin()
if result:
self.plexLogin = result['username']
self.plexToken = result['token']
self.plexid = result['plexid']
return True
return False
2016-05-25 03:00:39 +10:00
2016-05-25 04:43:52 +10:00
def CheckPlexTVSignIn(self):
2016-01-15 00:47:34 +11:00
"""
2016-05-25 04:43:52 +10:00
Checks existing connection to plex.tv. If not, triggers sign in
2016-05-30 00:52:00 +10:00
Returns True if signed in, False otherwise
2016-01-15 00:47:34 +11:00
"""
2016-05-30 00:52:00 +10:00
answer = True
chk = self.plx.CheckConnection('plex.tv', token=self.plexToken)
2016-05-25 04:43:52 +10:00
if chk in (401, 403):
# HTTP Error: unauthorized. Token is no longer valid
2016-08-31 00:13:13 +10:00
log.info('plex.tv connection returned HTTP %s' % str(chk))
2016-05-25 04:43:52 +10:00
# Delete token in the settings
2016-08-31 00:13:13 +10:00
settings('plexToken', value='')
settings('plexLogin', value='')
2016-05-25 04:43:52 +10:00
# Could not login, please try again
self.dialog.ok(lang(29999), lang(39009))
2016-05-30 00:52:00 +10:00
answer = self.PlexTVSignIn()
2016-05-25 04:43:52 +10:00
elif chk is False or chk >= 400:
# Problems connecting to plex.tv. Network or internet issue?
2016-08-31 00:13:13 +10:00
log.info('Problems connecting to plex.tv; connection returned '
'HTTP %s' % str(chk))
self.dialog.ok(lang(29999), lang(39010))
2016-05-30 00:52:00 +10:00
answer = False
2016-05-25 04:43:52 +10:00
else:
2016-08-31 00:13:13 +10:00
log.info('plex.tv connection with token successful')
settings('plex_status', value=lang(39227))
2016-05-25 04:43:52 +10:00
# Refresh the info from Plex.tv
xml = self.doUtils('https://plex.tv/users/account',
authenticate=False,
headerOptions={'X-Plex-Token': self.plexToken})
try:
self.plexLogin = xml.attrib['title']
except (AttributeError, KeyError):
2016-08-31 00:13:13 +10:00
log.error('Failed to update Plex info from plex.tv')
2016-05-25 04:43:52 +10:00
else:
2016-08-31 00:13:13 +10:00
settings('plexLogin', value=self.plexLogin)
2016-05-25 04:43:52 +10:00
home = 'true' if xml.attrib.get('home') == '1' else 'false'
2016-08-31 00:13:13 +10:00
settings('plexhome', value=home)
settings('plexAvatar', value=xml.attrib.get('thumb'))
settings('plexHomeSize', value=xml.attrib.get('homeSize', '1'))
log.info('Updated Plex info from plex.tv')
2016-05-30 00:52:00 +10:00
return answer
2016-03-04 23:34:30 +11:00
2016-05-25 04:43:52 +10:00
def CheckPMS(self):
"""
Check the PMS that was set in file settings.
Will return False if we need to reconnect, because:
PMS could not be reached (no matter the authorization)
machineIdentifier did not match
2015-12-27 22:14:06 +11:00
2016-05-25 04:43:52 +10:00
Will also set the PMS machineIdentifier in the file settings if it was
not set before
"""
answer = True
2016-08-31 00:13:13 +10:00
chk = self.plx.CheckConnection(self.server, verifySSL=False)
2016-05-25 04:43:52 +10:00
if chk is False:
2016-08-31 00:13:13 +10:00
log.warn('Could not reach PMS %s' % self.server)
2016-05-25 04:43:52 +10:00
answer = False
if answer is True and not self.serverid:
2016-08-31 00:13:13 +10:00
log.info('No PMS machineIdentifier found for %s. Trying to '
'get the PMS unique ID' % self.server)
2016-05-25 04:43:52 +10:00
self.serverid = GetMachineIdentifier(self.server)
if self.serverid is None:
2016-08-31 00:13:13 +10:00
log.warn('Could not retrieve machineIdentifier')
2016-05-25 04:43:52 +10:00
answer = False
2016-03-10 01:37:27 +11:00
else:
2016-08-31 00:13:13 +10:00
settings('plex_machineIdentifier', value=self.serverid)
2016-05-25 04:43:52 +10:00
elif answer is True:
tempServerid = GetMachineIdentifier(self.server)
if tempServerid != self.serverid:
2016-08-31 00:13:13 +10:00
log.warn('The current PMS %s was expected to have a '
'unique machineIdentifier of %s. But we got '
'%s. Pick a new server to be sure'
% (self.server, self.serverid, tempServerid))
2016-05-25 04:43:52 +10:00
answer = False
return answer
2016-03-11 02:02:46 +11:00
def _getServerList(self):
2016-05-30 00:52:00 +10:00
"""
Returns a list of servers from GDM and possibly plex.tv
2016-05-25 04:43:52 +10:00
"""
2016-05-30 00:52:00 +10:00
self.plx.discoverPMS(xbmc.getIPAddress(),
plexToken=self.plexToken)
serverlist = self.plx.returnServerList(self.plx.g_PMS)
2016-08-31 00:13:13 +10:00
log.debug('PMS serverlist: %s' % serverlist)
2016-05-30 00:52:00 +10:00
return serverlist
def _checkServerCon(self, server):
2016-05-30 00:52:00 +10:00
"""
Checks for server's connectivity. Returns CheckConnection result
"""
# Re-direct via plex if remote - will lead to the correct SSL
# certificate
if server['local'] == '1':
url = '%s://%s:%s' \
% (server['scheme'], server['ip'], server['port'])
# Deactive SSL verification if the server is local!
verifySSL = False
else:
url = server['baseURL']
verifySSL = True
2016-05-30 00:52:00 +10:00
chk = self.plx.CheckConnection(url,
token=server['accesstoken'],
verifySSL=verifySSL)
return chk
def PickPMS(self, showDialog=False):
"""
Searches for PMS in local Lan and optionally (if self.plexToken set)
also on plex.tv
showDialog=True: let the user pick one
showDialog=False: automatically pick PMS based on machineIdentifier
2015-12-27 22:14:06 +11:00
2016-05-25 04:43:52 +10:00
Returns the picked PMS' detail as a dict:
{
'name': friendlyName, the Plex server's name
'address': ip:port
'ip': ip, without http/https
'port': port
'scheme': 'http'/'https', nice for checking for secure connections
'local': '1'/'0', Is the server a local server?
'owned': '1'/'0', Is the server owned by the user?
'machineIdentifier': id, Plex server machine identifier
'accesstoken': token Access token to this server
'baseURL': baseURL scheme://ip:port
'ownername' Plex username of PMS owner
}
or None if unsuccessful
"""
2016-05-30 00:52:00 +10:00
server = None
# If no server is set, let user choose one
if not self.server or not self.serverid:
showDialog = True
if showDialog is True:
server = self._UserPickPMS()
2016-05-30 00:52:00 +10:00
else:
server = self._AutoPickPMS()
if server is not None:
self._write_PMS_settings(server['baseURL'], server['accesstoken'])
2016-05-30 00:52:00 +10:00
return server
def _write_PMS_settings(self, url, token):
"""
Sets certain settings for server by asking for the PMS' settings
Call with url: scheme://ip:port
"""
xml = get_PMS_settings(url, token)
try:
xml.attrib
except AttributeError:
log.error('Could not get PMS settings for %s' % url)
return
for entry in xml:
if entry.attrib.get('id', '') == 'allowMediaDeletion':
settings('plex_allows_mediaDeletion',
value=entry.attrib.get('value', 'true'))
window('plex_allows_mediaDeletion',
value=entry.attrib.get('value', 'true'))
def _AutoPickPMS(self):
2016-05-30 00:52:00 +10:00
"""
Will try to pick PMS based on machineIdentifier saved in file settings
but only once
Returns server or None if unsuccessful
"""
2016-03-08 03:11:54 +11:00
httpsUpdated = False
2016-05-30 00:52:00 +10:00
checkedPlexTV = False
server = None
2016-01-30 06:07:21 +11:00
while True:
2016-03-08 03:11:54 +11:00
if httpsUpdated is False:
serverlist = self._getServerList()
2016-05-30 00:52:00 +10:00
for item in serverlist:
if item.get('machineIdentifier') == self.serverid:
server = item
if server is None:
2016-08-31 00:13:13 +10:00
name = settings('plex_servername')
log.warn('The PMS you have used before with a unique '
'machineIdentifier of %s and name %s is '
'offline' % (self.serverid, name))
2016-05-30 00:52:00 +10:00
return
chk = self._checkServerCon(server)
2016-05-30 00:52:00 +10:00
if chk == 504 and httpsUpdated is False:
# Not able to use HTTP, try HTTPs for now
server['scheme'] = 'https'
httpsUpdated = True
continue
if chk == 401:
2016-08-31 00:13:13 +10:00
log.warn('Not yet authorized for Plex server %s'
% server['name'])
2016-05-30 00:52:00 +10:00
if self.CheckPlexTVSignIn() is True:
if checkedPlexTV is False:
# Try again
checkedPlexTV = True
httpsUpdated = False
continue
else:
2016-08-31 00:13:13 +10:00
log.warn('Not authorized even though we are signed '
' in to plex.tv correctly')
self.dialog.ok(lang(29999), '%s %s'
2017-02-27 01:21:55 +11:00
% (lang(39214),
tryEncode(server['name'])))
2016-05-30 00:52:00 +10:00
return
else:
return
# Problems connecting
elif chk >= 400 or chk is False:
2016-08-31 00:13:13 +10:00
log.warn('Problems connecting to server %s. chk is %s'
% (server['name'], chk))
2016-05-30 00:52:00 +10:00
return
2016-08-31 00:13:13 +10:00
log.info('We found a server to automatically connect to: %s'
% server['name'])
2016-05-30 00:52:00 +10:00
return server
def _UserPickPMS(self):
2016-05-30 00:52:00 +10:00
"""
Lets user pick his/her PMS from a list
Returns server or None if unsuccessful
"""
httpsUpdated = False
while True:
if httpsUpdated is False:
serverlist = self._getServerList()
2016-03-08 03:11:54 +11:00
# Exit if no servers found
if len(serverlist) == 0:
2016-08-31 00:13:13 +10:00
log.warn('No plex media servers found!')
self.dialog.ok(lang(29999), lang(39011))
2016-05-30 00:52:00 +10:00
return
2016-05-25 04:43:52 +10:00
# Get a nicer list
dialoglist = []
2016-03-08 03:11:54 +11:00
for server in serverlist:
if server['local'] == '1':
2016-05-30 00:52:00 +10:00
# server is in the same network as client.
# Add"local"
2016-08-31 00:13:13 +10:00
msg = lang(39022)
else:
# Add 'remote'
2016-08-31 00:13:13 +10:00
msg = lang(39054)
if server.get('ownername'):
# Display username if its not our PMS
dialoglist.append('%s (%s, %s)'
% (server['name'],
server['ownername'],
msg))
2016-03-08 03:11:54 +11:00
else:
dialoglist.append('%s (%s)'
2016-05-25 04:43:52 +10:00
% (server['name'], msg))
# Let user pick server from a list
2016-08-31 00:13:13 +10:00
resp = self.dialog.select(lang(39012), dialoglist)
2017-02-01 19:35:39 +11:00
if resp == -1:
# User cancelled
return
2016-05-30 00:52:00 +10:00
2015-12-27 22:14:06 +11:00
server = serverlist[resp]
chk = self._checkServerCon(server)
2016-03-08 03:11:54 +11:00
if chk == 504 and httpsUpdated is False:
# Not able to use HTTP, try HTTPs for now
serverlist[resp]['scheme'] = 'https'
httpsUpdated = True
continue
httpsUpdated = False
2015-12-27 22:14:06 +11:00
if chk == 401:
2016-08-31 00:13:13 +10:00
log.warn('Not yet authorized for Plex server %s'
% server['name'])
2016-03-04 23:34:30 +11:00
# Please sign in to plex.tv
self.dialog.ok(lang(29999),
2016-08-31 00:13:13 +10:00
lang(39013) + server['name'],
lang(39014))
2016-05-25 04:43:52 +10:00
if self.PlexTVSignIn() is False:
2016-01-14 20:20:19 +11:00
# Exit while loop if user cancels
2016-05-30 00:52:00 +10:00
return
2015-12-27 22:14:06 +11:00
# Problems connecting
2016-01-15 00:47:34 +11:00
elif chk >= 400 or chk is False:
2016-03-04 23:34:30 +11:00
# Problems connecting to server. Pick another server?
answ = self.dialog.yesno(lang(29999),
2016-08-31 00:13:13 +10:00
lang(39015))
2015-12-27 22:14:06 +11:00
# Exit while loop if user chooses No
2016-05-25 04:43:52 +10:00
if not answ:
2016-05-30 00:52:00 +10:00
return
2015-12-27 22:14:06 +11:00
# Otherwise: connection worked!
else:
2016-05-30 00:52:00 +10:00
return server
2016-05-25 04:43:52 +10:00
def WritePMStoSettings(self, server):
"""
Saves server to file settings. server is a dict of the form:
{
'name': friendlyName, the Plex server's name
'address': ip:port
'ip': ip, without http/https
'port': port
'scheme': 'http'/'https', nice for checking for secure connections
'local': '1'/'0', Is the server a local server?
'owned': '1'/'0', Is the server owned by the user?
'machineIdentifier': id, Plex server machine identifier
'accesstoken': token Access token to this server
'baseURL': baseURL scheme://ip:port
'ownername' Plex username of PMS owner
}
"""
2016-08-31 00:13:13 +10:00
settings('plex_machineIdentifier', server['machineIdentifier'])
settings('plex_servername', server['name'])
settings('plex_serverowned',
'true' if server['owned'] == '1'
else 'false')
2016-05-25 04:43:52 +10:00
# Careful to distinguish local from remote PMS
2016-03-09 00:50:43 +11:00
if server['local'] == '1':
scheme = server['scheme']
2016-08-31 00:13:13 +10:00
settings('ipaddress', server['ip'])
settings('port', server['port'])
log.debug("Setting SSL verify to false, because server is "
"local")
settings('sslverify', 'false')
2016-03-09 00:50:43 +11:00
else:
baseURL = server['baseURL'].split(':')
scheme = baseURL[0]
2016-08-31 00:13:13 +10:00
settings('ipaddress', baseURL[1].replace('//', ''))
settings('port', baseURL[2])
log.debug("Setting SSL verify to true, because server is not "
"local")
settings('sslverify', 'true')
2016-03-09 00:50:43 +11:00
if scheme == 'https':
2016-08-31 00:13:13 +10:00
settings('https', 'true')
else:
2016-08-31 00:13:13 +10:00
settings('https', 'false')
2016-05-25 04:43:52 +10:00
# And finally do some logging
2016-08-31 00:13:13 +10:00
log.debug("Writing to Kodi user settings file")
log.debug("PMS machineIdentifier: %s, ip: %s, port: %s, https: %s "
% (server['machineIdentifier'], server['ip'],
2016-09-05 00:57:06 +10:00
server['port'], server['scheme']))
2016-05-25 04:43:52 +10:00
2016-05-30 00:52:00 +10:00
def setup(self):
2016-05-25 04:43:52 +10:00
"""
Initial setup. Run once upon startup.
2016-05-25 04:43:52 +10:00
Check server, user, direct paths, music, direct stream if not direct
path.
"""
2016-08-31 00:13:13 +10:00
log.info("Initial setup called.")
2016-05-25 04:43:52 +10:00
dialog = self.dialog
# Get current Kodi video cache setting
cache, _ = advancedsettings_xml(['cache', 'memorysize'])
if cache is None:
# Kodi default cache
cache = '20971520'
else:
cache = str(cache.text)
log.info('Current Kodi video memory cache in bytes: %s' % cache)
settings('kodi_video_cache', value=cache)
2016-05-25 04:43:52 +10:00
# Optionally sign into plex.tv. Will not be called on very first run
# as plexToken will be ''
settings('plex_status', value=lang(39226))
2016-05-25 04:43:52 +10:00
if self.plexToken and self.myplexlogin:
self.CheckPlexTVSignIn()
# If a Plex server IP has already been set
# return only if the right machine identifier is found
if self.server:
2016-08-31 00:13:13 +10:00
log.info("PMS is already set: %s. Checking now..." % self.server)
2017-05-01 01:35:51 +10:00
if self.CheckPMS():
2016-08-31 00:13:13 +10:00
log.info("Using PMS %s with machineIdentifier %s"
% (self.server, self.serverid))
self._write_PMS_settings(self.server, self.pms_token)
2016-05-25 04:43:52 +10:00
return
# If not already retrieved myplex info, optionally let user sign in
# to plex.tv. This DOES get called on very first install run
if not self.plexToken and self.myplexlogin:
self.PlexTVSignIn()
server = self.PickPMS()
2016-05-30 00:52:00 +10:00
if server is not None:
# Write our chosen server to Kodi settings file
self.WritePMStoSettings(server)
2016-03-04 23:34:30 +11:00
2016-05-30 00:52:00 +10:00
# User already answered the installation questions
2016-08-31 00:13:13 +10:00
if settings('InstallQuestionsAnswered') == 'true':
2016-05-30 00:52:00 +10:00
return
2016-05-25 04:43:52 +10:00
# Additional settings where the user needs to choose
# Direct paths (\\NAS\mymovie.mkv) or addon (http)?
2016-09-05 01:10:38 +10:00
goToSettings = False
if dialog.yesno(lang(29999),
2016-08-31 00:13:13 +10:00
lang(39027),
lang(39028),
nolabel="Addon (Default)",
yeslabel="Native (Direct Paths)"):
2016-08-31 00:13:13 +10:00
log.debug("User opted to use direct paths.")
settings('useDirectPaths', value="1")
2017-05-17 23:42:12 +10:00
state.DIRECT_PATHS = True
# Are you on a system where you would like to replace paths
# \\NAS\mymovie.mkv with smb://NAS/mymovie.mkv? (e.g. Windows)
if dialog.yesno(heading=lang(29999), line1=lang(39033)):
2016-08-31 00:13:13 +10:00
log.debug("User chose to replace paths with smb")
else:
2016-08-31 00:13:13 +10:00
settings('replaceSMB', value="false")
# complete replace all original Plex library paths with custom SMB
if dialog.yesno(heading=lang(29999), line1=lang(39043)):
2016-08-31 00:13:13 +10:00
log.debug("User chose custom smb paths")
settings('remapSMB', value="true")
# Please enter your custom smb paths in the settings under
# "Sync Options" and then restart Kodi
dialog.ok(heading=lang(29999), line1=lang(39044))
goToSettings = True
# Go to network credentials?
if dialog.yesno(heading=lang(29999),
2016-08-31 00:13:13 +10:00
line1=lang(39029),
line2=lang(39030)):
log.debug("Presenting network credentials dialog.")
from utils import passwordsXML
passwordsXML()
# Disable Plex music?
if dialog.yesno(heading=lang(29999), line1=lang(39016)):
2016-08-31 00:13:13 +10:00
log.debug("User opted to disable Plex music library.")
settings('enableMusic', value="false")
# Download additional art from FanArtTV
if dialog.yesno(heading=lang(29999), line1=lang(39061)):
2016-08-31 00:13:13 +10:00
log.debug("User opted to use FanArtTV")
settings('FanartTV', value="true")
2016-12-21 02:13:19 +11:00
# If you use several Plex libraries of one kind, e.g. "Kids Movies" and
# "Parents Movies", be sure to check https://goo.gl/JFtQV9
dialog.ok(heading=lang(29999), line1=lang(39076))
# Need to tell about our image source for collections: themoviedb.org
dialog.ok(heading=lang(29999), line1=lang(39717))
2016-05-30 00:52:00 +10:00
# Make sure that we only ask these questions upon first installation
2016-08-31 00:13:13 +10:00
settings('InstallQuestionsAnswered', value='true')
2016-05-30 00:52:00 +10:00
if goToSettings is False:
# Open Settings page now? You will need to restart!
goToSettings = dialog.yesno(heading=lang(29999), line1=lang(39017))
if goToSettings:
state.PMS_STATUS = 'Stop'
xbmc.executebuiltin(
'Addon.OpenSettings(plugin.video.plexkodiconnect)')