Improved settings handling - fulltime service

This commit is contained in:
warwickh 2021-09-28 14:52:43 +10:00
parent cefe9d617f
commit 3a71d3c107
3 changed files with 52 additions and 68 deletions

View File

@ -70,6 +70,8 @@ class SQLiteDatabase(object):
last_update = self.get_value(artist_id, 'last_update')
record_age = round(time.time())-round(float(last_update[0][0]))
return record_age
except IndexError:
print("No existing record for artist %s" % artist_id)
except Exception as e:
print("get_record_age failed %s" % e)
return 0

10
main.py
View File

@ -31,6 +31,10 @@ connection = None
db = None
cachetime = int(Addon().get_setting('cachetime'))
try:
enhancedInfo = Addon().get_setting('enhanced_info')
except:
enhancedInfo = False
db_filename = "subsonic_sqlite.db"
@ -775,13 +779,9 @@ def get_artist_info(artist_id, forced=False):
print("Retreiving artist info for id: %s"%(artist_id))
#popup("Updating artist info\nplease wait")
try:
if Addon().get_setting('enhanced_info'):
if enhancedInfo:
artist_info = db.get_value(artist_id, 'artist_info')[0][0]
artist_wiki = db.get_value(artist_id, 'wikipedia_extract')[0][0]
#plugin.log("Artist info: %s"%artist_info)
#plugin.log("Artist wiki: %s"%artist_wiki)
#plugin.log("Len Artist info: %s"%len(artist_info))
#plugin.log("Len Artist wiki: %s"%len(artist_wiki))
if(len(artist_info)<10):
print("Using wiki data")
artist_info = artist_wiki

View File

@ -17,6 +17,11 @@ connection = None
db = None
mb = None
serviceEnabled = True
refresh_age = 86400 #multiple of random to age info records - needs some validation
check_freq = 300#3600 #How often to run a refresh cycle - needs some validation
db_filename = "subsonic_sqlite.db"
last_db_check = 0
@ -42,14 +47,12 @@ scrobbled = False
def popup(text, time=5000, image=None):
title = plugin.addon.getAddonInfo('name')
icon = plugin.addon.getAddonInfo('icon')
xbmc.executebuiltin('Notification(%s, %s, %d, %s)' % (title, text,
time, icon))
xbmc.executebuiltin('Notification(%s, %s, %d, %s)' % (title, text, time, icon))
def get_connection():
global connection
if connection==None:
connected = False
# Create connection
try:
connection = libsonic.Connection(
baseUrl=Addon().get_setting('subsonic_url'),
@ -72,13 +75,10 @@ def get_connection():
return connection
def get_mb():
global mb
mb = musicbrainz.MBConnection()
return mb
def get_db():
global db
global db_filename
db_path = os.path.join(plugin.profile_dir, db_filename)
plugin.log("Getting DB %s"%db_path)
try:
@ -87,23 +87,8 @@ def get_db():
plugin.log("Connecting to DB failed: %s"%e)
return db
def check_artist_info():
db = get_db()
connection = get_connection()
response = connection.getArtists()
for index in response["artists"]["index"]:
for artist in index["artist"]:
artist_id = artist['id']
artist_name = db.get_value(artist_id, 'artist_name')
artist_info = db.get_value(artist_id, 'artist_info')
artist_wiki = db.get_value(artist_id, 'wikipedia_extract')
plugin.log("Name %s"%(artist_name))
plugin.log("LastFM %s"%(artist_info))
plugin.log("Wiki %s"%(artist_wiki))
def refresh_artist(artist_id):
db = get_db()
mb = get_mb()
connection = get_connection()
artist = connection.getArtist(artist_id)#['subsonic-response']
artist_name = artist['artist']['name']
@ -115,6 +100,8 @@ def refresh_artist(artist_id):
plugin.log("subbed: %s"%artist_info)
except:
artist_info = ""
if enhancedInfo:
mb = get_mb()
mb_artist_id = mb.get_artist_id(artist_name)
artist_image_url = mb.get_artist_image(mb_artist_id)
wikipedia_url = mb.get_artist_wikpedia(mb_artist_id)
@ -130,10 +117,7 @@ def refresh_artist(artist_id):
def check_db_status(forced=False):
global last_db_check
refresh_age = 86400
check_freq = 300#3600
refresh_single_flag = False
if(enhancedInfo):
try:
if(time.time()-check_freq > last_db_check) or forced:
#popup("DB Check Starting")
@ -152,7 +136,7 @@ def check_db_status(forced=False):
if(record_age>0):refresh_single_flag = True
last_db_check = time.time()
except Exception as e:
plugin.log("DB rcheck failed %s"%e)
plugin.log("DB check failed %s"%e)
return
@ -179,12 +163,9 @@ def check_player_status():
except Exception as e:
xbmc.log("Subsonic scrobble check failed %e"%e, xbmc.LOGINFO)
return
#pass
#xbmc.log("Playing stopped", xbmc.LOGINFO)
def scrobble_track(track_id):
connection = get_connection()
if connection==False:
return False
res = connection.scrobble(track_id)
@ -196,8 +177,9 @@ def scrobble_track(track_id):
popup("Scrobble failed")
return False
if __name__ == '__main__':
if(scrobbleEnabled or enhancedInfo):
if serviceEnabled:
monitor = xbmc.Monitor()
xbmc.log("Subsonic service started", xbmc.LOGINFO)
popup("Subsonic service started")
@ -207,4 +189,4 @@ if __name__ == '__main__':
check_player_status()
check_db_status()
else:
plugin.log("Subsonic service not started due to settings")
plugin.log("Subsonic service not enabled")