PlexKodiConnect/resources/lib/initialsetup.py

710 lines
31 KiB
Python
Raw Permalink Normal View History

#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import absolute_import, division, unicode_literals
2017-12-10 00:35:08 +11:00
from logging import getLogger
2018-11-19 00:59:17 +11:00
from xbmc import executebuiltin
2018-06-22 03:24:37 +10:00
from . import utils
2018-10-14 05:28:55 +11:00
from .utils import etree
from . import path_ops
2018-06-22 03:24:37 +10:00
from . import migration
from .downloadutils import DownloadUtils as DU, exceptions
2018-06-22 03:24:37 +10:00
from . import plex_functions as PF
from . import plex_tv
from . import json_rpc as js
2018-11-19 00:59:17 +11:00
from . import app
2018-06-22 03:24:37 +10:00
from . import variables as v
2015-12-27 22:14:06 +11:00
2016-02-20 06:03:06 +11:00
###############################################################################
2018-06-22 03:24:37 +10:00
LOG = getLogger('PLEX.initialsetup')
2016-08-31 00:13:13 +10:00
###############################################################################
if not path_ops.exists(v.EXTERNAL_SUBTITLE_TEMP_PATH):
path_ops.makedirs(v.EXTERNAL_SUBTITLE_TEMP_PATH)
2018-02-11 03:59:20 +11:00
class InitialSetup(object):
"""
Will load Plex PMS settings (e.g. address) and token
Will ask the user initial questions on first PKC boot
"""
def __init__(self):
LOG.debug('Entering initialsetup class')
2016-05-25 04:43:52 +10:00
# Get Plex credentials from settings file, if they exist
2018-02-11 03:59:20 +11:00
plexdict = PF.GetPlexLoginFromSettings()
self.plex_login = plexdict['plexLogin']
self.plex_login_id = plexdict['plexid']
2018-02-11 03:59:20 +11:00
self.plex_token = plexdict['plexToken']
# Token for the PMS, not plex.tv
2018-06-22 03:24:37 +10:00
self.pms_token = utils.settings('accessToken')
2018-02-11 03:59:20 +11:00
if self.plex_token:
LOG.debug('Found a plex.tv token in the settings')
2016-05-25 04:43:52 +10:00
def write_credentials_to_settings(self):
"""
Writes Plex username, token to plex.tv and Plex id to PKC settings
"""
utils.settings('username', value=self.plex_login or '')
utils.settings('userid', value=self.plex_login_id or '')
utils.settings('plexToken', value=self.plex_token or '')
@staticmethod
def save_pms_settings(url, token):
"""
Sets certain settings for server by asking for the PMS' settings
Call with url: scheme://ip:port
"""
xml = PF.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':
value = 'true' if entry.get('value', '1') == '1' else 'false'
utils.settings('plex_allows_mediaDeletion', value=value)
utils.window('plex_allows_mediaDeletion', value=value)
2019-02-08 23:52:33 +11:00
@staticmethod
def enter_new_pms_address():
LOG.info('Start getting manual PMS address and port')
2018-11-19 00:59:17 +11:00
# "Enter your Plex Media Server's IP or URL. Examples are:"
utils.messageDialog(utils.lang(29999),
'%s\n%s\n%s' % (utils.lang(39215),
'192.168.1.2',
'plex.myServer.org'))
# "Enter PMS IP or URL"
address = utils.dialog('input', utils.lang(39083))
if not address:
2018-11-19 00:59:17 +11:00
return False
port = utils.dialog('input', utils.lang(39084), '32400', type='{numeric}')
if not port:
2018-11-19 00:59:17 +11:00
return False
url = '%s:%s' % (address, port)
2019-10-05 20:04:48 +10:00
# "Use HTTPS (SSL) connections? Answer should probably be yes."
2018-11-19 00:59:17 +11:00
https = utils.yesno_dialog(utils.lang(29999), utils.lang(39217))
if https:
url = 'https://%s' % url
else:
url = 'http://%s' % url
https = 'true' if https else 'false'
# Try to connect first
error = False
try:
machine_identifier = PF.GetMachineIdentifier(url)
except exceptions.SSLError:
LOG.error('SSL cert error contacting %s', url)
# "SSL certificate failed to validate. Please check {0}
# for solutions."
utils.messageDialog(utils.lang(29999),
utils.lang(30503).format('github.com/croneter/PlexKodiConnect/issues'))
return
except Exception:
error = True
if error or machine_identifier is None:
LOG.error('Could not even get a machineIdentifier for %s', url)
# "Server is unreachable"
utils.messageDialog(utils.lang(29999), utils.lang(33002))
return
# Let's use the main account's token, not managed user token
token = utils.settings('plexToken')
xml = PF.pms_root(url, token)
if xml == 401:
LOG.error('Not yet authorized for %s', url)
# "User is unauthorized for server {0}",
# "Please sign in to plex.tv."
utils.messageDialog(utils.lang(29999),
'%s. %s' % (utils.lang(33010).format(address),
utils.lang(39014)))
return
try:
xml[0].attrib
except (IndexError, TypeError, AttributeError):
LOG.error('Could not get PMS root directory for %s', url)
# "Error contacting PMS"
utils.messageDialog(utils.lang(29999), utils.lang(39218))
return
pms = {
'baseURL': url,
'ip': address,
# Assume PMS is not local so we're not resetting verifyssl
'local': False,
'machineIdentifier': xml.get('machineIdentifier'),
'name': xml.get('friendlyName'),
# Assume that we own this PMS - no easy way to check
'owned': True,
'platform': xml.get('platform'),
'port': port,
# 'relay': True,
'scheme': 'https' if https else 'http',
'token': token,
'version': xml.get('version')
}
return pms
2018-11-19 00:59:17 +11:00
2018-02-11 03:59:20 +11:00
def plex_tv_sign_in(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
"""
user = plex_tv.sign_in_with_pin()
2018-09-11 04:53:46 +10:00
if user:
self.plex_login = user.username
self.plex_token = user.authToken
self.plex_login_id = user.id
2016-05-25 04:43:52 +10:00
return True
return False
2016-05-25 03:00:39 +10:00
2018-02-11 03:59:20 +11:00
def check_plex_tv_sign_in(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
2018-02-11 03:59:20 +11:00
chk = PF.check_connection('plex.tv', token=self.plex_token)
2016-05-25 04:43:52 +10:00
if chk in (401, 403):
# HTTP Error: unauthorized. Token is no longer valid
LOG.info('plex.tv connection returned HTTP %s', str(chk))
2016-05-25 04:43:52 +10:00
# Delete token in the settings
2018-06-22 03:24:37 +10:00
utils.settings('plexToken', value='')
utils.settings('plexLogin', value='')
2016-05-25 04:43:52 +10:00
# Could not login, please try again
utils.messageDialog(utils.lang(29999), utils.lang(39009))
2018-02-11 03:59:20 +11:00
answer = self.plex_tv_sign_in()
2016-05-25 04:43:52 +10:00
elif chk is False or chk >= 400:
# Problems connecting to plex.tv. Network or internet issue?
LOG.info('Problems connecting to plex.tv; connection returned '
'HTTP %s', str(chk))
utils.messageDialog(utils.lang(29999), utils.lang(39010))
2016-05-30 00:52:00 +10:00
answer = False
2016-05-25 04:43:52 +10:00
else:
LOG.info('plex.tv connection with token successful')
2018-06-22 03:24:37 +10:00
utils.settings('plex_status', value=utils.lang(39227))
2016-05-25 04:43:52 +10:00
# Refresh the info from Plex.tv
xml = DU().downloadUrl('https://plex.tv/users/account',
authenticate=False,
2018-02-11 03:59:20 +11:00
headerOptions={'X-Plex-Token': self.plex_token})
2016-05-25 04:43:52 +10:00
try:
2018-02-11 03:59:20 +11:00
self.plex_login = xml.attrib['title']
2016-05-25 04:43:52 +10:00
except (AttributeError, KeyError):
LOG.error('Failed to update Plex info from plex.tv')
2016-05-25 04:43:52 +10:00
else:
2018-06-22 03:24:37 +10:00
utils.settings('plexLogin', value=self.plex_login)
utils.settings('plexAvatar', value=xml.attrib.get('thumb'))
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
2019-02-08 23:52:33 +11:00
@staticmethod
def check_existing_pms():
2016-05-25 04:43:52 +10:00
"""
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
chk = PF.check_connection(app.CONN.server,
verifySSL=True if v.KODIVERSION >= 18 else False)
2016-05-25 04:43:52 +10:00
if chk is False:
2018-11-19 00:59:17 +11:00
LOG.warn('Could not reach PMS %s', app.CONN.server)
2016-05-25 04:43:52 +10:00
answer = False
2018-11-19 00:59:17 +11:00
if answer is True and not app.CONN.machine_identifier:
LOG.info('No PMS machineIdentifier found for %s. Trying to '
2018-11-19 00:59:17 +11:00
'get the PMS unique ID', app.CONN.server)
app.CONN.machine_identifier = PF.GetMachineIdentifier(app.CONN.server)
if app.CONN.machine_identifier is None:
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:
2018-11-19 00:59:17 +11:00
utils.settings('plex_machineIdentifier', value=app.CONN.machine_identifier)
2016-05-25 04:43:52 +10:00
elif answer is True:
2018-11-19 00:59:17 +11:00
temp_server_id = PF.GetMachineIdentifier(app.CONN.server)
if temp_server_id != app.CONN.machine_identifier:
LOG.warn('The current PMS %s was expected to have a '
2016-08-31 00:13:13 +10:00
'unique machineIdentifier of %s. But we got '
'%s. Pick a new server to be sure',
2018-11-19 00:59:17 +11:00
app.CONN.server, app.CONN.machine_identifier, temp_server_id)
2016-05-25 04:43:52 +10:00
answer = False
return answer
2016-03-11 02:02:46 +11:00
2018-02-11 03:59:20 +11:00
@staticmethod
def _check_pms_connectivity(server):
2016-05-30 00:52:00 +10:00
"""
2018-02-11 03:59:20 +11:00
Checks for server's connectivity. Returns check_connection result
2016-05-30 00:52:00 +10:00
"""
2018-02-11 03:59:20 +11:00
if server['local']:
# Deactive SSL verification if the server is local for Kodi 17
verifySSL = True if v.KODIVERSION >= 18 else False
2016-05-30 00:52:00 +10:00
else:
verifySSL = True
2020-02-21 18:40:41 +11:00
if not server['token']:
# Plex GDM: we only get the token from plex.tv after
# Sign-in to plex.tv
server['token'] = utils.settings('plexToken') or None
return PF.check_connection(server['baseURL'],
token=server['token'],
verifySSL=verifySSL)
2016-05-30 00:52:00 +10:00
def pick_pms(self, showDialog=False, inform_of_search=False):
2016-05-30 00:52:00 +10:00
"""
2018-02-11 03:59:20 +11:00
Searches for PMS in local Lan and optionally (if self.plex_token set)
2016-05-30 00:52:00 +10:00
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:
{
2018-02-11 03:59:20 +11:00
'machineIdentifier' [str] unique identifier of the PMS
'name' [str] name of the PMS
'token' [str] token needed to access that PMS
'ownername' [str] name of the owner of this PMS or None if
the owner itself supplied tries to connect
'product' e.g. 'Plex Media Server' or None
'version' e.g. '1.11.2.4772-3e...' or None
'device': e.g. 'PC' or 'Windows' or None
'platform': e.g. 'Windows', 'Android' or None
'local' [bool] True if plex.tv supplied
'publicAddressMatches'='1'
or if found using Plex GDM in the local LAN
'owned' [bool] True if it's the owner's PMS
'relay' [bool] True if plex.tv supplied 'relay'='1'
'presence' [bool] True if plex.tv supplied 'presence'='1'
'httpsRequired' [bool] True if plex.tv supplied
'httpsRequired'='1'
'scheme' [str] either 'http' or 'https'
'ip': [str] IP of the PMS, e.g. '192.168.1.1'
'port': [str] Port of the PMS, e.g. '32400'
'baseURL': [str] <scheme>://<ip>:<port> of the PMS
2016-05-25 04:43:52 +10:00
}
or None if unsuccessful
"""
2016-05-30 00:52:00 +10:00
# If no server is set, let user choose one
2018-11-19 00:59:17 +11:00
if not app.CONN.server or not app.CONN.machine_identifier:
2016-05-30 00:52:00 +10:00
showDialog = True
if showDialog is True:
2018-02-11 03:59:20 +11:00
server = self._user_pick_pms()
2016-05-30 00:52:00 +10:00
else:
server = self._auto_pick_pms(show_dialog=inform_of_search)
2016-05-30 00:52:00 +10:00
return server
def _auto_pick_pms(self, show_dialog=False):
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
"""
2018-02-11 03:59:20 +11:00
https_updated = False
2016-05-30 00:52:00 +10:00
server = None
if show_dialog:
# Searching for PMS
utils.dialog('notification',
heading='{plex}',
message=utils.lang(30001),
icon='{plex}',
time=60000)
try:
while True:
if https_updated is False:
serverlist = PF.discover_pms(self.plex_token)
for item in serverlist:
if item.get('machineIdentifier') == app.CONN.machine_identifier:
server = item
if server is None:
name = utils.settings('plex_servername')
LOG.warn('The PMS you have used before with a unique '
'machineIdentifier of %s and name %s is '
'offline', app.CONN.machine_identifier, name)
return
chk = self._check_pms_connectivity(server)
if chk == 504 and https_updated is False:
# switch HTTPS to HTTP or vice-versa
if server['scheme'] == 'https':
server['scheme'] = 'http'
else:
server['scheme'] = 'https'
https_updated = True
continue
# Problems connecting
elif chk >= 400 or chk is False:
LOG.warn('Problems connecting to server %s. chk is %s',
server['name'], chk)
2016-05-30 00:52:00 +10:00
return
LOG.info('We found a server to automatically connect to: %s',
server['name'])
return server
finally:
if show_dialog:
executebuiltin("Dialog.Close(all, true)")
2016-05-30 00:52:00 +10:00
2018-02-11 03:59:20 +11:00
def _user_pick_pms(self):
2016-05-30 00:52:00 +10:00
"""
Lets user pick his/her PMS from a list
Returns server or None if unsuccessful
"""
2018-02-11 03:59:20 +11:00
https_updated = False
# Searching for PMS
2018-06-22 03:24:37 +10:00
utils.dialog('notification',
heading='{plex}',
message=utils.lang(30001),
icon='{plex}',
time=60000)
2016-05-30 00:52:00 +10:00
while True:
2018-02-11 03:59:20 +11:00
if https_updated is False:
serverlist = PF.discover_pms(self.plex_token)
2016-03-08 03:11:54 +11:00
# Exit if no servers found
2018-02-11 03:59:20 +11:00
if not serverlist:
LOG.warn('No plex media servers found!')
utils.messageDialog(utils.lang(29999), utils.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:
2018-02-11 03:59:20 +11:00
if server['local']:
2016-05-30 00:52:00 +10:00
# server is in the same network as client.
# Add"local"
2018-06-22 03:24:37 +10:00
msg = utils.lang(39022)
else:
# Add 'remote'
2018-06-22 03:24:37 +10:00
msg = utils.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
# Close the PKC info "Searching for PMS"
executebuiltin("Dialog.Close(all, true)")
2018-06-22 03:24:37 +10:00
resp = utils.dialog('select', utils.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]
2018-02-11 03:59:20 +11:00
chk = self._check_pms_connectivity(server)
if chk == 504 and https_updated is False:
2016-03-08 03:11:54 +11:00
# Not able to use HTTP, try HTTPs for now
serverlist[resp]['scheme'] = 'https'
2018-02-11 03:59:20 +11:00
https_updated = True
2016-03-08 03:11:54 +11:00
continue
2018-02-11 03:59:20 +11:00
https_updated = False
2015-12-27 22:14:06 +11:00
if chk == 401:
LOG.warn('Not yet authorized for Plex server %s',
server['name'])
# Not yet authorized for Plex server %s
utils.messageDialog(
utils.lang(29999),
'%s %s\n%s' % (utils.lang(39013),
server['name'].decode('utf-8'),
utils.lang(39014)))
2018-02-11 03:59:20 +11:00
if self.plex_tv_sign_in() 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?
if not utils.yesno_dialog(utils.lang(29999), utils.lang(39015)):
# Exit while loop if user chooses No
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
2018-02-11 03:59:20 +11:00
@staticmethod
def write_pms_to_settings(server):
2016-05-25 04:43:52 +10:00
"""
2018-02-11 03:59:20 +11:00
Saves server to file settings
2016-05-25 04:43:52 +10:00
"""
2018-06-22 03:24:37 +10:00
utils.settings('plex_machineIdentifier', server['machineIdentifier'])
utils.settings('plex_servername', server['name'])
utils.settings('plex_serverowned',
'true' if server['owned'] else 'false')
2016-05-25 04:43:52 +10:00
# Careful to distinguish local from remote PMS
2018-02-11 03:59:20 +11:00
if server['local']:
2016-03-09 00:50:43 +11:00
scheme = server['scheme']
2018-06-22 03:24:37 +10:00
utils.settings('ipaddress', server['ip'])
utils.settings('port', server['port'])
LOG.debug("Setting SSL verify to false, because server is "
2016-08-31 00:13:13 +10:00
"local")
2018-06-22 03:24:37 +10:00
utils.settings('sslverify', 'false')
2016-03-09 00:50:43 +11:00
else:
baseURL = server['baseURL'].split(':')
scheme = baseURL[0]
2018-06-22 03:24:37 +10:00
utils.settings('ipaddress', baseURL[1].replace('//', ''))
utils.settings('port', baseURL[2])
LOG.debug("Setting SSL verify to true, because server is not "
2016-08-31 00:13:13 +10:00
"local")
2018-06-22 03:24:37 +10:00
utils.settings('sslverify', 'true')
2016-03-09 00:50:43 +11:00
if scheme == 'https':
2018-06-22 03:24:37 +10:00
utils.settings('https', 'true')
else:
2018-06-22 03:24:37 +10:00
utils.settings('https', 'false')
2016-05-25 04:43:52 +10:00
# And finally do some logging
LOG.debug("Writing to Kodi user settings file")
LOG.debug("PMS machineIdentifier: %s, ip: %s, port: %s, https: %s ",
server['machineIdentifier'], server['ip'], server['port'],
server['scheme'])
2016-05-25 04:43:52 +10:00
@staticmethod
def _add_sources(root, extension):
changed = False
count = 2
for source in root.findall('.//path'):
if source.text == extension:
count -= 1
if count == 0:
# sources already set
break
else:
# Missing smb:// occurences, re-add.
changed = True
for _ in range(0, count):
source = etree.SubElement(root, 'source')
etree.SubElement(
source,
'name').text = "PlexKodiConnect Masterlock Hack"
etree.SubElement(
source,
'path',
{'pathversion': "1"}).text = extension
etree.SubElement(source, 'allowsharing').text = "true"
return changed
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.
"""
LOG.info("Initial setup called.")
try:
2018-06-22 03:24:37 +10:00
with utils.XmlKodiSetting('advancedsettings.xml',
force_create=True,
top_element='advancedsettings') as xml:
# Get current Kodi video cache setting
cache = xml.get_setting(['cache', 'memorysize'])
# Disable foreground "Loading media information from files"
# (still used by Kodi, even though the Wiki says otherwise)
xml.set_setting(['musiclibrary', 'backgroundupdate'],
value='true')
cleanonupdate = xml.get_setting(
['videolibrary', 'cleanonupdate']) == 'true'
if utils.settings('useDirectPaths') != '1':
# Disable cleaning of library - not compatible with PKC
# Only do this for add-on paths
xml.set_setting(['videolibrary', 'cleanonupdate'],
value='false')
2018-01-26 03:15:38 +11:00
# Set completely watched point same as plex (and not 92%)
xml.set_setting(['video', 'ignorepercentatend'], value='10')
xml.set_setting(['video', 'playcountminimumpercent'],
value='90')
2018-02-05 02:58:10 +11:00
xml.set_setting(['video', 'ignoresecondsatstart'],
value='60')
reboot = xml.write_xml
except utils.ParseError:
cache = None
reboot = False
cleanonupdate = False
2017-12-29 01:24:36 +11:00
# Kodi default cache if no setting is set
cache = str(cache.text) if cache is not None else '20971520'
LOG.info('Current Kodi video memory cache in bytes: %s', cache)
2018-06-22 03:24:37 +10:00
utils.settings('kodi_video_cache', value=cache)
# Hack to make PKC Kodi master lock compatible
try:
2018-06-22 03:24:37 +10:00
with utils.XmlKodiSetting('sources.xml',
force_create=True,
top_element='sources') as xml:
changed = False
for extension in ('smb://', 'nfs://'):
root = xml.set_setting(['video'])
changed = self._add_sources(root, extension) or changed
if changed:
xml.write_xml = True
reboot = True
except utils.ParseError:
pass
2017-05-30 01:29:29 +10:00
# Do we need to migrate stuff?
2018-06-22 03:24:37 +10:00
migration.check_migration()
# Reload the server IP cause we might've deleted it during migration
2018-11-19 00:59:17 +11:00
app.CONN.load()
2016-05-25 04:43:52 +10:00
# Display a warning if Kodi puts ALL movies into the queue, basically
# breaking playback reporting for PKC
warn = False
settings = js.settings_getsettingvalue('videoplayer.autoplaynextitem')
if v.KODIVERSION >= 18:
# Answer for videoplayer.autoplaynextitem:
# [{u'label': u'Music videos', u'value': 0},
# {u'label': u'TV shows', u'value': 1},
# {u'label': u'Episodes', u'value': 2},
# {u'label': u'Movies', u'value': 3},
# {u'label': u'Uncategorized', u'value': 4}]
if 1 in settings or 2 in settings or 3 in settings:
warn = True
else:
# Kodi Krypton: answer is boolean
if settings:
warn = True
if warn:
LOG.warn('Kodi setting videoplayer.autoplaynextitem is: %s',
settings)
2018-06-22 03:24:37 +10:00
if utils.settings('warned_setting_videoplayer.autoplaynextitem') == 'false':
# Only warn once
2018-06-22 03:24:37 +10:00
utils.settings('warned_setting_videoplayer.autoplaynextitem',
value='true')
# Warning: Kodi setting "Play next video automatically" is
# enabled. This could break PKC. Deactivate?
if utils.yesno_dialog(utils.lang(29999), utils.lang(30003)):
if v.KODIVERSION >= 18:
for i in (1, 2, 3):
try:
settings.remove(i)
except ValueError:
pass
js.settings_setsettingvalue('videoplayer.autoplaynextitem',
settings)
else:
js.settings_setsettingvalue('videoplayer.autoplaynextitem',
False)
# Set any video library updates to happen in the background in order to
# hide "Compressing database"
js.settings_setsettingvalue('videolibrary.backgroundupdate', True)
2016-05-25 04:43:52 +10:00
# If a Plex server IP has already been set
# return only if the right machine identifier is found
2018-11-19 00:59:17 +11:00
if app.CONN.server:
LOG.info("PMS is already set: %s. Checking now...", app.CONN.server)
2018-02-11 03:59:20 +11:00
if self.check_existing_pms():
LOG.info("Using PMS %s with machineIdentifier %s",
2018-11-19 00:59:17 +11:00
app.CONN.server, app.CONN.machine_identifier)
self.save_pms_settings(app.CONN.server, self.pms_token)
if utils.settings('kodi_db_has_been_wiped_clean') == 'false':
# If the user chose to go to the PKC settings on the first run
# Will trigger a reboot
utils.wipe_database()
if reboot is True:
2018-06-22 03:24:37 +10:00
utils.reboot_kodi()
2016-05-25 04:43:52 +10:00
return
2018-12-03 01:46:15 +11:00
else:
LOG.info('No PMS set yet')
2016-05-25 04:43:52 +10:00
# If not already retrieved myplex info, optionally let user sign in
# to plex.tv. This DOES get called on very first install run
2018-11-19 00:59:17 +11:00
if not self.plex_token and app.ACCOUNT.myplexlogin:
2018-02-11 03:59:20 +11:00
self.plex_tv_sign_in()
2016-05-25 04:43:52 +10:00
server = self.pick_pms(inform_of_search=True)
2016-05-30 00:52:00 +10:00
if server is not None:
# Write our chosen server to Kodi settings file
self.save_pms_settings(server['baseURL'], server['token'])
2018-02-11 03:59:20 +11:00
self.write_pms_to_settings(server)
2016-03-04 23:34:30 +11:00
2016-05-30 00:52:00 +10:00
# User already answered the installation questions
2018-06-22 03:24:37 +10:00
if utils.settings('InstallQuestionsAnswered') == 'true':
2018-12-03 01:56:59 +11:00
LOG.info('Installation questions already answered')
if utils.settings('kodi_db_has_been_wiped_clean') == 'false':
# If the user chose to go to the PKC settings on the first run
# Will trigger a reboot
utils.wipe_database()
if reboot is True:
2018-06-22 03:24:37 +10:00
utils.reboot_kodi()
# Reload relevant settings
app.CONN.load()
app.ACCOUNT.load()
app.SYNC.load()
2016-05-30 00:52:00 +10:00
return
2018-12-03 01:56:59 +11:00
LOG.info('Showing install questions')
2016-05-25 04:43:52 +10:00
# Additional settings where the user needs to choose
# Direct paths (\\NAS\mymovie.mkv) or addon (http)?
2018-02-11 03:59:20 +11:00
goto_settings = False
from .windows import optionsdialog
# Use Add-on Paths (default, easy) or Direct Paths? PKC will not work
# if your Direct Paths setup is wrong!
# Buttons: Add-on Paths // Direct Paths
if optionsdialog.show(utils.lang(29999), utils.lang(39080),
utils.lang(39081), utils.lang(39082)) == 1:
LOG.debug("User opted to use direct paths.")
2018-06-22 03:24:37 +10:00
utils.settings('useDirectPaths', value="1")
if cleanonupdate:
# Re-enable cleanonupdate
with utils.XmlKodiSetting('advancedsettings.xml') as xml:
xml.set_setting(['videolibrary', 'cleanonupdate'],
value='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 utils.yesno_dialog(utils.lang(29999), utils.lang(39033)):
LOG.debug("User chose to replace paths with smb")
else:
2018-06-22 03:24:37 +10:00
utils.settings('replaceSMB', value="false")
# complete replace all original Plex library paths with custom SMB
if utils.yesno_dialog(utils.lang(29999), utils.lang(39043)):
LOG.debug("User chose custom smb paths")
2018-06-22 03:24:37 +10:00
utils.settings('remapSMB', value="true")
# Please enter your custom smb paths in the settings under
# "Sync Options" and then restart Kodi
utils.messageDialog(utils.lang(29999), utils.lang(39044))
2018-02-11 03:59:20 +11:00
goto_settings = True
# Go to network credentials?
if utils.yesno_dialog(utils.lang(39029), utils.lang(39030)):
LOG.debug("Presenting network credentials dialog.")
from .windows import direct_path_sources
direct_path_sources.start()
# Disable Plex music?
if utils.yesno_dialog(utils.lang(29999), utils.lang(39016)):
LOG.debug("User opted to disable Plex music library.")
2018-06-22 03:24:37 +10:00
utils.settings('enableMusic', value="false")
# Download additional art from FanArtTV
if utils.yesno_dialog(utils.lang(29999), utils.lang(39061)):
LOG.debug("User opted to use FanArtTV")
2018-06-22 03:24:37 +10:00
utils.settings('FanartTV', value="true")
# Do you want to replace your custom user ratings with an indicator of
# how many versions of a media item you posses?
if utils.yesno_dialog(utils.lang(29999), utils.lang(39718)):
LOG.debug("User opted to replace user ratings with version number")
2018-06-22 03:24:37 +10:00
utils.settings('indicate_media_versions', 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
2018-06-22 03:24:37 +10:00
# dialog.ok(heading=utils.lang(29999), line1=utils.lang(39076))
# Need to tell about our image source for collections: themoviedb.org
2018-06-22 03:24:37 +10:00
# dialog.ok(heading=utils.lang(29999), line1=utils.lang(39717))
2016-05-30 00:52:00 +10:00
# Make sure that we only ask these questions upon first installation
2018-06-22 03:24:37 +10:00
utils.settings('InstallQuestionsAnswered', value='true')
2018-10-11 04:19:30 +11:00
2018-02-11 03:59:20 +11:00
if goto_settings is False:
# Open Settings page now? You will need to restart!
goto_settings = utils.yesno_dialog(utils.lang(29999),
utils.lang(39017))
# New installation - make sure we start with a clean slate
utils.wipe_database(reboot=False)
2018-02-11 03:59:20 +11:00
if goto_settings:
LOG.info('User chose to go to the PKC settings - suspending PKC')
app.APP.stop_pkc = True
2018-06-22 03:24:37 +10:00
executebuiltin(
'Addon.OpenSettings(plugin.video.plexkodiconnect)')
return
utils.reboot_kodi()