mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-03-12 04:35:40 -07:00
211 lines
7.4 KiB
Python
211 lines
7.4 KiB
Python
# This file is part of Tautulli.
|
|
#
|
|
# Tautulli 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 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Tautulli 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 Tautulli. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import arrow
|
|
import os
|
|
import sqlite3
|
|
import shutil
|
|
import threading
|
|
import time
|
|
|
|
import plexpy
|
|
import logger
|
|
|
|
FILENAME = "tautulli.db"
|
|
db_lock = threading.Lock()
|
|
|
|
|
|
def drop_session_db():
|
|
monitor_db = MonitorDatabase()
|
|
monitor_db.action('DROP TABLE sessions')
|
|
|
|
|
|
def clear_history_tables():
|
|
logger.debug(u"Tautulli Database :: Deleting all session_history records... No turning back now bub.")
|
|
monitor_db = MonitorDatabase()
|
|
monitor_db.action('DELETE FROM session_history')
|
|
monitor_db.action('DELETE FROM session_history_media_info')
|
|
monitor_db.action('DELETE FROM session_history_metadata')
|
|
monitor_db.action('VACUUM')
|
|
|
|
|
|
def delete_sessions():
|
|
logger.debug(u"Tautulli Database :: Clearing temporary sessions from database.")
|
|
monitor_db = MonitorDatabase()
|
|
|
|
try:
|
|
monitor_db.action('DELETE FROM sessions')
|
|
monitor_db.action('VACUUM')
|
|
return True
|
|
except Exception as e:
|
|
logger.warn(u"Tautulli Database :: Unable to clear temporary sessions from database: %s." % e)
|
|
return False
|
|
|
|
def db_filename(filename=FILENAME):
|
|
""" Returns the filepath to the db """
|
|
|
|
return os.path.join(plexpy.DATA_DIR, filename)
|
|
|
|
|
|
def make_backup(cleanup=False, scheduler=False):
|
|
""" Makes a backup of db, removes all but the last 5 backups """
|
|
|
|
if scheduler:
|
|
backup_file = 'tautulli.backup-%s.sched.db' % arrow.now().format('YYYYMMDDHHmmss')
|
|
else:
|
|
backup_file = 'tautulli.backup-%s.db' % arrow.now().format('YYYYMMDDHHmmss')
|
|
backup_folder = plexpy.CONFIG.BACKUP_DIR
|
|
backup_file_fp = os.path.join(backup_folder, backup_file)
|
|
|
|
# In case the user has deleted it manually
|
|
if not os.path.exists(backup_folder):
|
|
os.makedirs(backup_folder)
|
|
|
|
db = MonitorDatabase()
|
|
db.connection.execute('begin immediate')
|
|
shutil.copyfile(db_filename(), backup_file_fp)
|
|
db.connection.rollback()
|
|
|
|
if cleanup:
|
|
now = time.time()
|
|
# Delete all scheduled backup older than BACKUP_DAYS.
|
|
for root, dirs, files in os.walk(backup_folder):
|
|
db_files = [os.path.join(root, f) for f in files if f.endswith('.sched.db')]
|
|
for file_ in db_files:
|
|
if os.stat(file_).st_mtime < now - plexpy.CONFIG.BACKUP_DAYS * 86400:
|
|
try:
|
|
os.remove(file_)
|
|
except OSError as e:
|
|
logger.error(u"Tautulli Database :: Failed to delete %s from the backup folder: %s" % (file_, e))
|
|
|
|
if backup_file in os.listdir(backup_folder):
|
|
logger.debug(u"Tautulli Database :: Successfully backed up %s to %s" % (db_filename(), backup_file))
|
|
return True
|
|
else:
|
|
logger.error(u"Tautulli Database :: Failed to backup %s to %s" % (db_filename(), backup_file))
|
|
return False
|
|
|
|
|
|
def get_cache_size():
|
|
# This will protect against typecasting problems produced by empty string and None settings
|
|
if not plexpy.CONFIG.CACHE_SIZEMB:
|
|
# sqlite will work with this (very slowly)
|
|
return 0
|
|
return int(plexpy.CONFIG.CACHE_SIZEMB)
|
|
|
|
|
|
def dict_factory(cursor, row):
|
|
d = {}
|
|
for idx, col in enumerate(cursor.description):
|
|
d[col[0]] = row[idx]
|
|
|
|
return d
|
|
|
|
|
|
class MonitorDatabase(object):
|
|
|
|
def __init__(self, filename=FILENAME):
|
|
self.filename = filename
|
|
self.connection = sqlite3.connect(db_filename(filename), timeout=20)
|
|
# Don't wait for the disk to finish writing
|
|
self.connection.execute("PRAGMA synchronous = OFF")
|
|
# Journal disabled since we never do rollbacks
|
|
self.connection.execute("PRAGMA journal_mode = %s" % plexpy.CONFIG.JOURNAL_MODE)
|
|
# 64mb of cache memory, probably need to make it user configurable
|
|
self.connection.execute("PRAGMA cache_size=-%s" % (get_cache_size() * 1024))
|
|
self.connection.row_factory = dict_factory
|
|
|
|
def action(self, query, args=None, return_last_id=False):
|
|
if query is None:
|
|
return
|
|
|
|
with db_lock:
|
|
sql_result = None
|
|
attempts = 0
|
|
|
|
while attempts < 5:
|
|
try:
|
|
with self.connection as c:
|
|
if args is None:
|
|
sql_result = c.execute(query)
|
|
else:
|
|
sql_result = c.execute(query, args)
|
|
# Our transaction was successful, leave the loop
|
|
break
|
|
|
|
except sqlite3.OperationalError as e:
|
|
if "unable to open database file" in e or "database is locked" in e:
|
|
logger.warn(u"Tautulli Database :: Database Error: %s", e)
|
|
attempts += 1
|
|
time.sleep(1)
|
|
else:
|
|
logger.error(u"Tautulli Database :: Database error: %s", e)
|
|
raise
|
|
|
|
except sqlite3.DatabaseError as e:
|
|
logger.error(u"Tautulli Database :: Fatal Error executing %s :: %s", query, e)
|
|
raise
|
|
|
|
return sql_result
|
|
|
|
def select(self, query, args=None):
|
|
|
|
sql_results = self.action(query, args).fetchall()
|
|
|
|
if sql_results is None or sql_results == [None]:
|
|
return []
|
|
|
|
return sql_results
|
|
|
|
def select_single(self, query, args=None):
|
|
|
|
sql_results = self.action(query, args).fetchone()
|
|
|
|
if sql_results is None or sql_results == "":
|
|
return ""
|
|
|
|
return sql_results
|
|
|
|
def upsert(self, table_name, value_dict, key_dict):
|
|
|
|
trans_type = 'update'
|
|
changes_before = self.connection.total_changes
|
|
|
|
gen_params = lambda my_dict: [x + " = ?" for x in my_dict.keys()]
|
|
|
|
update_query = "UPDATE " + table_name + " SET " + ", ".join(gen_params(value_dict)) + \
|
|
" WHERE " + " AND ".join(gen_params(key_dict))
|
|
|
|
self.action(update_query, value_dict.values() + key_dict.values())
|
|
|
|
if self.connection.total_changes == changes_before:
|
|
trans_type = 'insert'
|
|
insert_query = (
|
|
"INSERT INTO " + table_name + " (" + ", ".join(value_dict.keys() + key_dict.keys()) + ")" +
|
|
" VALUES (" + ", ".join(["?"] * len(value_dict.keys() + key_dict.keys())) + ")"
|
|
)
|
|
try:
|
|
self.action(insert_query, value_dict.values() + key_dict.values())
|
|
except sqlite3.IntegrityError:
|
|
logger.info(u"Tautulli Database :: Queries failed: %s and %s", update_query, insert_query)
|
|
|
|
# We want to know if it was an update or insert
|
|
return trans_type
|
|
|
|
def last_insert_id(self):
|
|
# Get the last insert row id
|
|
result = self.select_single(query='SELECT last_insert_rowid() AS last_id')
|
|
if result:
|
|
return result.get('last_id', None) |