-
Notifications
You must be signed in to change notification settings - Fork 14
/
default.py
554 lines (536 loc) · 30.9 KB
/
default.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
# -*- coding: utf-8 -*-
import sys, os, traceback, time, datetime, calendar
import xbmcaddon, xbmc, xbmcgui
try:
from sqlite3 import dbapi2 as sqlite3
except:
from pysqlite2 import dbapi2 as sqlite3
from xbmcvfs import copy as file_copy
from xbmcvfs import delete as delete_file
from xbmcvfs import exists as exists
from xbmcvfs import rename as file_rename
true = True
false = False
null = None
__addon__ = xbmcaddon.Addon( "script.cdartmanager" )
__language__ = __addon__.getLocalizedString
__scriptname__ = __addon__.getAddonInfo('name')
__scriptID__ = __addon__.getAddonInfo('id')
__author__ = __addon__.getAddonInfo('author')
__version__ = __addon__.getAddonInfo('version')
__credits__ = "Ppic, Reaven, Imaginos, redje, Jair, "
__credits2__ = "Chaos_666, Magnatism, Kode, Martijn"
__version_date__ = "5-10-13"
__dbversion__ = "3.0.3"
__dbversionold__ = "2.7.8"
__dbversionancient__ = "1.5.3"
__addon_path__ = __addon__.getAddonInfo('path')
__useragent__ = "%s\\%s (giftie61@hotmail.com)" % ( __scriptname__, __version__ )
enable_hdlogos = eval( __addon__.getSetting("enable_hdlogos") )
mbid_match_number = int( __addon__.getSetting("mbid_match_number") )
use_musicbrainz = eval( __addon__.getSetting("use_musicbrainz") )
musicbrainz_server = __addon__.getSetting( "musicbrainz_server" )
mb_delay = int( float( __addon__.getSetting( "mb_delay" ) ) )
api_key = "e308cc6c6f76e502f98526f1694c62ac"
BASE_RESOURCE_PATH = xbmc.translatePath( os.path.join( __addon_path__, 'resources' ) ).decode('utf-8')
music_path = xbmc.translatePath( __addon__.getSetting( "music_path" ) ).decode('utf-8')
addon_work_folder = xbmc.translatePath( __addon__.getAddonInfo('profile') ).decode('utf-8')
addon_db = os.path.join(addon_work_folder, "l_cdart.db").replace("\\\\","\\")
addon_db_update = os.path.join(addon_work_folder, "l_cdart." + __dbversionold__ + ".db").replace("\\\\","\\")
addon_db_backup = os.path.join(addon_work_folder, "l_cdart.db.bak").replace("\\\\","\\")
addon_db_crash = os.path.join(addon_work_folder, "l_cdart.db-journal").replace("\\\\","\\")
settings_file = os.path.join(addon_work_folder, "settings.xml").replace("\\\\","\\")
image = xbmc.translatePath( os.path.join( __addon_path__, "icon.png") ).decode('utf-8')
illegal_characters = list( __addon__.getSetting( "illegal_characters" ) )
replace_character = __addon__.getSetting( "replace_character" )
enable_replace_illegal = eval( __addon__.getSetting( "enable_replace_illegal" ) )
check_mbid = eval( __addon__.getSetting( "check_mbid" ) )
enable_all_artists = eval( __addon__.getSetting( "enable_all_artists" ) )
update_musicbraniz_id = eval( __addon__.getSetting( "update_musicbrainz" ) )
notify_in_background = eval( __addon__.getSetting( "notify_in_background" ) )
change_period_atend = eval( __addon__.getSetting( "change_period_atend" ) )
backup_path = xbmc.translatePath( __addon__.getSetting( "backup_path" ) ).decode('utf-8')
missing_path = xbmc.translatePath( __addon__.getSetting( "missing_path" ) ).decode('utf-8')
enableresize = eval( __addon__.getSetting( "enableresize" ) )
folder = xbmc.translatePath( __addon__.getSetting( "folder" ) ).decode('utf-8')
enablecustom = eval( __addon__.getSetting( "enablecustom" ) )
download_temp_folder = os.path.join( addon_work_folder, "temp" ).decode( "utf8" )
addon_image_path = os.path.join( BASE_RESOURCE_PATH, "skins", "Default", "media" ).decode( "utf8" )
missing_cdart_image = os.path.join( addon_image_path, "missing_cdart.png" )
missing_cover_image = os.path.join( addon_image_path, "missing_cover.png" )
enable_all_artists = eval( __addon__.getSetting("enable_all_artists") )
backup_during_update = eval( __addon__.getSetting( "backup_during_update" ) )
enable_missing = eval( __addon__.getSetting("enable_missing") )
enable_fanart_limit = eval( __addon__.getSetting("enable_fanart_limit") )
fanart_limit = int( float( __addon__.getSetting("fanart_limit") ) )
skin_art_path = addon_image_path
tempxml_folder = os.path.join( addon_work_folder, "tempxml" )
script_fail = False
first_run = False
rebuild = False
soft_exit = False
background_db = False
script_mode = ""
if use_musicbrainz:
mb_delay = 910
musicbrainz_server = '''http://musicbrainz.org'''
else:
if mb_delay < 1:
mb_delay = 1
else:
mb_delay = mb_delay * 100
sys.path.append( os.path.join( BASE_RESOURCE_PATH, "skins", "Default" ) )
sys.path.append( os.path.join( BASE_RESOURCE_PATH, "lib" ))
from utils import settings_to_log, get_unicode, change_characters, unescape, log, dialog_msg
from file_item import Thumbnails
from database import build_local_artist_table, store_counts, new_local_count, get_local_artists_db, get_local_albums_db, update_database, retrieve_album_details_full, mbid_repair
from jsonrpc_calls import retrieve_album_details, retrieve_artist_details, get_fanart_path, get_thumbnail_path
from musicbrainz_utils import get_musicbrainz_artist_id, get_musicbrainz_album
from fanarttv_scraper import check_fanart_new_artwork, first_check, remote_banner_list, remote_hdlogo_list, get_recognized, remote_cdart_list, remote_coverart_list, remote_fanart_list, remote_clearlogo_list, remote_artistthumb_list
from download import auto_download
try:
from xbmcvfs import mkdirs as _makedirs
except:
from utils import _makedirs
def clear_skin_properties():
xbmcgui.Window( 10000 ).setProperty( "cdart_manager_running", "False" )
xbmcgui.Window( 10000 ).setProperty( "cdart_manager_update", "False" )
xbmcgui.Window( 10000 ).setProperty( "cdart_manager_allartist", "False" )
def artist_musicbrainz_id( artist_id, artist_mbid ):
artist_details = retrieve_artist_details( artist_id )
artist = []
if not artist_details["musicbrainzartistid"] or not artist_mbid:
name, artist["musicbrainz_artistid"], sortname = get_musicbrainz_artist_id( get_unicode( artist_details["label"] ) )
artist[ "name" ] = get_unicode( artist_details[ "label" ] )
else:
artist[ "name" ] = get_unicode( artist_details["label"] )
if artist_mbid:
artist[ "musicbrainz_artistid" ] = artist_mbid
else:
artist[ "musicbrainz_artistid" ] = artist_details["musicbrainzartistid"]
return artist
def album_musicbrainz_id( album_id ):
album_list = retrieve_album_details( album_id )
if album_list:
album_detail_list = retrieve_album_details_full( album_list, 1, background=True )
return album_detail_list
else:
return []
def select_artwork( details, media_type ):
artwork = None
selection = None
if media_type in ( "cdart", "cover" ):
if media_type == "cdart":
artwork = remote_cdart_list( details )
else:
artwork = remote_coverart_list( details )
if artwork:
for art in artwork:
if art["musicbrainz_albumid"] == details[ "musicbrainz_albumid" ]:
selection = art
if not selection:
dialog_msg( "okdialog", heading = __language__( 32033 ), line1 = __language__( 32030 ), line2 = __language__( 32031 ), background = False )
else:
dialog_msg( "okdialog", heading = __language__( 32033 ), line1 = __language__( 32030 ), line2 = __language__( 32031 ), background = False )
else:
if media_type == "fanart":
artwork = remote_fanart_list( details )
elif media_type == "clearlogo":
artwork = remote_clearlogo_list( details )
elif media_type == "hdlogo":
artwork = remote_hdlogo_list( details )
elif media_type == "artistthumb":
artwork = remote_artistthumb_list( details )
elif media_type == "musicbanner":
artwork = remote_banner_list( details )
if artwork:
for art in artwork:
print art
def thumbnail_copy( art_path, thumb_path, type="artwork" ):
if not thumb_path.startswith("http://") or not thumb_path.startswith("image://"):
if exists( art_path ):
if file_copy( art_path, thumb_path ):
log( "Successfully copied %s" % type, xbmc.LOGDEBUG )
else:
log( "Failed to copy to %s" % type, xbmc.LOGDEBUG )
log( "Source Path: %s" % repr( art_path ), xbmc.LOGDEBUG )
log( "Destination Path: %s" % repr( thumb_path ), xbmc.LOGDEBUG )
elif thumb_path.startswith("http://") or thumb_path.startswith("image://"):
log( "Destination Path is not able to be copied to: %s" % repr( thumb_path ), xbmc.LOGDEBUG )
def update_xbmc_thumbnails( background=False ):
log( "Updating Thumbnails/fanart Images", xbmc.LOGNOTICE )
fanart = "fanart.jpg"
artistthumb_temp = "artist.jpg"
artistthumb = "folder.jpg"
albumthumb = "folder.jpg"
#xbmc.executebuiltin("Notification( %s, %s, %d, %s)" % ( __language__(32042), __language__(32112), 2000, image) )
xbmc.sleep( 1000 )
dialog_msg( "create", heading = __language__( 32042 ), background = background )
# Artists
artists = get_local_artists_db( mode="local_artists" )
if not artists:
artists = get_local_artists_db( mode="album_artists" )
# Albums
albums = get_local_albums_db( "all artists", False )
percent = 1
count = 0
for artist in artists:
percent = percent = int( ( count/float( len( artists ) ) ) * 100 )
count += 1
if percent == 0:
percent = 1
if percent > 100:
percent = 100
if dialog_msg( "iscanceled" ):
break
dialog_msg( "update", percent = percent, line1 = __language__( 32112 ), line2 = " %s %s" % ( __language__( 32038 ), getunicode( artist["name"] ) ), background = background )
xbmc_thumbnail_path = ""
xbmc_fanart_path = ""
fanart_path = os.path.join( music_path, change_characters( artist["name"] ), fanart ).replace( "\\\\","\\" )
artistthumb_path = os.path.join( music_path, change_characters( artist["name"] ), artistthumb ).replace( "\\\\","\\" )
artistthumb_rename = os.path.join( music_path, change_characters( artist["name"] ), artistthumb_temp ).replace( "\\\\","\\" )
if exists( artistthumb_rename ):
file_rename( artistthumb_rename, artistthumb_path )
if exists( fanart_path ):
xbmc_fanart_path = get_fanart_path( artist["local_id"], "artist" )
elif exists( artistthumb_path ):
xbmc_thumbnail_path = get_thumbnail_path( artist["local_id"], "artist" )
else:
continue
if xbmc_fanart_path: # copy to XBMC supplied fanart path
thumbnail_copy( fanart_path, xbmc_fanart_path, "fanart" )
if xbmc_thumbnail_path: # copy to XBMC supplied artist image path
thumbnail_copy( artistthumb_path, xbmc_thumbnail_path, "artist thumb" )
percent = 1
count = 1
for album in albums:
percent = percent = int( ( count/float( len( albums ) ) ) * 100 )
if percent < 1:
percent = 1
if percent > 100:
percent = 100
if dialog_msg( "iscanceled" ):
break
dialog_msg( "update", percent = percent, line1 = __language__( 32042 ), line2 = __language__( 32112 ), line3 = " %s %s" % ( __language__( 32039 ), getunicode( album["title"] ) ), background = background )
xbmc_thumbnail_path = ""
coverart_path = os.path.join( album["path"], albumthumb ).replace( "\\\\","\\" )
if exists( coverart_path ):
xbmc_thumbnail_path = get_thumbnail_path( album["local_id"], "album" )
if xbmc_thumbnail_path:
thumbnail_copy( coverart_path, xbmc_thumbnail_path, "album cover" )
count += 1
log( "Finished Updating Thumbnails/fanart Images", xbmc.LOGNOTICE )
#xbmc.executebuiltin("Notification( %s, %s, %d, %s)" % ( __language__(32042), __language__(32113), 2000, image) )
def write_cache_file():
cache_file = open( os.path.join( addon_work_folder, "cache.txt" ), "wb" )
line = "%s/%s/%s\n" % ( time.strftime( "%m" ), time.strftime( "%d" ), time.strftime( "%Y" ) )
cache_file.write( line )
cache_file.close()
def update_cache():
line = ""
try:
if exists( os.path.join( addon_work_folder, "cache.txt" ) ):
cache_file = open( os.path.join( addon_work_folder, "cache.txt" ), "rb" )
line = str( cache_file.readline() ).replace("\n","")
cache_file.close()
cache_date = datetime.datetime.strptime( line, "%m/%d/%Y" ).date()
check_date = datetime.date.today()-datetime.timedelta( days = 3 )
if not cache_date < check_date:
log( "Cache not being cleared", xbmc.LOGNOTICE )
return False
else:
log( "Cache is being cleared", xbmc.LOGNOTICE )
write_cache_file()
return True
else:
log( "No Cache File existing.", xbmc.LOGNOTICE )
write_cache_file()
return True
except:
traceback.print_exc()
return False
def get_script_mode():
script_mode = ""
start_mbid = ""
start_dbid = 0
start_media_type = ()
if len(sys.argv) < 2:
script_mode = "normal"
try:
log( "sys.argv[0]: %s" % sys.argv[0] )
log( "sys.argv[1]: %s" % sys.argv[1] )
log( "sys.argv[2]: %s" % sys.argv[2] )
log( "sys.argv[3]: %s" % sys.argv[3] )
except:
pass
for arg in sys.argv:
if arg in ( "autocdart", "autocover", "autofanart", "autologo", "autothumb", "autobanner", "autoall", "database", "update", "oneshot", "artist" ):
script_mode = arg
if len( arg ) == 36 and arg[8] == "-": # MBID
start_mbid = arg
try:
start_dbid = int( arg )
except:
pass
if arg.startswith( "mediatype="):
start_media_type = arg.replace( "mediatype=", "").split( "/" )
return script_mode, start_mbid, start_dbid, start_media_type
if ( __name__ == "__main__" ):
xbmc.executebuiltin('Dialog.Close(all, true)')
log( "############################################################", xbmc.LOGNOTICE )
log( "# %-50s #" % __scriptname__, xbmc.LOGNOTICE )
log( "# default.py module #", xbmc.LOGNOTICE )
log( "# %-50s #" % __scriptID__, xbmc.LOGNOTICE )
log( "# %-50s #" % __author__, xbmc.LOGNOTICE )
log( "# %-50s #" % __version__, xbmc.LOGNOTICE )
log( "# %-50s #" % __credits__, xbmc.LOGNOTICE )
log( "# %-50s #" % __credits2__, xbmc.LOGNOTICE )
log( "# Thanks for the help guys... #", xbmc.LOGNOTICE )
log( "# %-50s #" % "Frodo", xbmc.LOGNOTICE )
log( "############################################################", xbmc.LOGNOTICE )
log( "Looking for settings.xml", xbmc.LOGNOTICE )
if not exists(settings_file): # Open Settings if settings.xml does not exists
log( "settings.xml File not found, creating path and opening settings", xbmc.LOGNOTICE )
_makedirs( addon_work_folder )
__addon__.openSettings()
soft_exit = True
settings_to_log( addon_work_folder, "[script.cdartmanager]" )
try:
recognized_ = int( __addon__.getSetting( "recognized" ) )
soft_exit = False
except:
dialog_msg( "okdialog", heading = __language__( 32181 ), line1 = __language__( 32182 ) )
__addon__.openSettings()
soft_exit = True
script_mode, provided_mbid, provided_dbid, media_type = get_script_mode()
if xbmcgui.Window( 10000 ).getProperty( "cdart_manager_running" ) == "True":
log( "cdART Manager Already running, exiting...", xbmc.LOGNOTICE )
soft_exit = True
else:
xbmcgui.Window( 10000 ).setProperty( "cdart_manager_running", "True" )
if not soft_exit:
try:
if enable_all_artists:
xbmcgui.Window( 10000 ).setProperty( "cdart_manager_allartist", "True" )
else:
xbmcgui.Window( 10000 ).setProperty( "cdart_manager_allartist", "False" )
xbmc.executebuiltin('Dialog.Close(all, true)')
if script_mode in ( "database" ):
log( "Start method - Build Database in background", xbmc.LOGNOTICE )
xbmcgui.Window( 10000 ).setProperty( "cdartmanager_update", "True" )
from database import refresh_db
local_album_count, local_artist_count, local_cdart_count = refresh_db( background = True )
local_artists = get_local_artists_db( mode="album_artists", background = True )
if enable_all_artists:
all_artists = get_local_artists_db( mode="all_artists", background = True )
else:
all_artists = []
first_check( all_artists, local_artists, background = True )
xbmcgui.Window( 10000 ).setProperty( "cdartmanager_update", "False" )
elif script_mode in ( "autocdart", "autocover", "autofanart", "autologo", "autothumb", "autobanner", "autoall", "update" ):
local_artists = get_local_artists_db( mode="album_artists", background = True )
if enable_all_artists:
all_artists = get_local_artists_db( mode="all_artists", background = True )
else:
all_artists = []
d = datetime.datetime.utcnow()
present_datecode = calendar.timegm( d.utctimetuple() )
new_artwork, data = check_fanart_new_artwork( present_datecode )
if new_artwork:
all_artists_list, album_artists = get_recognized( all_artists, local_artists, background = True )
else:
all_artists_list = all_artists
album_artists = local_artists
if script_mode in ( "autocdart", "autocover", "autofanart", "autologo", "autothumb", "autobanner" ):
xbmcgui.Window( 10000 ).setProperty( "cdart_manager_running", "True" )
if script_mode == "autocdart":
log( "Start method - Autodownload Album cdARTs in background", xbmc.LOGNOTICE )
artwork_type = "cdart"
elif script_mode == "autocover":
log( "Start method - Autodownload Album Cover art in background", xbmc.LOGNOTICE )
artwork_type = "cover"
elif script_mode == "autofanart":
log( "Start method - Autodownload Artist Fanarts in background", xbmc.LOGNOTICE )
artwork_type = "fanart"
elif script_mode == "autologo":
log( "Start method - Autodownload Artist Logos in background", xbmc.LOGNOTICE )
artwork_type = "clearlogo"
elif script_mode == "autothumb":
log( "Start method - Autodownload Artist Thumbnails in background", xbmc.LOGNOTICE )
artwork_type = "artistthumb"
elif script_mode == "autobanner":
log( "Start method - Autodownload Artist Music Banners in background", xbmc.LOGNOTICE )
artwork_type = "musicbanner"
if artwork_type in ( "fanart", "clearlogo", "artistthumb", "musicbanner" ) and enable_all_artists:
download_count, successfully_downloaded = auto_download( artwork_type, all_artists_list, background=True )
else:
download_count, successfully_downloaded = auto_download( artwork_type, album_artists, background=True )
log( "Autodownload of %s artwork completed\nTotal artwork downloaded: %d" % ( artwork_type, download_count ), xbmc.LOGNOTICE )
elif script_mode == "update":
log( "Start method - Update Database in background", xbmc.LOGNOTICE )
xbmcgui.Window( 10000 ).setProperty( "cdart_manager_update", "True" )
clear_cache = update_cache()
update_database( background = True )
local_artists = get_local_artists_db( mode="album_artists", background = True )
if enable_all_artists:
all_artists = get_local_artists_db( mode="all_artists", background = True )
else:
all_artists = []
d = datetime.datetime.utcnow()
present_datecode = calendar.timegm( d.utctimetuple() )
first_check( all_artists, local_artists, background = True, update_db = clear_cache )
elif script_mode == "autoall":
xbmcgui.Window( 10000 ).setProperty( "cdart_manager_running", "True" )
log( "Start method - Autodownload all artwork in background", xbmc.LOGNOTICE )
total_artwork = 0
for artwork_type in ( "cdart", "cover", "fanart", "clearlogo", "artistthumb", "musicbanner" ):
log( "Start method - Autodownload %s in background" % artwork_type, xbmc.LOGNOTICE )
if artwork_type in ( "fanart", "clearlogo", "artistthumb", "musicbanner" ) and enable_all_artists:
download_count, successfully_downloaded = auto_download( artwork_type, all_artists_list, background=True )
elif artwork_type:
download_count, successfully_downloaded = auto_download( artwork_type, album_artists, background=True )
total_artwork += download_count
log( "Autodownload all artwork completed\nTotal artwork downloaded: %d" % total_artwork, xbmc.LOGNOTICE )
elif script_mode == "update_thumbs":
log( "Start method - Update Thumbnails in background", xbmc.LOGNOTICE )
update_xbmc_thumbnails()
elif script_mode == "oneshot":
log( "Start method - One Shot Download method", xbmc.LOGNOTICE )
if provided_dbid or provided_mbid:
if media_type[ 0 ] in ( "clearlogo", "fanart", "artistthumb", "musicbanner" ):
artist = artist_musicbrainz_id( provided_dbid, provided_mbid )
if not artist:
log( "No MBID found", xbmc.LOGNOTICE )
else:
print artist
log( "Artist: %s" % artist[ "artist" ], xbmc.LOGDEBUG )
log( "MBID: %s" % artist[ "musicbrainz_artistid" ], xbmc.LOGDEBUG )
select_artwork( artist, media_type[0] )
elif media_type[ 0 ] in ( "cdart", "cover" ):
if provided_dbid:
album_details = album_musicbrainz_id( provided_dbid )
if not album_details:
log( "No MBID found", xbmc.LOGNOTICE )
else:
for album in album_details:
log( "Album: %s" % album[ "title" ] )
log( "MBID: %s" % album[ "musicbrainz_albumid" ] )
log( "Artist: %s" % album[ "artist" ] )
log( "MBID: %s" % album[ "musicbrainz_artistid" ] )
select_artwork( album, media_type[0] )
else:
log( "No Database ID provided" )
else:
log( "A Database ID or MusicBrainz ID needed" )
elif script_mode == "normal":
log( "Addon Work Folder: %s" % addon_work_folder, xbmc.LOGNOTICE )
log( "Addon Database: %s" % addon_db, xbmc.LOGNOTICE )
log( "Addon settings: %s" % settings_file, xbmc.LOGNOTICE )
query = "SELECT version FROM counts"
if xbmcgui.Window(10000).getProperty( "cdart_manager_update" ) == "True": # Check to see if skin property is set, if it is, gracefully exit the script
if not os.environ.get( "OS", "win32" ) in ("win32", "Windows_NT"):
background_db = False
# message "cdART Manager, Stopping Background Database Building"
dialog_msg( "okdialog", heading = __language__(32042), line1 = __language__(32119) )
log( "Background Database Was in Progress, Stopping, allowing script to continue", xbmc.LOGNOTICE )
xbmcgui.Window( 10000 ).setProperty("cdartmanager_update", "False")
else:
background_db = True
# message "cdART Manager, Background Database building in progress... Exiting Script..."
dialog_msg( "okdialog", heading = __language__(32042), line1 = __language__(32118) )
log( "Background Database Building in Progress, exiting", xbmc.LOGNOTICE )
xbmcgui.Window( 10000 ).setProperty("cdartmanager_update", "False")
if not background_db and not soft_exit: # If Settings exists and not in background_db mode, continue on
log( "Addon Work Folder Found, Checking For Database", xbmc.LOGNOTICE )
if not exists(addon_db) and not background_db: # if l_cdart.db missing, must be first run
log( "Addon Db not found, Must Be First Run", xbmc.LOGNOTICE )
first_run = True
elif not background_db and not soft_exit:
log( "Addon Db Found, Checking Database Version", xbmc.LOGNOTICE )
if exists(addon_db_crash) and not first_run and not background_db and not soft_exit: # if l_cdart.db.journal exists, creating database must have crashed at some point, delete and start over
log( "Detected Database Crash, Trying to delete", xbmc.LOGNOTICE )
try:
delete_file(addon_db)
delete_file(addon_db_crash)
except StandardError, e:
log( "Error Occurred: %s " % e.__class__.__name__, xbmc.LOGNOTICE )
traceback.print_exc()
script_fail = True
elif not first_run and not background_db and not soft_exit and not script_fail: # Test database version
log( "Looking for database version: %s" % __dbversion__, xbmc.LOGNOTICE )
try:
conn_l = sqlite3.connect(addon_db)
c = conn_l.cursor()
c.execute(query)
version=c.fetchall()
c.close
if version[0][0] == __dbversion__:
log( "Database matched", xbmc.LOGNOTICE )
elif version[0][0] == __dbversionold__:
log( "Version 2.7.8 found, Removing Bach MBID's from database", xbmc.LOGNOTICE )
mbid_repair()
elif version[0][0] == __dbversionancient__:
log( "Version 1.5.3 found, Adding new column to Local Album Artist and Local Artists", xbmc.LOGNOTICE )
all_artists = []
local_artists = []
file_copy( addon_db,addon_db_update )
conn = sqlite3.connect( addon_db )
c = conn.cursor()
try:
c.execute('ALTER TABLE lalist ADD COLUMN fanarttv_has_art;')
except:
traceback.print_exc()
try:
c.execute('ALTER TABLE local_artists ADD COLUMN fanarttv_has_art;')
except:
traceback.print_exc()
c.close()
local_artist_count, album_count, artist_count, cdart_existing = new_local_count()
store_counts( local_artist_count, artist_count, album_count, cdart_existing )
local_artists = get_local_artists_db( mode="album_artists" )
if enable_all_artists:
all_artists = get_local_artists_db( mode="all_artists" )
first_check( all_artists, local_artists, background=False, update_db = True )
else:
log( "Database Not Matched - trying to delete" , xbmc.LOGNOTICE )
rebuild = dialog_msg( "yesno", heading = __language__(32108) , line1 = __language__(32109) )
soft_exit = True
except StandardError, e:
traceback.print_exc()
log( "# Error: %s" % e.__class__.__name__, xbmc.LOGNOTICE )
try:
log( "Trying To Delete Database" , xbmc.LOGNOTICE )
delete_file(addon_db)
except StandardError, e:
traceback.print_exc()
log( "# unable to remove folder", xbmc.LOGNOTICE )
log( "# Error: %s" % e.__class__.__name__, xbmc.LOGNOTICE )
script_fail = True
path = __addon__.getAddonInfo('path')
if not script_fail and not background_db:
if rebuild:
from database import refresh_db
local_album_count, local_artist_count, local_cdart_count = refresh_db( True )
elif not rebuild and not soft_exit:
import gui
try:
ui = gui.GUI( "script-cdartmanager.xml" , __addon__.getAddonInfo('path'), "Default")
xbmc.sleep(2000)
ui.doModal()
del ui
clear_skin_properties()
except:
log( "Error in script occured", xbmc.LOGNOTICE )
traceback.print_exc()
dialog_msg( "close" )
clear_skin_properties()
elif not background_db and not soft_exit:
log( "Problem accessing folder, exiting script", xbmc.LOGNOTICE )
xbmc.executebuiltin("Notification( %s, %s, %d, %s)" % ( __language__(32042), __language__(32110), 500, image) )
clear_skin_properties()
except:
print "Unexpected error:", sys.exc_info()[0]
raise
clear_skin_properties()
else:
clear_skin_properties()