bazarr/utils.py

34 lines
1.1 KiB
Python
Raw Normal View History

from get_argv import config_dir
2017-10-20 12:59:21 +00:00
import os
2017-09-17 13:02:16 +00:00
import sqlite3
import time
2017-09-16 00:49:46 +00:00
2017-09-17 13:02:16 +00:00
def history_log(action, sonarrSeriesId, sonarrEpisodeId, description):
# Open database connection
db = sqlite3.connect(os.path.join(config_dir, 'db/bazarr.db'), timeout=30)
2017-09-17 13:02:16 +00:00
c = db.cursor()
2017-09-16 00:49:46 +00:00
2017-09-17 13:02:16 +00:00
# Get Sonarr API URL from database config table
history = c.execute('''INSERT INTO table_history(action, sonarrSeriesId, sonarrEpisodeId, timestamp, description) VALUES (?, ?, ?, ?, ?)''', (action, sonarrSeriesId, sonarrEpisodeId, time.time(), description))
2017-09-16 00:49:46 +00:00
2017-09-17 13:02:16 +00:00
# Commit changes to DB
db.commit()
# Close database connection
db.close()
2018-04-24 14:48:52 +00:00
def history_log_movie(action, radarrId, description):
# Open database connection
db = sqlite3.connect(os.path.join(config_dir, 'db/bazarr.db'), timeout=30)
2018-04-24 14:48:52 +00:00
c = db.cursor()
history = c.execute('''INSERT INTO table_history_movie(action, radarrId, timestamp, description) VALUES (?, ?, ?, ?)''', (action, radarrId, time.time(), description))
# Commit changes to DB
db.commit()
# Close database connection
db.close()