bca89c3a9a
Nice if you copy/paste your Kodi profile
92 lines
2.7 KiB
Python
92 lines
2.7 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
###############################################################################
|
|
|
|
from uuid import uuid4
|
|
|
|
import xbmc
|
|
import xbmcaddon
|
|
|
|
import utils
|
|
|
|
###############################################################################
|
|
|
|
|
|
@utils.logging
|
|
class ClientInfo():
|
|
|
|
def __init__(self):
|
|
|
|
self.addon = xbmcaddon.Addon()
|
|
|
|
def getAddonName(self):
|
|
# Used for logging
|
|
return self.addon.getAddonInfo('name')
|
|
|
|
def getAddonId(self):
|
|
|
|
return "plugin.video.plexkodiconnect"
|
|
|
|
def getVersion(self):
|
|
|
|
return self.addon.getAddonInfo('version')
|
|
|
|
def getDeviceName(self):
|
|
|
|
if utils.settings('deviceNameOpt') == "false":
|
|
# Use Kodi's deviceName
|
|
deviceName = xbmc.getInfoLabel('System.FriendlyName').decode('utf-8')
|
|
else:
|
|
deviceName = utils.settings('deviceName')
|
|
deviceName = deviceName.replace("\"", "_")
|
|
deviceName = deviceName.replace("/", "_")
|
|
|
|
return deviceName
|
|
|
|
def getPlatform(self):
|
|
|
|
if xbmc.getCondVisibility('system.platform.osx'):
|
|
return "OSX"
|
|
elif xbmc.getCondVisibility('system.platform.atv2'):
|
|
return "ATV2"
|
|
elif xbmc.getCondVisibility('system.platform.ios'):
|
|
return "iOS"
|
|
elif xbmc.getCondVisibility('system.platform.windows'):
|
|
return "Windows"
|
|
elif xbmc.getCondVisibility('system.platform.linux'):
|
|
return "Linux/RPi"
|
|
elif xbmc.getCondVisibility('system.platform.android'):
|
|
return "Linux/Android"
|
|
else:
|
|
return "Unknown"
|
|
|
|
def getDeviceId(self, reset=False):
|
|
"""
|
|
Returns a unique Plex client id "X-Plex-Client-Identifier" from Kodi
|
|
settings file.
|
|
Also loads Kodi window property 'plex_client_Id'
|
|
|
|
If id does not exist, create one and save in Kodi settings file.
|
|
"""
|
|
|
|
if reset is True:
|
|
utils.window('plex_client_Id', clear=True)
|
|
utils.settings('plex_client_Id', value="")
|
|
|
|
clientId = utils.window('plex_client_Id')
|
|
if clientId:
|
|
return clientId
|
|
|
|
clientId = utils.settings('plex_client_Id')
|
|
# Because Kodi appears to cache file settings!!
|
|
if clientId != "" and reset is False:
|
|
utils.window('plex_client_Id', value=clientId)
|
|
self.logMsg("Unique device Id plex_client_Id loaded: %s" % clientId, 1)
|
|
return clientId
|
|
|
|
self.logMsg("Generating a new deviceid.", 0)
|
|
clientId = str(uuid4())
|
|
utils.settings('plex_client_Id', value=clientId)
|
|
utils.window('plex_client_Id', value=clientId)
|
|
self.logMsg("Unique device Id plex_client_Id loaded: %s" % clientId, 1)
|
|
return clientId
|