2015-12-25 06:51:47 +11:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2016-02-12 00:03:04 +11:00
|
|
|
###############################################################################
|
2017-12-10 00:35:08 +11:00
|
|
|
from logging import getLogger
|
2016-04-22 22:46:08 +10:00
|
|
|
from ntpath import dirname
|
2018-03-01 03:24:32 +11:00
|
|
|
from sqlite3 import IntegrityError
|
2015-12-25 06:51:47 +11:00
|
|
|
|
|
|
|
import artwork
|
2018-03-05 01:29:45 +11:00
|
|
|
from utils import kodi_sql, try_decode, unix_timestamp, unix_date_to_kodi
|
2017-01-25 02:04:42 +11:00
|
|
|
import variables as v
|
2016-08-31 00:43:56 +10:00
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
|
2018-02-25 23:37:30 +11:00
|
|
|
LOG = getLogger("PLEX." + __name__)
|
2015-12-25 06:51:47 +11:00
|
|
|
|
2016-02-12 00:03:04 +11:00
|
|
|
###############################################################################
|
2015-12-25 06:51:47 +11:00
|
|
|
|
|
|
|
|
2018-02-25 23:42:20 +11:00
|
|
|
class GetKodiDB(object):
|
2016-02-12 00:03:04 +11:00
|
|
|
"""
|
2017-01-29 23:06:09 +11:00
|
|
|
Usage: with GetKodiDB(db_type) as kodi_db:
|
2016-02-12 00:03:04 +11:00
|
|
|
do stuff with kodi_db
|
|
|
|
|
|
|
|
Parameters:
|
2017-01-29 23:06:09 +11:00
|
|
|
db_type: DB to open: 'video', 'music', 'plex', 'texture'
|
2016-02-12 00:03:04 +11:00
|
|
|
|
|
|
|
On exiting "with" (no matter what), commits get automatically committed
|
|
|
|
and the db gets closed
|
|
|
|
"""
|
2017-01-29 23:06:09 +11:00
|
|
|
def __init__(self, db_type):
|
2018-02-25 23:42:20 +11:00
|
|
|
self.kodiconn = None
|
2017-01-29 23:06:09 +11:00
|
|
|
self.db_type = db_type
|
2016-02-12 00:03:04 +11:00
|
|
|
|
|
|
|
def __enter__(self):
|
2018-02-11 22:59:04 +11:00
|
|
|
self.kodiconn = kodi_sql(self.db_type)
|
2018-02-25 23:42:20 +11:00
|
|
|
kodi_db = KodiDBMethods(self.kodiconn.cursor())
|
2017-01-09 01:03:41 +11:00
|
|
|
return kodi_db
|
2016-02-12 00:03:04 +11:00
|
|
|
|
2018-02-25 23:42:20 +11:00
|
|
|
def __exit__(self, typus, value, traceback):
|
2016-02-12 00:03:04 +11:00
|
|
|
self.kodiconn.commit()
|
|
|
|
self.kodiconn.close()
|
|
|
|
|
|
|
|
|
2018-02-25 23:42:20 +11:00
|
|
|
class KodiDBMethods(object):
|
|
|
|
"""
|
|
|
|
Best used indirectly with another Class GetKodiDB:
|
|
|
|
with GetKodiDB(db_type) as kodi_db:
|
|
|
|
kodi_db.method()
|
|
|
|
"""
|
2015-12-25 06:51:47 +11:00
|
|
|
def __init__(self, cursor):
|
|
|
|
self.cursor = cursor
|
2016-09-11 23:49:50 +10:00
|
|
|
self.artwork = artwork.Artwork()
|
2016-08-31 00:43:56 +10:00
|
|
|
|
2018-02-20 20:19:11 +11:00
|
|
|
def setup_path_table(self):
|
2016-04-07 21:49:05 +10:00
|
|
|
"""
|
|
|
|
Use with Kodi video DB
|
|
|
|
|
|
|
|
Sets strContent to e.g. 'movies' and strScraper to metadata.local
|
|
|
|
|
|
|
|
For some reason, Kodi ignores this if done via itemtypes while e.g.
|
|
|
|
adding or updating items. (addPath method does NOT work)
|
|
|
|
"""
|
2018-03-11 00:51:00 +11:00
|
|
|
path_id = self.get_path('plugin://%s.movies/' % v.ADDON_ID)
|
2018-02-22 06:24:31 +11:00
|
|
|
if path_id is None:
|
2018-03-04 23:39:40 +11:00
|
|
|
self.cursor.execute("select coalesce(max(idPath),0) from path")
|
2018-02-22 06:24:31 +11:00
|
|
|
path_id = self.cursor.fetchone()[0] + 1
|
|
|
|
query = '''
|
|
|
|
INSERT INTO path(idPath,
|
|
|
|
strPath,
|
|
|
|
strContent,
|
|
|
|
strScraper,
|
|
|
|
noUpdate,
|
|
|
|
exclude)
|
2018-02-24 03:22:57 +11:00
|
|
|
VALUES (?, ?, ?, ?, ?, ?)
|
2018-02-22 06:24:31 +11:00
|
|
|
'''
|
|
|
|
self.cursor.execute(query, (path_id,
|
|
|
|
'plugin://%s.movies/' % v.ADDON_ID,
|
|
|
|
'movies',
|
|
|
|
'metadata.local',
|
|
|
|
1,
|
2018-05-27 01:28:11 +10:00
|
|
|
None))
|
2018-02-20 20:19:11 +11:00
|
|
|
# And TV shows
|
2018-03-11 00:51:00 +11:00
|
|
|
path_id = self.get_path('plugin://%s.tvshows/' % v.ADDON_ID)
|
2018-02-22 06:24:31 +11:00
|
|
|
if path_id is None:
|
2018-03-04 23:39:40 +11:00
|
|
|
self.cursor.execute("select coalesce(max(idPath),0) from path")
|
2018-02-22 06:24:31 +11:00
|
|
|
path_id = self.cursor.fetchone()[0] + 1
|
|
|
|
query = '''
|
|
|
|
INSERT INTO path(idPath,
|
|
|
|
strPath,
|
|
|
|
strContent,
|
|
|
|
strScraper,
|
|
|
|
noUpdate,
|
|
|
|
exclude)
|
2018-02-24 03:22:57 +11:00
|
|
|
VALUES (?, ?, ?, ?, ?, ?)
|
2018-02-22 06:24:31 +11:00
|
|
|
'''
|
|
|
|
self.cursor.execute(query, (path_id,
|
|
|
|
'plugin://%s.tvshows/' % v.ADDON_ID,
|
|
|
|
'tvshows',
|
|
|
|
'metadata.local',
|
|
|
|
1,
|
2018-05-27 01:28:11 +10:00
|
|
|
None))
|
2016-04-07 21:49:05 +10:00
|
|
|
|
2018-03-11 01:44:08 +11:00
|
|
|
def parent_path_id(self, path):
|
2016-04-22 22:46:08 +10:00
|
|
|
"""
|
2018-03-11 01:44:08 +11:00
|
|
|
Video DB: Adds all subdirectories to path table while setting a "trail"
|
|
|
|
of parent path ids
|
2016-04-22 22:46:08 +10:00
|
|
|
"""
|
|
|
|
if "\\" in path:
|
|
|
|
# Local path
|
|
|
|
parentpath = "%s\\" % dirname(dirname(path))
|
|
|
|
else:
|
|
|
|
# Network path
|
|
|
|
parentpath = "%s/" % dirname(dirname(path))
|
2018-03-11 00:51:00 +11:00
|
|
|
pathid = self.get_path(parentpath)
|
2016-04-22 22:46:08 +10:00
|
|
|
if pathid is None:
|
2018-03-05 01:29:45 +11:00
|
|
|
self.cursor.execute("SELECT COALESCE(MAX(idPath),0) FROM path")
|
2016-04-22 22:46:08 +10:00
|
|
|
pathid = self.cursor.fetchone()[0] + 1
|
2018-03-05 01:29:45 +11:00
|
|
|
datetime = unix_date_to_kodi(unix_timestamp())
|
|
|
|
query = '''
|
|
|
|
INSERT INTO path(idPath, strPath, dateAdded)
|
|
|
|
VALUES (?, ?, ?)
|
|
|
|
'''
|
|
|
|
self.cursor.execute(query, (pathid, parentpath, datetime))
|
2018-03-11 01:44:08 +11:00
|
|
|
parent_id = self.parent_path_id(parentpath)
|
2018-03-05 01:29:45 +11:00
|
|
|
query = 'UPDATE path SET idParentPath = ? WHERE idPath = ?'
|
2018-03-11 01:44:08 +11:00
|
|
|
self.cursor.execute(query, (parent_id, pathid))
|
2016-04-22 22:46:08 +10:00
|
|
|
return pathid
|
|
|
|
|
2018-03-11 00:51:00 +11:00
|
|
|
def add_video_path(self, path, date_added=None, id_parent_path=None,
|
|
|
|
content=None, scraper=None):
|
|
|
|
"""
|
|
|
|
Returns the idPath from the path table. Creates a new entry if path
|
|
|
|
[unicode] does not yet exist (using date_added [kodi date type],
|
|
|
|
id_parent_path [int], content ['tvshows', 'movies', None], scraper
|
|
|
|
[usually 'metadata.local'])
|
|
|
|
|
|
|
|
WILL activate noUpdate for the path!
|
|
|
|
"""
|
2016-03-18 01:06:04 +11:00
|
|
|
if path is None:
|
2018-03-05 01:29:45 +11:00
|
|
|
path = ''
|
|
|
|
query = 'SELECT idPath FROM path WHERE strPath = ?'
|
2016-04-26 21:53:19 +10:00
|
|
|
self.cursor.execute(query, (path,))
|
2015-12-25 06:51:47 +11:00
|
|
|
try:
|
2016-04-26 21:53:19 +10:00
|
|
|
pathid = self.cursor.fetchone()[0]
|
2015-12-25 06:51:47 +11:00
|
|
|
except TypeError:
|
2018-03-05 01:29:45 +11:00
|
|
|
self.cursor.execute("SELECT COALESCE(MAX(idPath),0) FROM path")
|
2016-04-26 21:53:19 +10:00
|
|
|
pathid = self.cursor.fetchone()[0] + 1
|
2018-03-05 01:29:45 +11:00
|
|
|
query = '''
|
2018-03-11 00:51:00 +11:00
|
|
|
INSERT INTO path(idPath, strPath, dateAdded, idParentPath,
|
2018-05-27 01:28:11 +10:00
|
|
|
strContent, strScraper, noUpdate, exclude)
|
|
|
|
VALUES (?, ?, ?, ?, ?, ?, ?, ?)
|
2018-03-05 01:29:45 +11:00
|
|
|
'''
|
2018-03-11 00:51:00 +11:00
|
|
|
self.cursor.execute(query,
|
|
|
|
(pathid, path, date_added, id_parent_path,
|
2018-05-27 01:28:11 +10:00
|
|
|
content, scraper, 1, None))
|
2018-03-05 01:29:45 +11:00
|
|
|
return pathid
|
2015-12-25 06:51:47 +11:00
|
|
|
|
2018-03-05 01:29:45 +11:00
|
|
|
def add_music_path(self, path, strHash=None):
|
|
|
|
# SQL won't return existing paths otherwise
|
|
|
|
if path is None:
|
|
|
|
path = ''
|
|
|
|
query = 'SELECT idPath FROM path WHERE strPath = ?'
|
|
|
|
self.cursor.execute(query, (path,))
|
|
|
|
try:
|
|
|
|
pathid = self.cursor.fetchone()[0]
|
|
|
|
except TypeError:
|
|
|
|
self.cursor.execute("SELECT COALESCE(MAX(idPath),0) FROM path")
|
|
|
|
pathid = self.cursor.fetchone()[0] + 1
|
|
|
|
query = '''
|
|
|
|
INSERT INTO path(idPath, strPath, strHash)
|
|
|
|
VALUES (?, ?, ?)
|
|
|
|
'''
|
|
|
|
self.cursor.execute(query, (pathid, path, strHash))
|
2015-12-25 06:51:47 +11:00
|
|
|
return pathid
|
|
|
|
|
2018-03-11 00:51:00 +11:00
|
|
|
def get_path(self, path):
|
|
|
|
"""
|
|
|
|
Returns the idPath from the path table for path [unicode] or None
|
|
|
|
"""
|
|
|
|
self.cursor.execute('SELECT idPath FROM path WHERE strPath = ?',
|
|
|
|
(path,))
|
2015-12-25 06:51:47 +11:00
|
|
|
try:
|
2016-04-26 21:53:19 +10:00
|
|
|
pathid = self.cursor.fetchone()[0]
|
2015-12-25 06:51:47 +11:00
|
|
|
except TypeError:
|
|
|
|
pathid = None
|
|
|
|
return pathid
|
|
|
|
|
2018-03-11 03:09:21 +11:00
|
|
|
def add_file(self, filename, path_id, date_added):
|
2018-03-11 01:44:08 +11:00
|
|
|
"""
|
|
|
|
Adds the filename [unicode] to the table files if not already added
|
|
|
|
and returns the idFile.
|
|
|
|
"""
|
|
|
|
query = 'SELECT idFile FROM files WHERE strFilename = ? AND idPath = ?'
|
|
|
|
self.cursor.execute(query, (filename, path_id))
|
2015-12-25 06:51:47 +11:00
|
|
|
try:
|
2018-03-11 03:09:21 +11:00
|
|
|
file_id = self.cursor.fetchone()[0]
|
2015-12-25 06:51:47 +11:00
|
|
|
except TypeError:
|
2018-03-11 01:44:08 +11:00
|
|
|
self.cursor.execute('SELECT COALESCE(MAX(idFile), 0) FROM files')
|
2018-03-11 03:09:21 +11:00
|
|
|
file_id = self.cursor.fetchone()[0] + 1
|
|
|
|
query = '''
|
|
|
|
INSERT INTO files(idFile, idPath, strFilename, dateAdded)
|
|
|
|
VALUES (?, ?, ?, ?)
|
|
|
|
'''
|
|
|
|
self.cursor.execute(query, (file_id, path_id, filename, date_added))
|
|
|
|
return file_id
|
|
|
|
|
2018-04-09 16:13:54 +10:00
|
|
|
def obsolete_file_ids(self):
|
2018-03-15 20:25:51 +11:00
|
|
|
"""
|
2018-04-09 16:13:54 +10:00
|
|
|
Returns a list of (idFile,) tuples (ints) of all Kodi file ids that do
|
|
|
|
not have a dateAdded set (dateAdded is NULL) and the filename start with
|
|
|
|
'plugin://plugin.video.plexkodiconnect'
|
|
|
|
These entries should be deleted as they're created falsely by Kodi.
|
2018-03-15 20:25:51 +11:00
|
|
|
"""
|
2018-04-08 23:38:13 +10:00
|
|
|
query = '''
|
|
|
|
SELECT idFile FROM files
|
|
|
|
WHERE dateAdded IS NULL
|
|
|
|
AND strFilename LIKE \'plugin://plugin.video.plexkodiconnect%\'
|
|
|
|
'''
|
2018-04-09 16:13:54 +10:00
|
|
|
self.cursor.execute(query)
|
|
|
|
return self.cursor.fetchall()
|
2018-03-15 20:25:51 +11:00
|
|
|
|
2018-03-23 04:51:11 +11:00
|
|
|
def show_id_from_path(self, path):
|
|
|
|
"""
|
|
|
|
Returns the idShow for path [unicode] or None
|
|
|
|
"""
|
|
|
|
self.cursor.execute('SELECT idPath FROM path WHERE strPath = ? LIMIT 1',
|
|
|
|
(path, ))
|
|
|
|
try:
|
|
|
|
path_id = self.cursor.fetchone()[0]
|
|
|
|
except TypeError:
|
|
|
|
return
|
|
|
|
query = 'SELECT idShow FROM tvshowlinkpath WHERE idPath = ? LIMIT 1'
|
|
|
|
self.cursor.execute(query, (path_id, ))
|
|
|
|
try:
|
|
|
|
show_id = self.cursor.fetchone()[0]
|
|
|
|
except TypeError:
|
|
|
|
show_id = None
|
|
|
|
return show_id
|
|
|
|
|
2018-04-09 16:13:54 +10:00
|
|
|
def remove_file(self, file_id, remove_orphans=True):
|
2018-03-11 03:09:21 +11:00
|
|
|
"""
|
|
|
|
Removes the entry for file_id from the files table. Will also delete
|
2018-04-09 16:13:54 +10:00
|
|
|
entries from the associated tables: bookmark, settings, streamdetails.
|
|
|
|
If remove_orphans is true, this method will delete any orphaned path
|
|
|
|
entries in the Kodi path table
|
2018-03-11 03:09:21 +11:00
|
|
|
"""
|
2018-03-11 21:47:04 +11:00
|
|
|
self.cursor.execute('SELECT idPath FROM files WHERE idFile = ? LIMIT 1',
|
|
|
|
(file_id,))
|
2018-03-23 03:03:26 +11:00
|
|
|
try:
|
|
|
|
path_id = self.cursor.fetchone()[0]
|
|
|
|
except TypeError:
|
|
|
|
return
|
2018-03-11 03:09:21 +11:00
|
|
|
self.cursor.execute('DELETE FROM files WHERE idFile = ?',
|
|
|
|
(file_id,))
|
|
|
|
self.cursor.execute('DELETE FROM bookmark WHERE idFile = ?',
|
|
|
|
(file_id,))
|
|
|
|
self.cursor.execute('DELETE FROM settings WHERE idFile = ?',
|
|
|
|
(file_id,))
|
|
|
|
self.cursor.execute('DELETE FROM streamdetails WHERE idFile = ?',
|
|
|
|
(file_id,))
|
2018-03-11 21:47:04 +11:00
|
|
|
self.cursor.execute('DELETE FROM stacktimes WHERE idFile = ?',
|
|
|
|
(file_id,))
|
2018-04-09 16:13:54 +10:00
|
|
|
if remove_orphans:
|
|
|
|
# Delete orphaned path entry
|
|
|
|
query = 'SELECT idFile FROM files WHERE idPath = ? LIMIT 1'
|
|
|
|
self.cursor.execute(query, (path_id,))
|
|
|
|
if self.cursor.fetchone() is None:
|
|
|
|
self.cursor.execute('DELETE FROM path WHERE idPath = ?',
|
|
|
|
(path_id,))
|
2015-12-25 06:51:47 +11:00
|
|
|
|
2018-02-28 07:14:42 +11:00
|
|
|
def _modify_link_and_table(self, kodi_id, kodi_type, entries, link_table,
|
2018-02-28 23:45:53 +11:00
|
|
|
table, key):
|
2018-02-28 07:14:42 +11:00
|
|
|
query = '''
|
|
|
|
SELECT %s FROM %s WHERE name = ? COLLATE NOCASE LIMIT 1
|
|
|
|
''' % (key, table)
|
2018-02-28 23:45:34 +11:00
|
|
|
query_id = 'SELECT COALESCE(MAX(%s), -1) FROM %s' % (key, table)
|
2018-02-28 07:14:42 +11:00
|
|
|
query_new = ('INSERT INTO %s(%s, name) values(?, ?)'
|
|
|
|
% (table, key))
|
|
|
|
entry_ids = []
|
|
|
|
for entry in entries:
|
|
|
|
self.cursor.execute(query, (entry,))
|
|
|
|
try:
|
|
|
|
entry_id = self.cursor.fetchone()[0]
|
|
|
|
except TypeError:
|
|
|
|
self.cursor.execute(query_id)
|
|
|
|
entry_id = self.cursor.fetchone()[0] + 1
|
2018-02-28 23:45:53 +11:00
|
|
|
LOG.debug('Adding %s: %s with id %s', table, entry, entry_id)
|
2018-02-28 07:14:42 +11:00
|
|
|
self.cursor.execute(query_new, (entry_id, entry))
|
|
|
|
finally:
|
|
|
|
entry_ids.append(entry_id)
|
|
|
|
# Now process the ids obtained from the names
|
|
|
|
# Get the existing, old entries
|
|
|
|
query = ('SELECT %s FROM %s WHERE media_id = ? AND media_type = ?'
|
|
|
|
% (key, link_table))
|
|
|
|
self.cursor.execute(query, (kodi_id, kodi_type))
|
|
|
|
old_entries = self.cursor.fetchall()
|
|
|
|
outdated_entries = []
|
|
|
|
for entry_id in old_entries:
|
|
|
|
try:
|
2018-02-28 23:45:08 +11:00
|
|
|
entry_ids.remove(entry_id[0])
|
2018-02-28 07:14:42 +11:00
|
|
|
except ValueError:
|
2018-02-28 23:45:08 +11:00
|
|
|
outdated_entries.append(entry_id[0])
|
2018-02-28 07:14:42 +11:00
|
|
|
# Add all new entries that haven't already been added
|
|
|
|
query = 'INSERT INTO %s VALUES (?, ?, ?)' % link_table
|
|
|
|
for entry_id in entry_ids:
|
2018-05-13 20:31:54 +10:00
|
|
|
try:
|
|
|
|
self.cursor.execute(query, (entry_id, kodi_id, kodi_type))
|
|
|
|
except IntegrityError:
|
|
|
|
LOG.info('IntegrityError: skipping entry %s for table %s',
|
|
|
|
entry_id, link_table)
|
2018-02-28 07:14:42 +11:00
|
|
|
# Delete all outdated references in the link table. Also check whether
|
|
|
|
# we need to delete orphaned entries in the master table
|
|
|
|
query = '''
|
|
|
|
DELETE FROM %s WHERE %s = ? AND media_id = ? AND media_type = ?
|
|
|
|
''' % (link_table, key)
|
|
|
|
query_rem = 'SELECT %s FROM %s WHERE %s = ?' % (key, link_table, key)
|
|
|
|
query_delete = 'DELETE FROM %s WHERE %s = ?' % (table, key)
|
|
|
|
for entry_id in outdated_entries:
|
|
|
|
self.cursor.execute(query, (entry_id, kodi_id, kodi_type))
|
|
|
|
self.cursor.execute(query_rem, (entry_id,))
|
|
|
|
if self.cursor.fetchone() is None:
|
|
|
|
# Delete in the original table because entry is now orphaned
|
2018-03-01 03:24:32 +11:00
|
|
|
LOG.debug('Removing %s from Kodi DB: %s', table, entry_id)
|
2018-02-28 07:14:42 +11:00
|
|
|
self.cursor.execute(query_delete, (entry_id,))
|
|
|
|
|
2018-03-01 03:24:32 +11:00
|
|
|
def modify_countries(self, kodi_id, kodi_type, countries=None):
|
2018-02-28 07:14:42 +11:00
|
|
|
"""
|
|
|
|
Writes a country (string) in the list countries into the Kodi DB. Will
|
|
|
|
also delete any orphaned country entries.
|
|
|
|
"""
|
2018-03-01 03:24:32 +11:00
|
|
|
countries = countries if countries else []
|
2018-02-28 07:14:42 +11:00
|
|
|
self._modify_link_and_table(kodi_id,
|
|
|
|
kodi_type,
|
|
|
|
countries,
|
|
|
|
'country_link',
|
|
|
|
'country',
|
|
|
|
'country_id')
|
|
|
|
|
2018-03-01 03:24:32 +11:00
|
|
|
def modify_genres(self, kodi_id, kodi_type, genres=None):
|
2018-02-28 07:14:42 +11:00
|
|
|
"""
|
|
|
|
Writes a country (string) in the list countries into the Kodi DB. Will
|
|
|
|
also delete any orphaned country entries.
|
|
|
|
"""
|
2018-03-01 03:24:32 +11:00
|
|
|
genres = genres if genres else []
|
2018-02-28 07:14:42 +11:00
|
|
|
self._modify_link_and_table(kodi_id,
|
|
|
|
kodi_type,
|
|
|
|
genres,
|
|
|
|
'genre_link',
|
|
|
|
'genre',
|
|
|
|
'genre_id')
|
|
|
|
|
2018-03-01 03:24:32 +11:00
|
|
|
def modify_studios(self, kodi_id, kodi_type, studios=None):
|
2018-02-28 07:14:42 +11:00
|
|
|
"""
|
|
|
|
Writes a country (string) in the list countries into the Kodi DB. Will
|
|
|
|
also delete any orphaned country entries.
|
|
|
|
"""
|
2018-03-01 03:24:32 +11:00
|
|
|
studios = studios if studios else []
|
2018-02-28 07:14:42 +11:00
|
|
|
self._modify_link_and_table(kodi_id,
|
|
|
|
kodi_type,
|
|
|
|
studios,
|
|
|
|
'studio_link',
|
|
|
|
'studio',
|
|
|
|
'studio_id')
|
|
|
|
|
2018-03-01 03:24:32 +11:00
|
|
|
def modify_tags(self, kodi_id, kodi_type, tags=None):
|
2018-02-28 07:14:42 +11:00
|
|
|
"""
|
|
|
|
Writes a country (string) in the list countries into the Kodi DB. Will
|
|
|
|
also delete any orphaned country entries.
|
|
|
|
"""
|
2018-03-01 03:24:32 +11:00
|
|
|
tags = tags if tags else []
|
2018-02-28 07:14:42 +11:00
|
|
|
self._modify_link_and_table(kodi_id,
|
|
|
|
kodi_type,
|
|
|
|
tags,
|
|
|
|
'tag_link',
|
|
|
|
'tag',
|
|
|
|
'tag_id')
|
|
|
|
|
2018-03-01 03:24:32 +11:00
|
|
|
def modify_people(self, kodi_id, kodi_type, people=None):
|
2018-02-26 04:07:48 +11:00
|
|
|
"""
|
2018-03-01 03:24:32 +11:00
|
|
|
Makes sure that actors, directors and writers are recorded correctly
|
|
|
|
for the elmement kodi_id, kodi_type.
|
|
|
|
Will also delete a freshly orphaned actor entry.
|
2018-02-26 04:07:48 +11:00
|
|
|
"""
|
2018-03-01 03:24:32 +11:00
|
|
|
people = people if people else {'actor': [],
|
|
|
|
'director': [],
|
|
|
|
'writer': []}
|
|
|
|
for kind, people_list in people.iteritems():
|
|
|
|
self._modify_people_kind(kodi_id, kodi_type, kind, people_list)
|
2018-02-26 00:15:50 +11:00
|
|
|
|
2018-03-01 03:24:32 +11:00
|
|
|
def _modify_people_kind(self, kodi_id, kodi_type, kind, people_list):
|
|
|
|
# Get the people already saved in the DB for this specific item
|
|
|
|
if kind == 'actor':
|
2016-12-21 02:13:19 +11:00
|
|
|
query = '''
|
2018-03-01 03:24:32 +11:00
|
|
|
SELECT actor.actor_id, actor.name, art.url, actor_link.role,
|
|
|
|
actor_link.cast_order
|
|
|
|
FROM actor_link
|
|
|
|
LEFT JOIN actor ON actor.actor_id = actor_link.actor_id
|
|
|
|
LEFT JOIN art ON (art.media_id = actor_link.actor_id AND
|
|
|
|
art.media_type = 'actor')
|
|
|
|
WHERE actor_link.media_id = ? AND actor_link.media_type = ?
|
2016-12-21 02:13:19 +11:00
|
|
|
'''
|
2018-03-01 03:24:32 +11:00
|
|
|
else:
|
2016-12-21 02:13:19 +11:00
|
|
|
query = '''
|
2018-03-01 03:24:32 +11:00
|
|
|
SELECT actor.actor_id, actor.name
|
|
|
|
FROM {0}_link
|
|
|
|
LEFT JOIN actor ON actor.actor_id = {0}_link.actor_id
|
|
|
|
WHERE {0}_link.media_id = ? AND {0}_link.media_type = ?
|
|
|
|
'''.format(kind)
|
2018-02-26 03:45:38 +11:00
|
|
|
self.cursor.execute(query, (kodi_id, kodi_type))
|
2018-03-01 03:24:32 +11:00
|
|
|
old_people = self.cursor.fetchall()
|
|
|
|
# Determine which people we need to save or delete
|
|
|
|
outdated_people = []
|
|
|
|
for person in old_people:
|
|
|
|
try:
|
|
|
|
people_list.remove(person[1:])
|
|
|
|
except ValueError:
|
|
|
|
outdated_people.append(person)
|
|
|
|
# Get rid of old entries
|
2018-02-26 03:45:38 +11:00
|
|
|
query = '''
|
2018-03-01 03:24:32 +11:00
|
|
|
DELETE FROM %s_link
|
|
|
|
WHERE actor_id = ? AND media_id = ? AND media_type = ?
|
|
|
|
''' % kind
|
|
|
|
query_actor_check = 'SELECT actor_id FROM %s_link WHERE actor_id = ?'
|
|
|
|
query_actor_delete = 'DELETE FROM actor WHERE actor_id = ?'
|
|
|
|
for person in outdated_people:
|
|
|
|
# Delete the outdated entry
|
|
|
|
self.cursor.execute(query, (person[0], kodi_id, kodi_type))
|
|
|
|
# Do we now have orphaned entries?
|
|
|
|
for person_kind in ('actor', 'writer', 'director'):
|
|
|
|
self.cursor.execute(query_actor_check % person_kind,
|
|
|
|
(person[0],))
|
|
|
|
if self.cursor.fetchone() is not None:
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
# person entry in actor table is now orphaned
|
|
|
|
# Delete the person from actor table
|
|
|
|
LOG.debug('Removing person from Kodi DB: %s', person)
|
|
|
|
self.cursor.execute(query_actor_delete, (person[0],))
|
|
|
|
if kind == 'actor':
|
|
|
|
# Delete any associated artwork
|
2018-03-04 23:39:18 +11:00
|
|
|
self.artwork.delete_artwork(person[0], 'actor', self.cursor)
|
2018-03-01 03:24:32 +11:00
|
|
|
# Save new people to Kodi DB by iterating over the remaining entries
|
|
|
|
if kind == 'actor':
|
|
|
|
query = 'INSERT INTO actor_link VALUES (?, ?, ?, ?, ?)'
|
|
|
|
for person in people_list:
|
|
|
|
LOG.debug('Adding actor to Kodi DB: %s', person)
|
|
|
|
# Make sure the person entry in table actor exists
|
|
|
|
actor_id = self._get_actor_id(person[0], art_url=person[1])
|
|
|
|
# Link the person with the media element
|
|
|
|
try:
|
|
|
|
self.cursor.execute(query, (actor_id, kodi_id, kodi_type,
|
|
|
|
person[2], person[3]))
|
|
|
|
except IntegrityError:
|
|
|
|
# With Kodi, an actor may have only one role, unlike Plex
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
query = 'INSERT INTO %s_link VALUES (?, ?, ?)' % kind
|
|
|
|
for person in people_list:
|
|
|
|
LOG.debug('Adding %s to Kodi DB: %s', kind, person[0])
|
|
|
|
# Make sure the person entry in table actor exists:
|
|
|
|
actor_id = self._get_actor_id(person[0])
|
|
|
|
# Link the person with the media element
|
|
|
|
try:
|
|
|
|
self.cursor.execute(query, (actor_id, kodi_id, kodi_type))
|
|
|
|
except IntegrityError:
|
|
|
|
# Again, Kodi may have only one person assigned to a role
|
|
|
|
pass
|
|
|
|
|
|
|
|
def _get_actor_id(self, name, art_url=None):
|
|
|
|
"""
|
|
|
|
Returns the actor_id [int] for name [unicode] in table actor (without
|
|
|
|
ensuring that the name matches).
|
|
|
|
If not, will create a new record with actor_id, name, art_url
|
|
|
|
|
|
|
|
Uses Plex ids and thus assumes that Plex person id is unique!
|
|
|
|
"""
|
|
|
|
self.cursor.execute('SELECT actor_id FROM actor WHERE name=? LIMIT 1',
|
|
|
|
(name,))
|
|
|
|
try:
|
|
|
|
actor_id = self.cursor.fetchone()[0]
|
|
|
|
except TypeError:
|
|
|
|
# Not yet in actor DB, add person
|
|
|
|
self.cursor.execute('SELECT COALESCE(MAX(actor_id),-1) FROM actor')
|
|
|
|
actor_id = self.cursor.fetchone()[0] + 1
|
|
|
|
self.cursor.execute('INSERT INTO actor(actor_id, name) '
|
|
|
|
'VALUES (?, ?)',
|
|
|
|
(actor_id, name))
|
|
|
|
if art_url:
|
2018-03-04 23:39:18 +11:00
|
|
|
self.artwork.modify_art(art_url,
|
|
|
|
actor_id,
|
|
|
|
'actor',
|
|
|
|
'thumb',
|
|
|
|
self.cursor)
|
2018-03-01 03:24:32 +11:00
|
|
|
return actor_id
|
2018-02-26 03:45:38 +11:00
|
|
|
|
2018-03-04 00:40:12 +11:00
|
|
|
def get_art(self, kodi_id, kodi_type):
|
|
|
|
"""
|
|
|
|
Returns a dict of all available artwork with unicode urls/paths:
|
|
|
|
{
|
|
|
|
'thumb'
|
|
|
|
'poster'
|
|
|
|
'banner'
|
|
|
|
'clearart'
|
|
|
|
'clearlogo'
|
2018-03-05 00:12:43 +11:00
|
|
|
'discart'
|
|
|
|
'fanart' and also potentially more fanart 'fanart1', 'fanart2',
|
2018-03-04 00:40:12 +11:00
|
|
|
}
|
2018-03-05 00:12:43 +11:00
|
|
|
Missing fanart will not appear in the dict. 'landscape' and 'icon'
|
|
|
|
might be implemented in the future.
|
2018-03-04 00:40:12 +11:00
|
|
|
"""
|
|
|
|
query = 'SELECT type, url FROM art WHERE media_id=? AND media_type=?'
|
|
|
|
self.cursor.execute(query, (kodi_id, kodi_type))
|
|
|
|
return dict(self.cursor.fetchall())
|
|
|
|
|
2018-02-26 19:18:44 +11:00
|
|
|
def modify_streams(self, fileid, streamdetails=None, runtime=None):
|
|
|
|
"""
|
|
|
|
Leave streamdetails and runtime empty to delete all stream entries for
|
|
|
|
fileid
|
|
|
|
"""
|
2015-12-25 06:51:47 +11:00
|
|
|
# First remove any existing entries
|
2018-03-01 03:24:32 +11:00
|
|
|
self.cursor.execute('DELETE FROM streamdetails WHERE idFile = ?',
|
|
|
|
(fileid,))
|
|
|
|
if not streamdetails:
|
|
|
|
return
|
|
|
|
for videotrack in streamdetails['video']:
|
|
|
|
query = '''
|
|
|
|
INSERT INTO streamdetails(
|
|
|
|
idFile, iStreamType, strVideoCodec, fVideoAspect,
|
|
|
|
iVideoWidth, iVideoHeight, iVideoDuration ,strStereoMode)
|
|
|
|
VALUES (?, ?, ?, ?, ?, ?, ?, ?)
|
|
|
|
'''
|
|
|
|
self.cursor.execute(query,
|
|
|
|
(fileid, 0, videotrack['codec'],
|
|
|
|
videotrack['aspect'], videotrack['width'],
|
|
|
|
videotrack['height'], runtime,
|
|
|
|
videotrack['video3DFormat']))
|
|
|
|
for audiotrack in streamdetails['audio']:
|
|
|
|
query = '''
|
|
|
|
INSERT INTO streamdetails(
|
|
|
|
idFile, iStreamType, strAudioCodec, iAudioChannels,
|
|
|
|
strAudioLanguage)
|
|
|
|
VALUES (?, ?, ?, ?, ?)
|
|
|
|
'''
|
|
|
|
self.cursor.execute(query,
|
|
|
|
(fileid, 1, audiotrack['codec'],
|
|
|
|
audiotrack['channels'],
|
|
|
|
audiotrack['language']))
|
|
|
|
for subtitletrack in streamdetails['subtitle']:
|
|
|
|
query = '''
|
|
|
|
INSERT INTO streamdetails(idFile, iStreamType,
|
|
|
|
strSubtitleLanguage)
|
|
|
|
VALUES (?, ?, ?)
|
|
|
|
'''
|
|
|
|
self.cursor.execute(query, (fileid, 2, subtitletrack))
|
2015-12-25 06:51:47 +11:00
|
|
|
|
2018-02-12 00:42:49 +11:00
|
|
|
def resume_points(self):
|
2016-03-12 00:42:14 +11:00
|
|
|
"""
|
|
|
|
VIDEOS
|
|
|
|
|
|
|
|
Returns all Kodi idFile that have a resume point set (not unwatched
|
|
|
|
ones or items that have already been completely watched)
|
|
|
|
"""
|
2018-02-22 18:13:24 +11:00
|
|
|
query = '''
|
|
|
|
SELECT idFile
|
|
|
|
FROM bookmark
|
|
|
|
'''
|
|
|
|
rows = self.cursor.execute(query)
|
2016-03-12 00:42:14 +11:00
|
|
|
ids = []
|
|
|
|
for row in rows:
|
|
|
|
ids.append(row[0])
|
|
|
|
return ids
|
|
|
|
|
2017-12-14 06:14:27 +11:00
|
|
|
def video_id_from_filename(self, filename, path):
|
2016-03-23 02:17:06 +11:00
|
|
|
"""
|
2016-06-26 00:02:40 +10:00
|
|
|
Returns the tuple (itemId, type) where
|
|
|
|
itemId: Kodi DB unique Id for either movie or episode
|
|
|
|
type: either 'movie' or 'episode'
|
|
|
|
|
|
|
|
Returns None if not found OR if too many entries were found
|
2016-03-23 02:17:06 +11:00
|
|
|
"""
|
2016-06-26 00:02:40 +10:00
|
|
|
query = ' '.join((
|
|
|
|
"SELECT idFile, idPath",
|
|
|
|
"FROM files",
|
|
|
|
"WHERE strFilename = ?"
|
|
|
|
))
|
|
|
|
self.cursor.execute(query, (filename,))
|
|
|
|
files = self.cursor.fetchall()
|
|
|
|
if len(files) == 0:
|
2018-02-25 23:37:30 +11:00
|
|
|
LOG.info('Did not find any file, abort')
|
2016-04-18 20:09:01 +10:00
|
|
|
return
|
2016-06-26 00:02:40 +10:00
|
|
|
query = ' '.join((
|
|
|
|
"SELECT strPath",
|
|
|
|
"FROM path",
|
|
|
|
"WHERE idPath = ?"
|
|
|
|
))
|
|
|
|
# result will contain a list of all idFile with matching filename and
|
|
|
|
# matching path
|
|
|
|
result = []
|
|
|
|
for file in files:
|
|
|
|
# Use idPath to get path as a string
|
|
|
|
self.cursor.execute(query, (file[1],))
|
2016-03-23 02:17:06 +11:00
|
|
|
try:
|
2016-06-26 00:02:40 +10:00
|
|
|
strPath = self.cursor.fetchone()[0]
|
|
|
|
except TypeError:
|
|
|
|
# idPath not found; skip
|
|
|
|
continue
|
|
|
|
# For whatever reason, double might have become triple
|
|
|
|
strPath = strPath.replace('///', '//')
|
|
|
|
strPath = strPath.replace('\\\\\\', '\\\\')
|
|
|
|
if strPath == path:
|
|
|
|
result.append(file[0])
|
|
|
|
if len(result) == 0:
|
2018-02-25 23:37:30 +11:00
|
|
|
LOG.info('Did not find matching paths, abort')
|
2016-06-26 00:02:40 +10:00
|
|
|
return
|
|
|
|
# Kodi seems to make ONE temporary entry; we only want the earlier,
|
|
|
|
# permanent one
|
|
|
|
if len(result) > 2:
|
2018-02-25 23:37:30 +11:00
|
|
|
LOG.warn('We found too many items with matching filenames and '
|
2016-08-31 00:43:56 +10:00
|
|
|
' paths, aborting')
|
2016-06-26 00:02:40 +10:00
|
|
|
return
|
|
|
|
idFile = result[0]
|
2016-03-23 02:17:06 +11:00
|
|
|
|
2016-06-26 00:02:40 +10:00
|
|
|
# Try movies first
|
|
|
|
query = ' '.join((
|
|
|
|
"SELECT idMovie",
|
|
|
|
"FROM movie",
|
|
|
|
"WHERE idFile = ?"
|
|
|
|
))
|
|
|
|
self.cursor.execute(query, (idFile,))
|
|
|
|
try:
|
|
|
|
itemId = self.cursor.fetchone()[0]
|
2017-01-25 02:04:42 +11:00
|
|
|
typus = v.KODI_TYPE_MOVIE
|
2016-06-26 00:02:40 +10:00
|
|
|
except TypeError:
|
|
|
|
# Try tv shows next
|
2016-03-23 02:17:06 +11:00
|
|
|
query = ' '.join((
|
|
|
|
"SELECT idEpisode",
|
|
|
|
"FROM episode",
|
2016-06-26 00:02:40 +10:00
|
|
|
"WHERE idFile = ?"
|
2016-03-23 02:17:06 +11:00
|
|
|
))
|
2016-06-26 00:02:40 +10:00
|
|
|
self.cursor.execute(query, (idFile,))
|
2016-03-23 02:17:06 +11:00
|
|
|
try:
|
2016-06-26 00:02:40 +10:00
|
|
|
itemId = self.cursor.fetchone()[0]
|
2017-01-25 02:04:42 +11:00
|
|
|
typus = v.KODI_TYPE_EPISODE
|
2016-06-26 00:02:40 +10:00
|
|
|
except TypeError:
|
2018-02-25 23:37:30 +11:00
|
|
|
LOG.warn('Unexpectantly did not find a match!')
|
2016-04-18 20:09:01 +10:00
|
|
|
return
|
2016-06-26 00:02:40 +10:00
|
|
|
return itemId, typus
|
2016-03-23 02:17:06 +11:00
|
|
|
|
2017-12-14 06:14:27 +11:00
|
|
|
def music_id_from_filename(self, filename, path):
|
|
|
|
"""
|
|
|
|
Returns the Kodi song_id from the Kodi music database or None if not
|
|
|
|
found OR something went wrong.
|
|
|
|
"""
|
|
|
|
query = '''
|
|
|
|
SELECT idPath
|
|
|
|
FROM path
|
|
|
|
WHERE strPath = ?
|
|
|
|
'''
|
|
|
|
self.cursor.execute(query, (path,))
|
|
|
|
path_id = self.cursor.fetchall()
|
|
|
|
if len(path_id) != 1:
|
2018-02-25 23:37:30 +11:00
|
|
|
LOG.error('Found wrong number of path ids: %s for path %s, abort',
|
2017-12-14 06:14:27 +11:00
|
|
|
path_id, path)
|
|
|
|
return
|
|
|
|
query = '''
|
|
|
|
SELECT idSong
|
|
|
|
FROM song
|
|
|
|
WHERE strFileName = ? AND idPath = ?
|
|
|
|
'''
|
|
|
|
self.cursor.execute(query, (filename, path_id[0]))
|
|
|
|
song_id = self.cursor.fetchall()
|
|
|
|
if len(song_id) != 1:
|
2018-02-25 23:37:30 +11:00
|
|
|
LOG.info('Found wrong number of songs %s, abort', song_id)
|
2017-12-14 06:14:27 +11:00
|
|
|
return
|
|
|
|
return song_id[0]
|
|
|
|
|
2018-02-08 00:32:58 +11:00
|
|
|
def get_resume(self, file_id):
|
|
|
|
"""
|
|
|
|
Returns the first resume point in seconds (int) if found, else None for
|
|
|
|
the Kodi file_id provided
|
|
|
|
"""
|
|
|
|
query = '''
|
|
|
|
SELECT timeInSeconds
|
|
|
|
FROM bookmark
|
|
|
|
WHERE idFile = ?
|
|
|
|
'''
|
|
|
|
self.cursor.execute(query, (file_id,))
|
|
|
|
resume = self.cursor.fetchone()
|
|
|
|
try:
|
|
|
|
resume = resume[0]
|
|
|
|
except TypeError:
|
|
|
|
resume = None
|
|
|
|
return resume
|
|
|
|
|
2018-03-12 06:10:02 +11:00
|
|
|
def get_playcount(self, file_id):
|
|
|
|
"""
|
|
|
|
Returns the playcount for the item file_id or None if not found
|
|
|
|
"""
|
|
|
|
query = '''
|
|
|
|
SELECT playCount FROM files
|
|
|
|
WHERE idFile = ? LIMIT 1
|
|
|
|
'''
|
|
|
|
self.cursor.execute(query, (file_id, ))
|
|
|
|
try:
|
|
|
|
answ = self.cursor.fetchone()[0]
|
|
|
|
except TypeError:
|
|
|
|
answ = None
|
|
|
|
return answ
|
|
|
|
|
2018-03-11 03:09:21 +11:00
|
|
|
def addPlaystate(self, file_id, resume_seconds, total_seconds, playcount,
|
2018-02-22 18:13:24 +11:00
|
|
|
dateplayed):
|
2015-12-25 06:51:47 +11:00
|
|
|
# Delete existing resume point
|
2018-03-11 03:09:21 +11:00
|
|
|
self.cursor.execute('DELETE FROM bookmark WHERE idFile = ?', (file_id,))
|
2015-12-25 06:51:47 +11:00
|
|
|
# Set watched count
|
2018-02-22 18:13:24 +11:00
|
|
|
query = '''
|
|
|
|
UPDATE files
|
|
|
|
SET playCount = ?, lastPlayed = ?
|
|
|
|
WHERE idFile = ?
|
|
|
|
'''
|
2018-03-11 03:09:21 +11:00
|
|
|
self.cursor.execute(query, (playcount, dateplayed, file_id))
|
2015-12-25 06:51:47 +11:00
|
|
|
# Set the resume bookmark
|
|
|
|
if resume_seconds:
|
2018-02-22 18:13:24 +11:00
|
|
|
self.cursor.execute(
|
2018-03-04 23:39:40 +11:00
|
|
|
'select coalesce(max(idBookmark),0) from bookmark')
|
2018-02-22 18:13:24 +11:00
|
|
|
bookmark_id = self.cursor.fetchone()[0] + 1
|
2018-02-09 02:02:29 +11:00
|
|
|
query = '''
|
|
|
|
INSERT INTO bookmark(
|
|
|
|
idBookmark, idFile, timeInSeconds, totalTimeInSeconds,
|
|
|
|
thumbNailImage, player, playerState, type)
|
|
|
|
VALUES (?, ?, ?, ?, ?, ?, ?, ?)
|
|
|
|
'''
|
2018-02-22 18:13:24 +11:00
|
|
|
self.cursor.execute(query, (bookmark_id,
|
2018-03-11 03:09:21 +11:00
|
|
|
file_id,
|
2018-02-22 18:13:24 +11:00
|
|
|
resume_seconds,
|
|
|
|
total_seconds,
|
2018-05-27 01:28:11 +10:00
|
|
|
None,
|
|
|
|
'DVDPlayer',
|
|
|
|
None,
|
2018-02-22 18:13:24 +11:00
|
|
|
1))
|
2015-12-25 06:51:47 +11:00
|
|
|
|
|
|
|
def createTag(self, name):
|
|
|
|
# This will create and return the tag_id
|
2018-02-25 23:35:09 +11:00
|
|
|
query = ' '.join((
|
2015-12-25 06:51:47 +11:00
|
|
|
|
2018-02-25 23:35:09 +11:00
|
|
|
"SELECT tag_id",
|
|
|
|
"FROM tag",
|
|
|
|
"WHERE name = ?",
|
|
|
|
"COLLATE NOCASE"
|
|
|
|
))
|
|
|
|
self.cursor.execute(query, (name,))
|
|
|
|
try:
|
|
|
|
tag_id = self.cursor.fetchone()[0]
|
|
|
|
|
|
|
|
except TypeError:
|
2018-03-04 23:39:40 +11:00
|
|
|
self.cursor.execute("select coalesce(max(tag_id),0) from tag")
|
2018-02-25 23:35:09 +11:00
|
|
|
tag_id = self.cursor.fetchone()[0] + 1
|
2015-12-25 06:51:47 +11:00
|
|
|
|
2018-02-25 23:35:09 +11:00
|
|
|
query = "INSERT INTO tag(tag_id, name) values(?, ?)"
|
|
|
|
self.cursor.execute(query, (tag_id, name))
|
2018-02-25 23:37:30 +11:00
|
|
|
LOG.debug("Create tag_id: %s name: %s", tag_id, name)
|
2015-12-25 06:51:47 +11:00
|
|
|
return tag_id
|
|
|
|
|
|
|
|
def updateTag(self, oldtag, newtag, kodiid, mediatype):
|
2018-02-25 23:35:09 +11:00
|
|
|
try:
|
|
|
|
query = ' '.join((
|
2015-12-25 06:51:47 +11:00
|
|
|
|
2018-02-25 23:35:09 +11:00
|
|
|
"UPDATE tag_link",
|
|
|
|
"SET tag_id = ?",
|
|
|
|
"WHERE media_id = ?",
|
|
|
|
"AND media_type = ?",
|
|
|
|
"AND tag_id = ?"
|
|
|
|
))
|
|
|
|
self.cursor.execute(query, (newtag, kodiid, mediatype, oldtag,))
|
|
|
|
except Exception as e:
|
|
|
|
# The new tag we are going to apply already exists for this item
|
|
|
|
# delete current tag instead
|
2015-12-25 06:51:47 +11:00
|
|
|
query = ' '.join((
|
|
|
|
|
2018-02-25 23:35:09 +11:00
|
|
|
"DELETE FROM tag_link",
|
|
|
|
"WHERE media_id = ?",
|
|
|
|
"AND media_type = ?",
|
|
|
|
"AND tag_id = ?"
|
2015-12-25 06:51:47 +11:00
|
|
|
))
|
2018-02-25 23:35:09 +11:00
|
|
|
self.cursor.execute(query, (kodiid, mediatype, oldtag,))
|
2015-12-25 06:51:47 +11:00
|
|
|
|
2016-09-11 03:49:03 +10:00
|
|
|
def addSets(self, movieid, collections, kodicursor):
|
2016-05-17 01:56:48 +10:00
|
|
|
for setname in collections:
|
|
|
|
setid = self.createBoxset(setname)
|
|
|
|
self.assignBoxset(setid, movieid)
|
|
|
|
|
2015-12-25 06:51:47 +11:00
|
|
|
def createBoxset(self, boxsetname):
|
|
|
|
|
2018-02-25 23:37:30 +11:00
|
|
|
LOG.debug("Adding boxset: %s", boxsetname)
|
2015-12-25 06:51:47 +11:00
|
|
|
query = ' '.join((
|
|
|
|
|
|
|
|
"SELECT idSet",
|
|
|
|
"FROM sets",
|
|
|
|
"WHERE strSet = ?",
|
|
|
|
"COLLATE NOCASE"
|
|
|
|
))
|
2016-04-26 21:53:19 +10:00
|
|
|
self.cursor.execute(query, (boxsetname,))
|
2015-12-25 06:51:47 +11:00
|
|
|
try:
|
2016-04-26 21:53:19 +10:00
|
|
|
setid = self.cursor.fetchone()[0]
|
2015-12-25 06:51:47 +11:00
|
|
|
|
|
|
|
except TypeError:
|
2018-03-04 23:39:40 +11:00
|
|
|
self.cursor.execute("select coalesce(max(idSet),0) from sets")
|
2016-04-26 21:53:19 +10:00
|
|
|
setid = self.cursor.fetchone()[0] + 1
|
2015-12-25 06:51:47 +11:00
|
|
|
|
|
|
|
query = "INSERT INTO sets(idSet, strSet) values(?, ?)"
|
2016-04-26 21:53:19 +10:00
|
|
|
self.cursor.execute(query, (setid, boxsetname))
|
2015-12-25 06:51:47 +11:00
|
|
|
|
|
|
|
return setid
|
|
|
|
|
|
|
|
def assignBoxset(self, setid, movieid):
|
|
|
|
|
|
|
|
query = ' '.join((
|
|
|
|
|
|
|
|
"UPDATE movie",
|
|
|
|
"SET idSet = ?",
|
|
|
|
"WHERE idMovie = ?"
|
|
|
|
))
|
|
|
|
self.cursor.execute(query, (setid, movieid,))
|
|
|
|
|
2018-03-11 22:08:27 +11:00
|
|
|
def remove_from_set(self, movieid):
|
|
|
|
"""
|
|
|
|
Remove the movie with movieid [int] from an associated movie set, movie
|
|
|
|
collection
|
|
|
|
"""
|
|
|
|
self.cursor.execute('UPDATE movie SET idSet = null WHERE idMovie = ?',
|
|
|
|
(movieid,))
|
2015-12-25 06:51:47 +11:00
|
|
|
|
2018-02-26 19:06:35 +11:00
|
|
|
def get_set_id(self, kodi_id):
|
|
|
|
"""
|
|
|
|
Returns the set_id for the movie with kodi_id or None
|
|
|
|
"""
|
|
|
|
query = 'SELECT idSet FROM movie WHERE idMovie = ?'
|
|
|
|
self.cursor.execute(query, (kodi_id,))
|
|
|
|
try:
|
|
|
|
answ = self.cursor.fetchone()[0]
|
|
|
|
except TypeError:
|
|
|
|
answ = None
|
|
|
|
return answ
|
|
|
|
|
|
|
|
def delete_possibly_empty_set(self, set_id):
|
|
|
|
"""
|
|
|
|
Checks whether there are other movies in the set set_id. If not,
|
|
|
|
deletes the set
|
|
|
|
"""
|
|
|
|
query = 'SELECT idSet FROM movie WHERE idSet = ?'
|
|
|
|
self.cursor.execute(query, (set_id,))
|
|
|
|
if self.cursor.fetchone() is None:
|
|
|
|
query = 'DELETE FROM sets WHERE idSet = ?'
|
|
|
|
self.cursor.execute(query, (set_id,))
|
|
|
|
|
2018-03-11 01:02:06 +11:00
|
|
|
def add_season(self, showid, seasonnumber):
|
|
|
|
"""
|
|
|
|
Adds a TV show season to the Kodi video DB or simply returns the ID,
|
|
|
|
if there already is an entry in the DB
|
|
|
|
"""
|
|
|
|
query = 'SELECT idSeason FROM seasons WHERE idShow = ? AND season = ?'
|
2016-04-26 21:53:19 +10:00
|
|
|
self.cursor.execute(query, (showid, seasonnumber,))
|
2015-12-25 06:51:47 +11:00
|
|
|
try:
|
2016-04-26 21:53:19 +10:00
|
|
|
seasonid = self.cursor.fetchone()[0]
|
2015-12-25 06:51:47 +11:00
|
|
|
except TypeError:
|
2018-03-11 01:02:06 +11:00
|
|
|
self.cursor.execute("SELECT COALESCE(MAX(idSeason),0) FROM seasons")
|
2016-04-26 21:53:19 +10:00
|
|
|
seasonid = self.cursor.fetchone()[0] + 1
|
2018-03-11 01:02:06 +11:00
|
|
|
query = '''
|
|
|
|
INSERT INTO seasons(idSeason, idShow, season)
|
|
|
|
VALUES (?, ?, ?)
|
|
|
|
'''
|
2016-04-26 21:53:19 +10:00
|
|
|
self.cursor.execute(query, (seasonid, showid, seasonnumber))
|
2015-12-25 06:51:47 +11:00
|
|
|
return seasonid
|
|
|
|
|
|
|
|
def addArtist(self, name, musicbrainz):
|
2018-04-05 16:06:48 +10:00
|
|
|
query = '''
|
|
|
|
SELECT idArtist, strArtist
|
|
|
|
FROM artist
|
|
|
|
WHERE strMusicBrainzArtistID = ?
|
|
|
|
'''
|
2016-04-26 21:53:19 +10:00
|
|
|
self.cursor.execute(query, (musicbrainz,))
|
2015-12-25 06:51:47 +11:00
|
|
|
try:
|
2016-04-26 21:53:19 +10:00
|
|
|
result = self.cursor.fetchone()
|
2015-12-25 06:51:47 +11:00
|
|
|
artistid = result[0]
|
|
|
|
artistname = result[1]
|
|
|
|
except TypeError:
|
2018-04-05 16:06:48 +10:00
|
|
|
query = '''
|
|
|
|
SELECT idArtist FROM artist WHERE strArtist = ? COLLATE NOCASE
|
|
|
|
'''
|
2016-04-26 21:53:19 +10:00
|
|
|
self.cursor.execute(query, (name,))
|
2015-12-25 06:51:47 +11:00
|
|
|
try:
|
2016-04-26 21:53:19 +10:00
|
|
|
artistid = self.cursor.fetchone()[0]
|
2015-12-25 06:51:47 +11:00
|
|
|
except TypeError:
|
2017-08-09 04:44:36 +10:00
|
|
|
# Krypton has a dummy first entry idArtist: 1 strArtist:
|
|
|
|
# [Missing Tag] strMusicBrainzArtistID: Artist Tag Missing
|
|
|
|
if v.KODIVERSION >= 17:
|
|
|
|
self.cursor.execute(
|
2018-04-05 16:06:48 +10:00
|
|
|
"SELECT COALESCE(MAX(idArtist),1) FROM artist")
|
2017-08-09 04:44:36 +10:00
|
|
|
else:
|
|
|
|
self.cursor.execute(
|
2018-04-05 16:06:48 +10:00
|
|
|
"SELECT COALESCE(MAX(idArtist),0) FROM artist")
|
2016-04-26 21:53:19 +10:00
|
|
|
artistid = self.cursor.fetchone()[0] + 1
|
2018-04-05 16:06:48 +10:00
|
|
|
query = '''
|
|
|
|
INSERT INTO artist(idArtist, strArtist,
|
|
|
|
strMusicBrainzArtistID)
|
2015-12-25 06:51:47 +11:00
|
|
|
VALUES (?, ?, ?)
|
2018-04-05 16:06:48 +10:00
|
|
|
'''
|
2016-04-26 21:53:19 +10:00
|
|
|
self.cursor.execute(query, (artistid, name, musicbrainz))
|
2015-12-25 06:51:47 +11:00
|
|
|
else:
|
|
|
|
if artistname != name:
|
|
|
|
query = "UPDATE artist SET strArtist = ? WHERE idArtist = ?"
|
2016-04-26 21:53:19 +10:00
|
|
|
self.cursor.execute(query, (name, artistid,))
|
2015-12-25 06:51:47 +11:00
|
|
|
return artistid
|
|
|
|
|
2018-04-13 02:52:37 +10:00
|
|
|
def delete_song_from_song_artist(self, song_id):
|
|
|
|
"""
|
|
|
|
Deletes son from song_artist table and possibly orphaned roles
|
|
|
|
Will returned an orphaned idArtist or None if not orphaned
|
|
|
|
"""
|
|
|
|
query = '''
|
|
|
|
SELECT idArtist, idRole FROM song_artist WHERE idSong = ? LIMIT 1
|
|
|
|
'''
|
|
|
|
self.cursor.execute(query, (song_id, ))
|
|
|
|
artist = self.cursor.fetchone()
|
|
|
|
if artist is None:
|
|
|
|
# No entry to begin with
|
|
|
|
return
|
|
|
|
# Delete the entry
|
|
|
|
self.cursor.execute('DELETE FROM song_artist WHERE idSong = ?',
|
|
|
|
(song_id, ))
|
|
|
|
# Check whether we need to delete orphaned roles
|
|
|
|
query = 'SELECT idRole FROM song_artist WHERE idRole = ? LIMIT 1'
|
|
|
|
self.cursor.execute(query, (artist[1], ))
|
|
|
|
if not self.cursor.fetchone():
|
|
|
|
# Delete orphaned role
|
|
|
|
self.cursor.execute('DELETE FROM role WHERE idRole = ?',
|
|
|
|
(artist[1], ))
|
|
|
|
# Check whether we need to delete orphaned artists
|
|
|
|
query = 'SELECT idArtist FROM song_artist WHERE idArtist = ? LIMIT 1'
|
|
|
|
self.cursor.execute(query, (artist[0], ))
|
|
|
|
if self.cursor.fetchone():
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
return artist[0]
|
|
|
|
|
|
|
|
def delete_album_from_discography(self, album_id):
|
|
|
|
"""
|
|
|
|
Removes the album with id album_id from the table discography
|
|
|
|
"""
|
|
|
|
# Need to get the album name as a string first!
|
|
|
|
query = 'SELECT strAlbum, iYear FROM album WHERE idAlbum = ? LIMIT 1'
|
|
|
|
self.cursor.execute(query, (album_id, ))
|
|
|
|
try:
|
|
|
|
name, year = self.cursor.fetchone()
|
|
|
|
except TypeError:
|
|
|
|
return
|
|
|
|
query = 'SELECT idArtist FROM album_artist WHERE idAlbum = ? LIMIT 1'
|
|
|
|
self.cursor.execute(query, (album_id, ))
|
|
|
|
artist = self.cursor.fetchone()
|
|
|
|
if not artist:
|
|
|
|
return
|
|
|
|
query = '''
|
|
|
|
DELETE FROM discography
|
2018-04-18 04:22:32 +10:00
|
|
|
WHERE idArtist = ? AND strAlbum = ? AND strYear = ?
|
2018-04-13 02:52:37 +10:00
|
|
|
'''
|
|
|
|
self.cursor.execute(query, (artist[0], name, year))
|
|
|
|
|
|
|
|
def delete_song_from_song_genre(self, song_id):
|
|
|
|
"""
|
|
|
|
Deletes the one entry with id song_id from the song_genre table.
|
|
|
|
Will also delete orphaned genres from genre table
|
|
|
|
"""
|
|
|
|
query = 'SELECT idGenre FROM song_genre WHERE idSong = ?'
|
|
|
|
self.cursor.execute(query, (song_id, ))
|
|
|
|
genres = self.cursor.fetchall()
|
|
|
|
self.cursor.execute('DELETE FROM song_genre WHERE idSong = ?',
|
|
|
|
(song_id, ))
|
|
|
|
# Check for orphaned genres in both song_genre and album_genre tables
|
|
|
|
query = 'SELECT idGenre FROM song_genre WHERE idGenre = ? LIMIT 1'
|
|
|
|
query2 = 'SELECT idGenre FROM album_genre WHERE idGenre = ? LIMIT 1'
|
|
|
|
for genre in genres:
|
|
|
|
self.cursor.execute(query, (genre[0], ))
|
|
|
|
if not self.cursor.fetchone():
|
|
|
|
self.cursor.execute(query2, (genre[0], ))
|
|
|
|
if not self.cursor.fetchone():
|
|
|
|
self.cursor.execute('DELETE FROM genre WHERE idGenre = ?',
|
|
|
|
(genre[0], ))
|
|
|
|
|
|
|
|
def delete_album_from_album_genre(self, album_id):
|
|
|
|
"""
|
|
|
|
Deletes the one entry with id album_id from the album_genre table.
|
|
|
|
Will also delete orphaned genres from genre table
|
|
|
|
"""
|
|
|
|
query = 'SELECT idGenre FROM album_genre WHERE idAlbum = ?'
|
|
|
|
self.cursor.execute(query, (album_id, ))
|
|
|
|
genres = self.cursor.fetchall()
|
|
|
|
self.cursor.execute('DELETE FROM album_genre WHERE idAlbum = ?',
|
|
|
|
(album_id, ))
|
|
|
|
# Check for orphaned genres in both album_genre and song_genre tables
|
|
|
|
query = 'SELECT idGenre FROM album_genre WHERE idGenre = ? LIMIT 1'
|
|
|
|
query2 = 'SELECT idGenre FROM song_genre WHERE idGenre = ? LIMIT 1'
|
|
|
|
for genre in genres:
|
|
|
|
self.cursor.execute(query, (genre[0], ))
|
|
|
|
if not self.cursor.fetchone():
|
|
|
|
self.cursor.execute(query2, (genre[0], ))
|
|
|
|
if not self.cursor.fetchone():
|
|
|
|
self.cursor.execute('DELETE FROM genre WHERE idGenre = ?',
|
|
|
|
(genre[0], ))
|
|
|
|
|
|
|
|
|
2015-12-25 06:51:47 +11:00
|
|
|
def addAlbum(self, name, musicbrainz):
|
2018-04-05 16:06:48 +10:00
|
|
|
query = 'SELECT idAlbum FROM album WHERE strMusicBrainzAlbumID = ?'
|
2016-04-26 21:53:19 +10:00
|
|
|
self.cursor.execute(query, (musicbrainz,))
|
2015-12-25 06:51:47 +11:00
|
|
|
try:
|
2016-04-26 21:53:19 +10:00
|
|
|
albumid = self.cursor.fetchone()[0]
|
2015-12-25 06:51:47 +11:00
|
|
|
except TypeError:
|
2016-01-02 16:24:28 +11:00
|
|
|
# Create the album
|
2018-04-05 16:06:48 +10:00
|
|
|
self.cursor.execute('SELECT COALESCE(MAX(idAlbum),0) FROM album')
|
2016-04-26 21:53:19 +10:00
|
|
|
albumid = self.cursor.fetchone()[0] + 1
|
2018-04-05 16:06:48 +10:00
|
|
|
query = '''
|
|
|
|
INSERT INTO album(idAlbum, strAlbum, strMusicBrainzAlbumID,
|
|
|
|
strReleaseType)
|
2018-02-25 23:35:09 +11:00
|
|
|
VALUES (?, ?, ?, ?)
|
2018-04-05 16:06:48 +10:00
|
|
|
'''
|
|
|
|
self.cursor.execute(query, (albumid, name, musicbrainz, 'album'))
|
2015-12-25 06:51:47 +11:00
|
|
|
return albumid
|
|
|
|
|
|
|
|
def addMusicGenres(self, kodiid, genres, mediatype):
|
|
|
|
if mediatype == "album":
|
|
|
|
# Delete current genres for clean slate
|
2018-04-05 16:06:48 +10:00
|
|
|
query = 'DELETE FROM album_genre WHERE idAlbum = ?'
|
2016-04-26 21:53:19 +10:00
|
|
|
self.cursor.execute(query, (kodiid,))
|
2015-12-25 06:51:47 +11:00
|
|
|
for genre in genres:
|
2018-04-05 16:06:48 +10:00
|
|
|
query = '''
|
|
|
|
SELECT idGenre FROM genre WHERE strGenre = ? COLLATE NOCASE
|
|
|
|
'''
|
2016-04-26 21:53:19 +10:00
|
|
|
self.cursor.execute(query, (genre,))
|
2015-12-25 06:51:47 +11:00
|
|
|
try:
|
2016-04-26 21:53:19 +10:00
|
|
|
genreid = self.cursor.fetchone()[0]
|
2015-12-25 06:51:47 +11:00
|
|
|
except TypeError:
|
|
|
|
# Create the genre
|
2018-04-05 16:06:48 +10:00
|
|
|
query = 'SELECT COALESCE(MAX(idGenre),0) FROM genre'
|
|
|
|
self.cursor.execute(query)
|
2016-04-26 21:53:19 +10:00
|
|
|
genreid = self.cursor.fetchone()[0] + 1
|
2018-04-05 16:06:48 +10:00
|
|
|
query = 'INSERT INTO genre(idGenre, strGenre) VALUES(?, ?)'
|
2016-04-26 21:53:19 +10:00
|
|
|
self.cursor.execute(query, (genreid, genre))
|
2018-04-05 16:06:48 +10:00
|
|
|
query = '''
|
|
|
|
INSERT OR REPLACE INTO album_genre(idGenre, idAlbum)
|
|
|
|
VALUES (?, ?)
|
|
|
|
'''
|
2016-04-26 21:53:19 +10:00
|
|
|
self.cursor.execute(query, (genreid, kodiid))
|
2015-12-25 06:51:47 +11:00
|
|
|
elif mediatype == "song":
|
|
|
|
# Delete current genres for clean slate
|
2018-04-05 16:06:48 +10:00
|
|
|
query = 'DELETE FROM song_genre WHERE idSong = ?'
|
2016-04-26 21:53:19 +10:00
|
|
|
self.cursor.execute(query, (kodiid,))
|
2015-12-25 06:51:47 +11:00
|
|
|
for genre in genres:
|
2018-04-05 16:06:48 +10:00
|
|
|
query = '''
|
|
|
|
SELECT idGenre FROM genre WHERE strGenre = ?
|
|
|
|
COLLATE NOCASE
|
|
|
|
'''
|
2016-04-26 21:53:19 +10:00
|
|
|
self.cursor.execute(query, (genre,))
|
2015-12-25 06:51:47 +11:00
|
|
|
try:
|
2016-04-26 21:53:19 +10:00
|
|
|
genreid = self.cursor.fetchone()[0]
|
2015-12-25 06:51:47 +11:00
|
|
|
except TypeError:
|
|
|
|
# Create the genre
|
2018-04-05 16:06:48 +10:00
|
|
|
query = 'SELECT COALESCE(MAX(idGenre),0) FROM genre'
|
|
|
|
self.cursor.execute(query)
|
2016-04-26 21:53:19 +10:00
|
|
|
genreid = self.cursor.fetchone()[0] + 1
|
2018-04-05 16:06:48 +10:00
|
|
|
query = 'INSERT INTO genre(idGenre, strGenre) values(?, ?)'
|
2016-04-26 21:53:19 +10:00
|
|
|
self.cursor.execute(query, (genreid, genre))
|
2018-04-05 16:06:48 +10:00
|
|
|
query = '''
|
|
|
|
INSERT OR REPLACE INTO song_genre(idGenre, idSong)
|
|
|
|
VALUES (?, ?)
|
|
|
|
'''
|
2016-05-17 01:56:48 +10:00
|
|
|
self.cursor.execute(query, (genreid, kodiid))
|
2016-12-29 21:22:02 +11:00
|
|
|
|
2017-01-10 06:33:52 +11:00
|
|
|
# Krypton only stuff ##############################
|
|
|
|
|
2017-02-03 02:21:01 +11:00
|
|
|
def update_userrating(self, kodi_id, kodi_type, userrating):
|
|
|
|
"""
|
|
|
|
Updates userrating for >=Krypton
|
|
|
|
"""
|
|
|
|
if kodi_type == v.KODI_TYPE_MOVIE:
|
|
|
|
ID = 'idMovie'
|
|
|
|
elif kodi_type == v.KODI_TYPE_EPISODE:
|
|
|
|
ID = 'idEpisode'
|
|
|
|
elif kodi_type == v.KODI_TYPE_SONG:
|
|
|
|
ID = 'idSong'
|
2017-05-12 21:25:46 +10:00
|
|
|
query = '''UPDATE %s SET userrating = ? WHERE ? = ?''' % kodi_type
|
|
|
|
self.cursor.execute(query, (userrating, ID, kodi_id))
|
2017-02-03 02:21:01 +11:00
|
|
|
|
2017-01-10 06:33:52 +11:00
|
|
|
def add_uniqueid(self, *args):
|
|
|
|
"""
|
|
|
|
Feed with:
|
2017-02-14 06:50:10 +11:00
|
|
|
uniqueid_id: int
|
|
|
|
media_id: int
|
|
|
|
media_type: string
|
|
|
|
value: string
|
|
|
|
type: e.g. 'imdb' or 'tvdb'
|
2017-01-10 06:33:52 +11:00
|
|
|
"""
|
|
|
|
query = '''
|
|
|
|
INSERT INTO uniqueid(
|
|
|
|
uniqueid_id, media_id, media_type, value, type)
|
|
|
|
VALUES (?, ?, ?, ?, ?)
|
|
|
|
'''
|
|
|
|
self.cursor.execute(query, (args))
|
|
|
|
|
2017-02-14 06:26:30 +11:00
|
|
|
def get_uniqueid(self, kodi_id, kodi_type):
|
|
|
|
query = '''
|
|
|
|
SELECT uniqueid_id FROM uniqueid
|
|
|
|
WHERE media_id = ? AND media_type = ?
|
|
|
|
'''
|
|
|
|
self.cursor.execute(query, (kodi_id, kodi_type))
|
2017-01-11 07:14:30 +11:00
|
|
|
try:
|
|
|
|
uniqueid = self.cursor.fetchone()[0]
|
|
|
|
except TypeError:
|
2018-02-26 20:58:27 +11:00
|
|
|
self.cursor.execute(
|
2018-03-04 23:39:40 +11:00
|
|
|
'SELECT COALESCE(MAX(uniqueid_id),0) FROM uniqueid')
|
2018-02-26 20:58:27 +11:00
|
|
|
uniqueid = self.cursor.fetchone()[0] + 1
|
2017-01-11 07:14:30 +11:00
|
|
|
return uniqueid
|
|
|
|
|
|
|
|
def update_uniqueid(self, *args):
|
|
|
|
"""
|
|
|
|
Pass in media_id, media_type, value, type, uniqueid_id
|
|
|
|
"""
|
|
|
|
query = '''
|
|
|
|
UPDATE uniqueid
|
|
|
|
SET media_id = ?, media_type = ?, value = ?, type = ?
|
|
|
|
WHERE uniqueid_id = ?
|
|
|
|
'''
|
|
|
|
self.cursor.execute(query, (args))
|
|
|
|
|
2017-02-03 02:53:50 +11:00
|
|
|
def remove_uniqueid(self, kodi_id, kodi_type):
|
|
|
|
query = '''
|
|
|
|
DELETE FROM uniqueid
|
|
|
|
WHERE media_id = ? AND media_type = ?
|
|
|
|
'''
|
|
|
|
self.cursor.execute(query, (kodi_id, kodi_type))
|
|
|
|
|
2017-02-14 06:23:02 +11:00
|
|
|
def get_ratingid(self, kodi_id, kodi_type):
|
|
|
|
query = '''
|
|
|
|
SELECT rating_id FROM rating
|
|
|
|
WHERE media_id = ? AND media_type = ?
|
|
|
|
'''
|
|
|
|
self.cursor.execute(query, (kodi_id, kodi_type))
|
2017-01-10 06:33:52 +11:00
|
|
|
try:
|
|
|
|
ratingid = self.cursor.fetchone()[0]
|
|
|
|
except TypeError:
|
2018-03-04 23:39:40 +11:00
|
|
|
self.cursor.execute('SELECT COALESCE(MAX(rating_id),0) FROM rating')
|
2018-02-26 20:58:27 +11:00
|
|
|
ratingid = self.cursor.fetchone()[0] + 1
|
2017-01-10 06:33:52 +11:00
|
|
|
return ratingid
|
|
|
|
|
|
|
|
def update_ratings(self, *args):
|
|
|
|
"""
|
|
|
|
Feed with media_id, media_type, rating_type, rating, votes, rating_id
|
|
|
|
"""
|
|
|
|
query = '''
|
|
|
|
UPDATE rating
|
|
|
|
SET media_id = ?,
|
|
|
|
media_type = ?,
|
|
|
|
rating_type = ?,
|
|
|
|
rating = ?,
|
|
|
|
votes = ?
|
|
|
|
WHERE rating_id = ?
|
|
|
|
'''
|
|
|
|
self.cursor.execute(query, (args))
|
|
|
|
|
|
|
|
def add_ratings(self, *args):
|
|
|
|
"""
|
|
|
|
feed with:
|
|
|
|
rating_id, media_id, media_type, rating_type, rating, votes
|
|
|
|
|
|
|
|
rating_type = 'default'
|
|
|
|
"""
|
|
|
|
query = '''
|
|
|
|
INSERT INTO rating(
|
|
|
|
rating_id, media_id, media_type, rating_type, rating, votes)
|
|
|
|
VALUES (?, ?, ?, ?, ?, ?)
|
|
|
|
'''
|
|
|
|
self.cursor.execute(query, (args))
|
|
|
|
|
2017-02-03 02:53:50 +11:00
|
|
|
def remove_ratings(self, kodi_id, kodi_type):
|
|
|
|
query = '''
|
|
|
|
DELETE FROM rating
|
|
|
|
WHERE media_id = ? AND media_type = ?
|
|
|
|
'''
|
|
|
|
self.cursor.execute(query, (kodi_id, kodi_type))
|
|
|
|
|
2016-12-29 21:22:02 +11:00
|
|
|
|
2017-12-14 06:14:27 +11:00
|
|
|
def kodiid_from_filename(path, kodi_type):
|
2016-12-29 21:22:02 +11:00
|
|
|
"""
|
2017-12-14 06:14:27 +11:00
|
|
|
Returns kodi_id if we have an item in the Kodi video or audio database with
|
|
|
|
said path. Feed with the Kodi itemtype, e.v. 'movie', 'song'
|
|
|
|
Returns None if not possible
|
2016-12-29 21:22:02 +11:00
|
|
|
"""
|
2017-12-14 06:14:27 +11:00
|
|
|
kodi_id = None
|
2018-02-16 02:52:25 +11:00
|
|
|
path = try_decode(path)
|
2016-12-29 21:22:02 +11:00
|
|
|
try:
|
2017-12-14 06:14:27 +11:00
|
|
|
filename = path.rsplit('/', 1)[1]
|
|
|
|
path = path.rsplit('/', 1)[0] + '/'
|
2016-12-29 21:22:02 +11:00
|
|
|
except IndexError:
|
2017-12-14 06:14:27 +11:00
|
|
|
filename = path.rsplit('\\', 1)[1]
|
|
|
|
path = path.rsplit('\\', 1)[0] + '\\'
|
|
|
|
if kodi_type == v.KODI_TYPE_SONG:
|
|
|
|
with GetKodiDB('music') as kodi_db:
|
|
|
|
try:
|
|
|
|
kodi_id, _ = kodi_db.music_id_from_filename(filename, path)
|
|
|
|
except TypeError:
|
2018-02-25 23:37:30 +11:00
|
|
|
LOG.debug('No Kodi audio db element found for path %s', path)
|
2017-12-14 06:14:27 +11:00
|
|
|
else:
|
|
|
|
with GetKodiDB('video') as kodi_db:
|
|
|
|
try:
|
|
|
|
kodi_id, _ = kodi_db.video_id_from_filename(filename, path)
|
|
|
|
except TypeError:
|
2018-02-25 23:37:30 +11:00
|
|
|
LOG.debug('No kodi video db element found for path %s', path)
|
2017-12-14 06:14:27 +11:00
|
|
|
return kodi_id
|