mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-07-07 21:51:11 -07:00
Refactor common functions from auto_process to auto_process.common
This commit is contained in:
parent
d95fc59b45
commit
1d46f716e1
4 changed files with 41 additions and 88 deletions
38
core/auto_process/common.py
Normal file
38
core/auto_process/common.py
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
import requests
|
||||||
|
|
||||||
|
from core import logger
|
||||||
|
|
||||||
|
|
||||||
|
def command_complete(url, params, headers, section):
|
||||||
|
try:
|
||||||
|
r = requests.get(url, params=params, headers=headers, stream=True, verify=False, timeout=(30, 60))
|
||||||
|
except requests.ConnectionError:
|
||||||
|
logger.error("Unable to open URL: {0}".format(url), section)
|
||||||
|
return None
|
||||||
|
if r.status_code not in [requests.codes.ok, requests.codes.created, requests.codes.accepted]:
|
||||||
|
logger.error("Server returned status {0}".format(r.status_code), section)
|
||||||
|
return None
|
||||||
|
else:
|
||||||
|
try:
|
||||||
|
return r.json()['state']
|
||||||
|
except (ValueError, KeyError):
|
||||||
|
# ValueError catches simplejson's JSONDecodeError and json's ValueError
|
||||||
|
logger.error("{0} did not return expected json data.".format(section), section)
|
||||||
|
return None
|
||||||
|
|
||||||
|
|
||||||
|
def completed_download_handling(url2, headers, section="MAIN"):
|
||||||
|
try:
|
||||||
|
r = requests.get(url2, params={}, headers=headers, stream=True, verify=False, timeout=(30, 60))
|
||||||
|
except requests.ConnectionError:
|
||||||
|
logger.error("Unable to open URL: {0}".format(url2), section)
|
||||||
|
return False
|
||||||
|
if r.status_code not in [requests.codes.ok, requests.codes.created, requests.codes.accepted]:
|
||||||
|
logger.error("Server returned status {0}".format(r.status_code), section)
|
||||||
|
return False
|
||||||
|
else:
|
||||||
|
try:
|
||||||
|
return r.json().get("enableCompletedDownloadHandling", False)
|
||||||
|
except ValueError:
|
||||||
|
# ValueError catches simplejson's JSONDecodeError and json's ValueError
|
||||||
|
return False
|
|
@ -8,6 +8,7 @@ import requests
|
||||||
|
|
||||||
import core
|
import core
|
||||||
from core import logger, transcoder
|
from core import logger, transcoder
|
||||||
|
from core.auto_process.common import command_complete, completed_download_handling
|
||||||
from core.scene_exceptions import process_all_exceptions
|
from core.scene_exceptions import process_all_exceptions
|
||||||
from core.utils import convert_to_ascii, find_download, find_imdbid, import_subs, list_media_files, remote_dir, remove_dir, report_nzb, server_responding
|
from core.utils import convert_to_ascii, find_download, find_imdbid, import_subs, list_media_files, remote_dir, remove_dir, report_nzb, server_responding
|
||||||
|
|
||||||
|
@ -336,41 +337,6 @@ def process(section, dir_name, input_name=None, status=0, client_agent="manual",
|
||||||
return [1, "{0}: Failed to post-process - No change in status".format(section)]
|
return [1, "{0}: Failed to post-process - No change in status".format(section)]
|
||||||
|
|
||||||
|
|
||||||
def command_complete(url, params, headers, section):
|
|
||||||
try:
|
|
||||||
r = requests.get(url, params=params, headers=headers, stream=True, verify=False, timeout=(30, 60))
|
|
||||||
except requests.ConnectionError:
|
|
||||||
logger.error("Unable to open URL: {0}".format(url), section)
|
|
||||||
return None
|
|
||||||
if r.status_code not in [requests.codes.ok, requests.codes.created, requests.codes.accepted]:
|
|
||||||
logger.error("Server returned status {0}".format(r.status_code), section)
|
|
||||||
return None
|
|
||||||
else:
|
|
||||||
try:
|
|
||||||
return r.json()['state']
|
|
||||||
except (ValueError, KeyError):
|
|
||||||
# ValueError catches simplejson's JSONDecodeError and json's ValueError
|
|
||||||
logger.error("{0} did not return expected json data.".format(section), section)
|
|
||||||
return None
|
|
||||||
|
|
||||||
|
|
||||||
def completed_download_handling(url2, headers, section="MAIN"):
|
|
||||||
try:
|
|
||||||
r = requests.get(url2, params={}, headers=headers, stream=True, verify=False, timeout=(30, 60))
|
|
||||||
except requests.ConnectionError:
|
|
||||||
logger.error("Unable to open URL: {0}".format(url2), section)
|
|
||||||
return False
|
|
||||||
if r.status_code not in [requests.codes.ok, requests.codes.created, requests.codes.accepted]:
|
|
||||||
logger.error("Server returned status {0}".format(r.status_code), section)
|
|
||||||
return False
|
|
||||||
else:
|
|
||||||
try:
|
|
||||||
return r.json().get("enableCompletedDownloadHandling", False)
|
|
||||||
except ValueError:
|
|
||||||
# ValueError catches simplejson's JSONDecodeError and json's ValueError
|
|
||||||
return False
|
|
||||||
|
|
||||||
|
|
||||||
def get_release(base_url, imdb_id=None, download_id=None, release_id=None):
|
def get_release(base_url, imdb_id=None, download_id=None, release_id=None):
|
||||||
results = {}
|
results = {}
|
||||||
params = {}
|
params = {}
|
||||||
|
|
|
@ -8,6 +8,7 @@ import requests
|
||||||
|
|
||||||
import core
|
import core
|
||||||
from core import logger
|
from core import logger
|
||||||
|
from core.auto_process.common import command_complete
|
||||||
from core.scene_exceptions import process_all_exceptions
|
from core.scene_exceptions import process_all_exceptions
|
||||||
from core.utils import convert_to_ascii, list_media_files, remote_dir, remove_dir, server_responding
|
from core.utils import convert_to_ascii, list_media_files, remote_dir, remove_dir, server_responding
|
||||||
|
|
||||||
|
@ -157,24 +158,6 @@ def process(section, dir_name, input_name=None, status=0, client_agent="manual",
|
||||||
return [1, "{0}: Failed to post-process. {1} does not support failed downloads".format(section, section)] # Return as failed to flag this in the downloader.
|
return [1, "{0}: Failed to post-process. {1} does not support failed downloads".format(section, section)] # Return as failed to flag this in the downloader.
|
||||||
|
|
||||||
|
|
||||||
def command_complete(url, params, headers, section):
|
|
||||||
try:
|
|
||||||
r = requests.get(url, params=params, headers=headers, stream=True, verify=False, timeout=(30, 60))
|
|
||||||
except requests.ConnectionError:
|
|
||||||
logger.error("Unable to open URL: {0}".format(url), section)
|
|
||||||
return None
|
|
||||||
if r.status_code not in [requests.codes.ok, requests.codes.created, requests.codes.accepted]:
|
|
||||||
logger.error("Server returned status {0}".format(r.status_code), section)
|
|
||||||
return None
|
|
||||||
else:
|
|
||||||
try:
|
|
||||||
return r.json()['state']
|
|
||||||
except (ValueError, KeyError):
|
|
||||||
# ValueError catches simplejson's JSONDecodeError and json's ValueError
|
|
||||||
logger.error("{0} did not return expected json data.".format(section), section)
|
|
||||||
return None
|
|
||||||
|
|
||||||
|
|
||||||
def get_status(url, apikey, dir_name):
|
def get_status(url, apikey, dir_name):
|
||||||
logger.debug("Attempting to get current status for release:{0}".format(os.path.basename(dir_name)))
|
logger.debug("Attempting to get current status for release:{0}".format(os.path.basename(dir_name)))
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,7 @@ import requests
|
||||||
|
|
||||||
import core
|
import core
|
||||||
from core import logger, transcoder
|
from core import logger, transcoder
|
||||||
|
from core.auto_process.common import command_complete, completed_download_handling
|
||||||
from core.forks import auto_fork
|
from core.forks import auto_fork
|
||||||
from core.scene_exceptions import process_all_exceptions
|
from core.scene_exceptions import process_all_exceptions
|
||||||
from core.utils import convert_to_ascii, flatten, import_subs, list_media_files, remote_dir, remove_dir, report_nzb, server_responding
|
from core.utils import convert_to_ascii, flatten, import_subs, list_media_files, remote_dir, remove_dir, report_nzb, server_responding
|
||||||
|
@ -338,38 +339,3 @@ def process(section, dir_name, input_name=None, failed=False, client_agent="manu
|
||||||
return [1, "{0}: Failed to post-process {1}".format(section, input_name)]
|
return [1, "{0}: Failed to post-process {1}".format(section, input_name)]
|
||||||
else:
|
else:
|
||||||
return [1, "{0}: Failed to post-process - Returned log from {1} was not as expected.".format(section, section)] # We did not receive Success confirmation.
|
return [1, "{0}: Failed to post-process - Returned log from {1} was not as expected.".format(section, section)] # We did not receive Success confirmation.
|
||||||
|
|
||||||
|
|
||||||
def command_complete(url, params, headers, section):
|
|
||||||
try:
|
|
||||||
r = requests.get(url, params=params, headers=headers, stream=True, verify=False, timeout=(30, 60))
|
|
||||||
except requests.ConnectionError:
|
|
||||||
logger.error("Unable to open URL: {0}".format(url), section)
|
|
||||||
return None
|
|
||||||
if r.status_code not in [requests.codes.ok, requests.codes.created, requests.codes.accepted]:
|
|
||||||
logger.error("Server returned status {0}".format(r.status_code), section)
|
|
||||||
return None
|
|
||||||
else:
|
|
||||||
try:
|
|
||||||
return r.json()['state']
|
|
||||||
except (ValueError, KeyError):
|
|
||||||
# ValueError catches simplejson's JSONDecodeError and json's ValueError
|
|
||||||
logger.error("{0} did not return expected json data.".format(section), section)
|
|
||||||
return None
|
|
||||||
|
|
||||||
|
|
||||||
def completed_download_handling(url2, headers, section="MAIN"):
|
|
||||||
try:
|
|
||||||
r = requests.get(url2, params={}, headers=headers, stream=True, verify=False, timeout=(30, 60))
|
|
||||||
except requests.ConnectionError:
|
|
||||||
logger.error("Unable to open URL: {0}".format(url2), section)
|
|
||||||
return False
|
|
||||||
if r.status_code not in [requests.codes.ok, requests.codes.created, requests.codes.accepted]:
|
|
||||||
logger.error("Server returned status {0}".format(r.status_code), section)
|
|
||||||
return False
|
|
||||||
else:
|
|
||||||
try:
|
|
||||||
return r.json().get("enableCompletedDownloadHandling", False)
|
|
||||||
except ValueError:
|
|
||||||
# ValueError catches simplejson's JSONDecodeError and json's ValueError
|
|
||||||
return False
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue