mirror of
https://github.com/morpheus65535/bazarr.git
synced 2024-11-10 17:13:35 +08:00
20 lines
688 B
Python
20 lines
688 B
Python
# coding: utf-8
|
|
from __future__ import unicode_literals
|
|
|
|
import os
|
|
import sqlite3
|
|
import time
|
|
|
|
def history_log(action, sonarrSeriesId, sonarrEpisodeId, description):
|
|
# Open database connection
|
|
db = sqlite3.connect(os.path.join(os.path.dirname(__file__), 'data/db/bazarr.db'))
|
|
c = db.cursor()
|
|
|
|
# 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))
|
|
|
|
# Commit changes to DB
|
|
db.commit()
|
|
|
|
# Close database connection
|
|
db.close()
|