mirror of https://github.com/morpheus65535/bazarr
WIP
This commit is contained in:
parent
fe6758858a
commit
9981df48af
|
@ -11,7 +11,6 @@ import requests
|
||||||
from whichcraft import which
|
from whichcraft import which
|
||||||
from get_args import args
|
from get_args import args
|
||||||
from config import settings, url_sonarr, url_radarr
|
from config import settings, url_sonarr, url_radarr
|
||||||
from database import database
|
|
||||||
|
|
||||||
from subliminal import region as subliminal_cache_region
|
from subliminal import region as subliminal_cache_region
|
||||||
import datetime
|
import datetime
|
||||||
|
@ -20,6 +19,7 @@ import glob
|
||||||
|
|
||||||
def history_log(action, sonarrSeriesId, sonarrEpisodeId, description, video_path=None, language=None, provider=None,
|
def history_log(action, sonarrSeriesId, sonarrEpisodeId, description, video_path=None, language=None, provider=None,
|
||||||
score=None, forced=False):
|
score=None, forced=False):
|
||||||
|
from database import database
|
||||||
database.execute("INSERT INTO table_history (action, sonarrSeriesId, sonarrEpisodeId, timestamp, description,"
|
database.execute("INSERT INTO table_history (action, sonarrSeriesId, sonarrEpisodeId, timestamp, description,"
|
||||||
"video_path, language, provider, score) VALUES (?,?,?,?,?,?,?,?,?)", (action, sonarrSeriesId,
|
"video_path, language, provider, score) VALUES (?,?,?,?,?,?,?,?,?)", (action, sonarrSeriesId,
|
||||||
sonarrEpisodeId, time.time(),
|
sonarrEpisodeId, time.time(),
|
||||||
|
@ -29,6 +29,7 @@ def history_log(action, sonarrSeriesId, sonarrEpisodeId, description, video_path
|
||||||
|
|
||||||
def history_log_movie(action, radarrId, description, video_path=None, language=None, provider=None, score=None,
|
def history_log_movie(action, radarrId, description, video_path=None, language=None, provider=None, score=None,
|
||||||
forced=False):
|
forced=False):
|
||||||
|
from database import database
|
||||||
database.execute("INSERT INTO table_history_movie (action, radarrId, timestamp, description, video_path, language, "
|
database.execute("INSERT INTO table_history_movie (action, radarrId, timestamp, description, video_path, language, "
|
||||||
"provider, score) VALUES (?,?,?,?,?,?,?,?)", (action, radarrId, time.time(), description,
|
"provider, score) VALUES (?,?,?,?,?,?,?,?)", (action, radarrId, time.time(), description,
|
||||||
video_path, language, provider, score))
|
video_path, language, provider, score))
|
||||||
|
|
Loading…
Reference in New Issue