################################################################################
# Copyright (C) 2015 Surfacingx #
# #
# This Program is free software; you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation; either version 2, or (at your option) #
# any later version. #
# #
# This Program is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with XBMC; see the file COPYING. If not, write to #
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. #
# http://www.gnu.org/copyleft/gpl.html #
################################################################################
import os
import xbmc, xbmcgui, xbmcvfs
import re
import uservar
import time
from datetime import date, timedelta
from resources.libs import wizard as wiz
transPath = xbmcvfs.translatePath
LOGNOTICE = xbmc.LOGINFO
ADDON_ID = uservar.ADDON_ID
ADDONTITLE = uservar.ADDONTITLE
ADDON = wiz.addonId(ADDON_ID)
DIALOG = xbmcgui.Dialog()
HOME = transPath('special://home/')
ADDONS = os.path.join(HOME, 'addons')
USERDATA = os.path.join(HOME, 'userdata')
PLUGIN = os.path.join(ADDONS, ADDON_ID)
PACKAGES = os.path.join(ADDONS, 'packages')
ADDONDATA = os.path.join(USERDATA, 'addon_data', ADDON_ID)
ADDOND = os.path.join(USERDATA, 'addon_data')
TRAKTFOLD = os.path.join(ADDONDATA, 'trakt')
ICON = os.path.join(PLUGIN, 'icon.png')
TODAY = date.today()
TOMORROW = TODAY + timedelta(days=1)
THREEDAYS = TODAY + timedelta(days=3)
KEEPTRAKT = wiz.getS('keeptrakt')
TRAKTSAVE = wiz.getS('traktlastsave')
COLOR1 = uservar.COLOR1
COLOR2 = uservar.COLOR2
ORDER = ['gaia', 'openmeta', 'thecrew', 'homelander', 'moria', 'premiumizer', 'realizer', 'seren', 'myaccounts', 'trakt']
TRAKTID = {
'gaia': {
'name' : 'Gaia',
'plugin' : 'plugin.video.gaia',
'saved' : 'gaia',
'path' : os.path.join(ADDONS, 'plugin.video.gaia'),
'icon' : os.path.join(ADDONS, 'plugin.video.gaia', 'icon.png'),
'fanart' : os.path.join(ADDONS, 'plugin.video.gaia', 'fanart.jpg'),
'file' : os.path.join(TRAKTFOLD, 'gaia_trakt'),
'settings' : os.path.join(ADDOND, 'plugin.video.gaia', 'settings.xml'),
'default' : 'accounts.informants.trakt.user',
'data' : ['accounts.informants.trakt.user', 'accounts.informants.trakt.refresh', 'accounts.informants.trakt.token'],
'activate' : 'RunPlugin(plugin://plugin.video.gaia/?action=traktAuthorize)'},
'thecrew': {
'name' : 'The Crew',
'plugin' : 'plugin.video.thecrew',
'saved' : 'thecrew',
'path' : os.path.join(ADDONS, 'plugin.video.thecrew'),
'icon' : os.path.join(ADDONS, 'plugin.video.thecrew', 'icon.png'),
'fanart' : os.path.join(ADDONS, 'plugin.video.thecrew', 'fanart.jpg'),
'file' : os.path.join(TRAKTFOLD, 'thecrew_trakt'),
'settings' : os.path.join(ADDOND, 'plugin.video.thecrew', 'settings.xml'),
'default' : 'trakt.user',
'data' : ['trakt.refresh', 'trakt.token', 'trakt.user'],
'activate' : 'RunPlugin(plugin://plugin.video.thecrew/?action=authTrakt)'},
'homelander': {
'name' : 'Homelander',
'plugin' : 'plugin.video.homelander',
'saved' : 'homelander',
'path' : os.path.join(ADDONS, 'plugin.video.homelander'),
'icon' : os.path.join(ADDONS, 'plugin.video.homelander', 'icon.png'),
'fanart' : os.path.join(ADDONS, 'plugin.video.homelander', 'fanart.jpg'),
'file' : os.path.join(TRAKTFOLD, 'thecrew_trakt'),
'settings' : os.path.join(ADDOND, 'plugin.video.homelander', 'settings.xml'),
'default' : 'trakt.user',
'data' : ['trakt.refresh', 'trakt.token', 'trakt.user'],
'activate' : 'RunPlugin(plugin://plugin.video.homelander/?action=authTrakt)'},
'moria': {
'name' : 'Moria',
'plugin' : 'plugin.video.moria',
'saved' : 'moria',
'path' : os.path.join(ADDONS, 'plugin.video.moria'),
'icon' : os.path.join(ADDONS, 'plugin.video.moria', 'icon.png'),
'fanart' : os.path.join(ADDONS, 'plugin.video.moria', 'fanart.jpg'),
'file' : os.path.join(TRAKTFOLD, 'thecrew_trakt'),
'settings' : os.path.join(ADDOND, 'plugin.video.moria', 'settings.xml'),
'default' : 'trakt.user',
'data' : ['trakt.refresh', 'trakt.token', 'trakt.user'],
'activate' : 'RunPlugin(plugin://plugin.video.moria/?action=authTrakt)'},
'seren': {
'name' : 'Seren',
'plugin' : 'plugin.video.seren',
'saved' : 'seren',
'path' : os.path.join(ADDONS, 'plugin.video.seren'),
'icon' : os.path.join(ADDONS, 'plugin.video.seren', 'temp-icon.png'),
'fanart' : os.path.join(ADDONS, 'plugin.video.seren', 'temp-fanart.png'),
'file' : os.path.join(TRAKTFOLD, 'seren_trakt'),
'settings' : os.path.join(ADDOND, 'plugin.video.seren', 'settings.xml'),
'default' : 'trakt.username',
'data' : ['trakt.auth', 'trakt.refresh', 'trakt.username'],
'activate' : 'RunPlugin(plugin://plugin.video.seren/?action=authTrakt)'},
'myaccounts': {
'name' : 'My Accounts (Fen-Venom)',
'plugin' : 'script.module.myaccounts',
'saved' : 'myaccounts',
'path' : os.path.join(ADDONS, 'script.module.myaccounts'),
'icon' : os.path.join(ADDONS, 'script.module.myaccounts', 'icon.png'),
'fanart' : os.path.join(ADDONS, 'script.module.myaccounts', 'fanart.png'),
'file' : os.path.join(TRAKTFOLD, 'myaccounts_trakt'),
'settings' : os.path.join(ADDOND, 'script.module.myaccounts', 'settings.xml'),
'default' : 'trakt.username',
'data' : ['trakt.username', 'trakt.refresh', 'trakt.token'],
'activate' : 'RunScript(script.module.myaccounts, action=traktAuth)'},
'trakt': {
'name' : 'Trakt',
'plugin' : 'script.trakt',
'saved' : 'trakt',
'path' : os.path.join(ADDONS, 'script.trakt'),
'icon' : os.path.join(ADDONS, 'script.trakt', 'icon.png'),
'fanart' : os.path.join(ADDONS, 'script.trakt', 'fanart.jpg'),
'file' : os.path.join(TRAKTFOLD, 'trakt_trakt'),
'settings' : os.path.join(ADDOND, 'script.trakt', 'settings.xml'),
'default' : 'user',
'data' : ['authorization', 'user'],
'activate' : 'RunScript(script.trakt, action=auth_info)'},
'openmeta': {
'name' : 'OpenMeta',
'plugin' : 'plugin.video.openmeta',
'saved' : 'openmeta',
'path' : os.path.join(ADDONS, 'plugin.video.openmeta'),
'icon' : os.path.join(ADDONS, 'plugin.video.openmeta', 'resources/icon.png'),
'fanart' : os.path.join(ADDONS, 'plugin.video.openmeta', 'resources/fanart.jpg'),
'file' : os.path.join(TRAKTFOLD, 'openmeta_trakt'),
'settings' : os.path.join(ADDOND, 'plugin.video.openmeta', 'settings.xml'),
'default' : 'trakt_access_token',
'data' : ['trakt_access_token', 'trakt_refresh_token', 'trakt_expires_at '],
'activate' : 'RunPlugin(plugin://plugin.video.openmeta/authenticate_trakt)'},
'premiumizer': {
'name' : 'Premiumizer',
'plugin' : 'plugin.video.premiumizer',
'saved' : 'premiumizer',
'path' : os.path.join(ADDONS, 'plugin.video.premiumizer'),
'icon' : os.path.join(ADDONS, 'plugin.video.premiumizer', 'icon.png'),
'fanart' : os.path.join(ADDONS, 'plugin.video.premiumizer', 'fanart.jpg'),
'file' : os.path.join(TRAKTFOLD, 'premiumizer_trakt'),
'settings' : os.path.join(ADDOND, 'plugin.video.premiumizer', 'settings.xml'),
'default' : 'trakt.auth',
'data' : ['trakt.token', 'trakt.refresh', 'trakt.auth'],
'activate' : 'RunPlugin(plugin://plugin.video.premiumizer/?action=authTrakt)'},
'realizer': {
'name' : 'Realizer',
'plugin' : 'plugin.video.realizer',
'saved' : 'premiumizer',
'path' : os.path.join(ADDONS, 'plugin.video.realizer'),
'icon' : os.path.join(ADDONS, 'plugin.video.realizer', 'icon.png'),
'fanart' : os.path.join(ADDONS, 'plugin.video.realizer', 'fanart.jpg'),
'file' : os.path.join(TRAKTFOLD, 'realizer_trakt'),
'settings' : os.path.join(ADDOND, 'plugin.video.realizer', 'settings.xml'),
'default' : 'trakt.auth',
'data' : ['trakt.token', 'trakt.refresh', 'trakt.auth'],
'activate' : 'RunPlugin(plugin://plugin.video.realizer/?action=authTrakt)'}
}
def traktUser(who):
user=None
if TRAKTID[who]:
if os.path.exists(TRAKTID[who]['path']):
try:
add = wiz.addonId(TRAKTID[who]['plugin'])
user = add.getSetting(TRAKTID[who]['default'])
except:
return None
return user
def traktIt(do, who):
if not os.path.exists(ADDONDATA): os.makedirs(ADDONDATA)
if not os.path.exists(TRAKTFOLD): os.makedirs(TRAKTFOLD)
if who == 'all':
for log in ORDER:
if os.path.exists(TRAKTID[log]['path']):
try:
addonid = wiz.addonId(TRAKTID[log]['plugin'])
default = TRAKTID[log]['default']
user = addonid.getSetting(default)
if user == '' and do == 'update': continue
updateTrakt(do, log)
except: pass
else: wiz.log('[Trakt Data] %s(%s) is not installed' % (TRAKTID[log]['name'],TRAKTID[log]['plugin']), xbmc.LOGERROR)
wiz.setS('traktlastsave', str(THREEDAYS))
else:
if TRAKTID[who]:
if os.path.exists(TRAKTID[who]['path']):
updateTrakt(do, who)
else: wiz.log('[Trakt Data] Invalid Entry: %s' % who, xbmc.LOGERROR)
def clearSaved(who, over=False):
if who == 'all':
for trakt in TRAKTID:
clearSaved(trakt, True)
elif TRAKTID[who]:
file = TRAKTID[who]['file']
if os.path.exists(file):
xbmcvfs.delete(file)
wiz.LogNotify("[COLOR %s]%s[/COLOR]" % (COLOR1, TRAKTID[who]['name']),'[COLOR %s]Trakt Data: Removed![/COLOR]' % COLOR2, 2000, TRAKTID[who]['icon'])
wiz.setS(TRAKTID[who]['saved'], '')
if over == False: wiz.refresh()
def updateTrakt(do, who):
file = TRAKTID[who]['file']
settings = TRAKTID[who]['settings']
data = TRAKTID[who]['data']
addonid = wiz.addonId(TRAKTID[who]['plugin'])
saved = TRAKTID[who]['saved']
default = TRAKTID[who]['default']
user = addonid.getSetting(default)
suser = wiz.getS(saved)
name = TRAKTID[who]['name']
icon = TRAKTID[who]['icon']
if do == 'update':
if not user == '':
try:
with xbmcvfs.File(file, 'w') as f:
for trakt in data:
f.write('\n\t%s\n\t%s\n\n' % (trakt, addonid.getSetting(trakt)))
#f.close()
user = addonid.getSetting(default)
wiz.setS(saved, user)
wiz.LogNotify("[COLOR %s]%s[/COLOR]" % (COLOR1, name), '[COLOR %s]Trakt Data: Saved![/COLOR]' % COLOR2, 2000, icon)
except Exception as e:
wiz.log("[Trakt Data] Unable to Update %s (%s)" % (who, str(e)), xbmc.LOGERROR)
else: wiz.LogNotify("[COLOR %s]%s[/COLOR]" % (COLOR1, name), '[COLOR %s]Trakt Data: Not Registered![/COLOR]' % COLOR2, 2000, icon)
elif do == 'restore':
if os.path.exists(file):
f = xbmcvfs.File(file); g = f.read().replace('\n','').replace('\r','').replace('\t',''); f.close();
match = re.compile('(.+?)(.+?)').findall(g)
try:
if len(match) > 0:
for trakt, value in match:
addonid.setSetting(trakt, value)
user = addonid.getSetting(default)
wiz.setS(saved, user)
wiz.LogNotify("[COLOR %s]%s[/COLOR]" % (COLOR1, name), '[COLOR %s]Trakt: Restored![/COLOR]' % COLOR2, 2000, icon)
except Exception as e:
wiz.log("[Trakt Data] Unable to Restore %s (%s)" % (who, str(e)), xbmc.LOGERROR)
#else: wiz.LogNotify(name,'Trakt Data: [COLOR red]Not Found![/COLOR]', 2000, icon)
elif do == 'clearaddon':
wiz.log('%s SETTINGS: %s' % (name, settings), xbmc.LOGDEBUG)
if os.path.exists(settings):
try:
f = open(settings, "r"); lines = f.readlines(); f.close()
f = open(settings, "w")
for line in lines:
match = wiz.parseDOM(line, 'setting', ret='id')
if len(match) == 0: f.write(line)
else:
if match[0] not in data: f.write(line)
else: wiz.log('Removing Line: %s' % line, LOGNOTICE)
f.close()
wiz.LogNotify("[COLOR %s]%s[/COLOR]" % (COLOR1, name),'[COLOR %s]Addon Data: Cleared![/COLOR]' % COLOR2, 2000, icon)
except Exception as e:
wiz.log("[Trakt Data] Unable to Clear Addon %s (%s)" % (who, str(e)), xbmc.LOGERROR)
wiz.refresh()
def autoUpdate(who):
if who == 'all':
for log in TRAKTID:
if os.path.exists(TRAKTID[log]['path']):
autoUpdate(log)
elif TRAKTID[who]:
if os.path.exists(TRAKTID[who]['path']):
u = traktUser(who)
su = wiz.getS(TRAKTID[who]['saved'])
n = TRAKTID[who]['name']
if u == None or u == '': return
elif su == '': traktIt('update', who)
elif not u == su:
if DIALOG.yesno(ADDONTITLE, ("[COLOR %s]Would you like to save the [COLOR %s]Trakt[/COLOR] data for [COLOR %s]%s[/COLOR]?" % (COLOR2, COLOR1, COLOR1, n))+"[CR]"+("Addon: [COLOR green][B]%s[/B][/COLOR]" % u)+"[CR]"+("Saved:[/COLOR] [COLOR red][B]%s[/B][/COLOR]" % su if not su == '' else 'Saved:[/COLOR] [COLOR red][B]None[/B][/COLOR]'), yeslabel="[B][COLOR green]Save Data[/COLOR][/B]", nolabel="[B][COLOR red]No Cancel[/COLOR][/B]"):
traktIt('update', who)
else: traktIt('update', who)
def importlist(who):
if who == 'all':
for log in TRAKTID:
if os.path.exists(TRAKTID[log]['file']):
importlist(log)
elif TRAKTID[who]:
if os.path.exists(TRAKTID[who]['file']):
d = TRAKTID[who]['default']
sa = TRAKTID[who]['saved']
su = wiz.getS(sa)
n = TRAKTID[who]['name']
f = xbmcvfs.File(TRAKTID[who]['file']); g = f.read().replace('\n','').replace('\r','').replace('\t',''); f.close();
m = re.compile('%s(.+?)' % d).findall(g)
if len(m) > 0:
if not m[0] == su:
if DIALOG.yesno(ADDONTITLE, ("[COLOR %s]Would you like to import the [COLOR %s]Trakt[/COLOR] data for [COLOR %s]%s[/COLOR]?" % (COLOR2, COLOR1, COLOR1, n))+"[CR]"+("File: [COLOR green][B]%s[/B][/COLOR]" % m[0])+"[CR]"+("Saved:[/COLOR] [COLOR red][B]%s[/B][/COLOR]" % su if not su == '' else 'Saved:[/COLOR] [COLOR red][B]None[/B][/COLOR]'), yeslabel="[B]Save Data[/B]", nolabel="[B]No Cancel[/B]"):
wiz.setS(sa, m[0])
wiz.log('[Import Data] %s: %s' % (who, str(m)), LOGNOTICE)
else: wiz.log('[Import Data] Declined Import(%s): %s' % (who, str(m)), LOGNOTICE)
else: wiz.log('[Import Data] Duplicate Entry(%s): %s' % (who, str(m)), LOGNOTICE)
else: wiz.log('[Import Data] No Match(%s): %s' % (who, str(m)), LOGNOTICE)
def activateTrakt(who):
if TRAKTID[who]:
if os.path.exists(TRAKTID[who]['path']):
act = TRAKTID[who]['activate']
addonid = wiz.addonId(TRAKTID[who]['plugin'])
if act == '': addonid.openSettings()
else: url = xbmc.executebuiltin(TRAKTID[who]['activate'])
else: DIALOG.ok(ADDONTITLE, '%s is not currently installed.' % TRAKTID[who]['name'])
else:
wiz.refresh()
return
check = 0
while traktUser(who) == None:
if check == 30: break
check += 1
time.sleep(10)
wiz.refresh()