mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-20 13:23:18 -07:00
add Radarr handling. #1170
This commit is contained in:
parent
6dc289909d
commit
f8e525abe7
6 changed files with 151 additions and 28 deletions
|
@ -200,7 +200,7 @@ def processTorrent(inputDirectory, inputName, inputCategory, inputHash, inputID,
|
||||||
core.flatten(outputDestination)
|
core.flatten(outputDestination)
|
||||||
|
|
||||||
# Now check if video files exist in destination:
|
# Now check if video files exist in destination:
|
||||||
if sectionName in ["SickBeard", "NzbDrone", "CouchPotato"]:
|
if sectionName in ["SickBeard", "NzbDrone", "Sonarr", "CouchPotato", "Radarr"]:
|
||||||
numVideos = len(
|
numVideos = len(
|
||||||
core.listMediaFiles(outputDestination, media=True, audio=False, meta=False, archives=False))
|
core.listMediaFiles(outputDestination, media=True, audio=False, meta=False, archives=False))
|
||||||
if numVideos > 0:
|
if numVideos > 0:
|
||||||
|
@ -214,7 +214,7 @@ def processTorrent(inputDirectory, inputName, inputCategory, inputHash, inputID,
|
||||||
|
|
||||||
# Only these sections can handling failed downloads
|
# Only these sections can handling failed downloads
|
||||||
# so make sure everything else gets through without the check for failed
|
# so make sure everything else gets through without the check for failed
|
||||||
if sectionName not in ['CouchPotato', 'SickBeard', 'NzbDrone']:
|
if sectionName not in ['CouchPotato', 'Radarr', 'SickBeard', 'NzbDrone', 'Sonarr']:
|
||||||
status = 0
|
status = 0
|
||||||
|
|
||||||
logger.info("Calling {0}:{1} to post-process:{2}".format(sectionName, usercat, inputName))
|
logger.info("Calling {0}:{1} to post-process:{2}".format(sectionName, usercat, inputName))
|
||||||
|
@ -226,10 +226,10 @@ def processTorrent(inputDirectory, inputName, inputCategory, inputHash, inputID,
|
||||||
if sectionName == 'UserScript':
|
if sectionName == 'UserScript':
|
||||||
result = external_script(outputDestination, inputName, inputCategory, section)
|
result = external_script(outputDestination, inputName, inputCategory, section)
|
||||||
|
|
||||||
elif sectionName == 'CouchPotato':
|
elif sectionName in ['CouchPotato', 'Radarr']:
|
||||||
result = core.autoProcessMovie().process(sectionName, outputDestination, inputName,
|
result = core.autoProcessMovie().process(sectionName, outputDestination, inputName,
|
||||||
status, clientAgent, inputHash, inputCategory)
|
status, clientAgent, inputHash, inputCategory)
|
||||||
elif sectionName in ['SickBeard', 'NzbDrone']:
|
elif sectionName in ['SickBeard', 'NzbDrone', 'Sonarr']:
|
||||||
if inputHash:
|
if inputHash:
|
||||||
inputHash = inputHash.upper()
|
inputHash = inputHash.upper()
|
||||||
result = core.autoProcessTV().processEpisode(sectionName, outputDestination, inputName,
|
result = core.autoProcessTV().processEpisode(sectionName, outputDestination, inputName,
|
||||||
|
|
|
@ -69,6 +69,33 @@
|
||||||
##### Set the recursive directory permissions to the following (0 to disable)
|
##### Set the recursive directory permissions to the following (0 to disable)
|
||||||
chmodDirectory = 0
|
chmodDirectory = 0
|
||||||
|
|
||||||
|
[Radarr]
|
||||||
|
#### autoProcessing for Movies
|
||||||
|
#### raCategory - category that gets called for post-processing with Radarr
|
||||||
|
[[movie]]
|
||||||
|
enabled = 0
|
||||||
|
apikey =
|
||||||
|
host = localhost
|
||||||
|
port = 8989
|
||||||
|
###### ADVANCED USE - ONLY EDIT IF YOU KNOW WHAT YOU'RE DOING ######
|
||||||
|
web_root =
|
||||||
|
ssl = 0
|
||||||
|
delete_failed = 0
|
||||||
|
# Enable/Disable linking for Torrents
|
||||||
|
Torrent_NoLink = 0
|
||||||
|
keep_archive = 1
|
||||||
|
extract = 1
|
||||||
|
nzbExtractionBy = Downloader
|
||||||
|
wait_for = 2
|
||||||
|
# Set this to minimum required size to consider a media file valid (in MB)
|
||||||
|
minSize = 0
|
||||||
|
# Enable/Disable deleting ignored files (samples and invalid media files)
|
||||||
|
delete_ignored = 0
|
||||||
|
##### Enable if NzbDrone is on a remote server for this category
|
||||||
|
remote_path = 0
|
||||||
|
##### Set to path where download client places completed downloads locally for this category
|
||||||
|
watch_dir =
|
||||||
|
|
||||||
[SickBeard]
|
[SickBeard]
|
||||||
#### autoProcessing for TV Series
|
#### autoProcessing for TV Series
|
||||||
#### tv - category that gets called for post-processing with SB
|
#### tv - category that gets called for post-processing with SB
|
||||||
|
@ -107,8 +134,9 @@
|
||||||
chmodDirectory = 0
|
chmodDirectory = 0
|
||||||
|
|
||||||
[NzbDrone]
|
[NzbDrone]
|
||||||
|
#### Formerly known as NzbDrone this is now Sonarr
|
||||||
#### autoProcessing for TV Series
|
#### autoProcessing for TV Series
|
||||||
#### ndCategory - category that gets called for post-processing with NzbDrone
|
#### ndCategory - category that gets called for post-processing with NzbDrone/Sonarr
|
||||||
[[tv]]
|
[[tv]]
|
||||||
enabled = 0
|
enabled = 0
|
||||||
apikey =
|
apikey =
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
import os
|
import os
|
||||||
import time
|
import time
|
||||||
import requests
|
import requests
|
||||||
|
import json
|
||||||
import core
|
import core
|
||||||
|
|
||||||
from core.nzbToMediaSceneExceptions import process_all_exceptions
|
from core.nzbToMediaSceneExceptions import process_all_exceptions
|
||||||
|
@ -110,7 +111,10 @@ class autoProcessMovie(object):
|
||||||
host = cfg["host"]
|
host = cfg["host"]
|
||||||
port = cfg["port"]
|
port = cfg["port"]
|
||||||
apikey = cfg["apikey"]
|
apikey = cfg["apikey"]
|
||||||
|
if section == "CouchPotato":
|
||||||
method = cfg["method"]
|
method = cfg["method"]
|
||||||
|
else:
|
||||||
|
method = None
|
||||||
delete_failed = int(cfg["delete_failed"])
|
delete_failed = int(cfg["delete_failed"])
|
||||||
wait_for = int(cfg["wait_for"])
|
wait_for = int(cfg["wait_for"])
|
||||||
ssl = int(cfg.get("ssl", 0))
|
ssl = int(cfg.get("ssl", 0))
|
||||||
|
@ -124,11 +128,16 @@ class autoProcessMovie(object):
|
||||||
extract = int(cfg.get("extract", 0))
|
extract = int(cfg.get("extract", 0))
|
||||||
|
|
||||||
imdbid = find_imdbid(dirName, inputName)
|
imdbid = find_imdbid(dirName, inputName)
|
||||||
|
if section == "CouchPotato":
|
||||||
baseURL = "{0}{1}:{2}{3}/api/{4}/".format(protocol, host, port, web_root, apikey)
|
baseURL = "{0}{1}:{2}{3}/api/{4}/".format(protocol, host, port, web_root, apikey)
|
||||||
|
if section == "Radarr":
|
||||||
|
baseURL = "{0}{1}:{2}{3}/api/command".format(protocol, host, port, web_root)
|
||||||
|
headers = {'X-Api-Key': apikey}
|
||||||
if not apikey:
|
if not apikey:
|
||||||
logger.info('No CouchPotato apikey entered. Performing transcoder functions only')
|
logger.info('No CouchPotato or Radarr apikey entered. Performing transcoder functions only')
|
||||||
release = None
|
release = None
|
||||||
elif server_responding(baseURL):
|
elif server_responding(baseURL):
|
||||||
|
if section == "CouchPotato":
|
||||||
release = self.get_release(baseURL, imdbid, download_id)
|
release = self.get_release(baseURL, imdbid, download_id)
|
||||||
else:
|
else:
|
||||||
logger.error("Server did not respond. Exiting", section)
|
logger.error("Server did not respond. Exiting", section)
|
||||||
|
@ -225,6 +234,7 @@ class autoProcessMovie(object):
|
||||||
|
|
||||||
params['media_folder'] = remoteDir(dirName) if remote_path else dirName
|
params['media_folder'] = remoteDir(dirName) if remote_path else dirName
|
||||||
|
|
||||||
|
if section == "CouchPotato":
|
||||||
if method == "manage":
|
if method == "manage":
|
||||||
command = "manage.update"
|
command = "manage.update"
|
||||||
params = {}
|
params = {}
|
||||||
|
@ -232,13 +242,19 @@ class autoProcessMovie(object):
|
||||||
command = "renamer.scan"
|
command = "renamer.scan"
|
||||||
|
|
||||||
url = "{0}{1}".format(baseURL, command)
|
url = "{0}{1}".format(baseURL, command)
|
||||||
|
|
||||||
logger.debug("Opening URL: {0} with PARAMS: {1}".format(url, params), section)
|
logger.debug("Opening URL: {0} with PARAMS: {1}".format(url, params), section)
|
||||||
|
|
||||||
logger.postprocess("Starting {0} scan for {1}".format(method, inputName), section)
|
logger.postprocess("Starting {0} scan for {1}".format(method, inputName), section)
|
||||||
|
|
||||||
|
if section == "Radarr":
|
||||||
|
payload = {'name': 'DownloadedMovieScan', 'path': params['media_folder']}
|
||||||
|
logger.debug("Opening URL: {0} with PARAMS: {1}".format(baseURL, payload), section)
|
||||||
|
logger.postprocess("Starting DownloadedMovieScan scan for {1}".format(inputName), section)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
if section == "CouchPotato":
|
||||||
r = requests.get(url, params=params, verify=False, timeout=(30, 1800))
|
r = requests.get(url, params=params, verify=False, timeout=(30, 1800))
|
||||||
|
else:
|
||||||
|
r = requests.post(url, data=json.dumps(payload), headers=headers, stream=True, verify=False, timeout=(30, 1800))
|
||||||
except requests.ConnectionError:
|
except requests.ConnectionError:
|
||||||
logger.error("Unable to open URL", section)
|
logger.error("Unable to open URL", section)
|
||||||
return [1, "{0}: Failed to post-process - Unable to connect to {1}".format(section, section)]
|
return [1, "{0}: Failed to post-process - Unable to connect to {1}".format(section, section)]
|
||||||
|
@ -247,10 +263,12 @@ class autoProcessMovie(object):
|
||||||
if r.status_code not in [requests.codes.ok, requests.codes.created, requests.codes.accepted]:
|
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)
|
logger.error("Server returned status {0}".format(r.status_code), section)
|
||||||
return [1, "{0}: Failed to post-process - Server returned status {1}".format(section, r.status_code)]
|
return [1, "{0}: Failed to post-process - Server returned status {1}".format(section, r.status_code)]
|
||||||
elif result['success']:
|
elif section == "CouchPotato" and result['success']:
|
||||||
logger.postprocess("SUCCESS: Finished {0} scan for folder {1}".format(method, dirName), section)
|
logger.postprocess("SUCCESS: Finished {0} scan for folder {1}".format(method, dirName), section)
|
||||||
if method == "manage":
|
if method == "manage":
|
||||||
return [0, "{0}: Successfully post-processed {1}".format(section, inputName)]
|
return [0, "{0}: Successfully post-processed {1}".format(section, inputName)]
|
||||||
|
elif section == "Radarr":
|
||||||
|
logger.postprocess("Radarr response: {0}".format(result['state']))
|
||||||
else:
|
else:
|
||||||
logger.error("FAILED: {0} scan was unable to finish for folder {1}. exiting!".format(method, dirName),
|
logger.error("FAILED: {0} scan was unable to finish for folder {1}. exiting!".format(method, dirName),
|
||||||
section)
|
section)
|
||||||
|
@ -262,6 +280,10 @@ class autoProcessMovie(object):
|
||||||
if failureLink:
|
if failureLink:
|
||||||
reportNzb(failureLink, clientAgent)
|
reportNzb(failureLink, clientAgent)
|
||||||
|
|
||||||
|
if section == "Radarr":
|
||||||
|
logger.postprocess("FAILED: The download failed. Sending failed download to {0} for CDH processing".format(fork), section)
|
||||||
|
return [1, "{0}: Download Failed. Sending back to {1}".format(section, section)] # Return as failed to flag this in the downloader.
|
||||||
|
|
||||||
if delete_failed and os.path.isdir(dirName) and not os.path.dirname(dirName) == dirName:
|
if delete_failed and os.path.isdir(dirName) and not os.path.dirname(dirName) == dirName:
|
||||||
logger.postprocess("Deleting failed files and folder {0}".format(dirName), section)
|
logger.postprocess("Deleting failed files and folder {0}".format(dirName), section)
|
||||||
rmDir(dirName)
|
rmDir(dirName)
|
||||||
|
@ -325,7 +347,10 @@ class autoProcessMovie(object):
|
||||||
timeout = time.time() + 60 * wait_for
|
timeout = time.time() + 60 * wait_for
|
||||||
while time.time() < timeout: # only wait 2 (default) minutes, then return.
|
while time.time() < timeout: # only wait 2 (default) minutes, then return.
|
||||||
logger.postprocess("Checking for status change, please stand by ...", section)
|
logger.postprocess("Checking for status change, please stand by ...", section)
|
||||||
|
if section == "CouchPotato":
|
||||||
release = self.get_release(baseURL, imdbid, download_id, release_id)
|
release = self.get_release(baseURL, imdbid, download_id, release_id)
|
||||||
|
else:
|
||||||
|
release = None
|
||||||
if release:
|
if release:
|
||||||
try:
|
try:
|
||||||
if release_id is None and release_status_old is None: # we didn't have a release before, but now we do.
|
if release_id is None and release_status_old is None: # we didn't have a release before, but now we do.
|
||||||
|
|
|
@ -142,7 +142,7 @@ class ConfigObj(configobj.ConfigObj, Section):
|
||||||
if CFG_OLD[section].sections:
|
if CFG_OLD[section].sections:
|
||||||
subsections.update({section: CFG_OLD[section].sections})
|
subsections.update({section: CFG_OLD[section].sections})
|
||||||
for option, value in CFG_OLD[section].items():
|
for option, value in CFG_OLD[section].items():
|
||||||
if option in ["category", "cpsCategory", "sbCategory", "hpCategory", "mlCategory", "gzCategory"]:
|
if option in ["category", "cpsCategory", "sbCategory", "hpCategory", "mlCategory", "gzCategory", "raCategory", "ndCategory"]:
|
||||||
if not isinstance(value, list):
|
if not isinstance(value, list):
|
||||||
value = [value]
|
value = [value]
|
||||||
|
|
||||||
|
@ -255,10 +255,14 @@ class ConfigObj(configobj.ConfigObj, Section):
|
||||||
try:
|
try:
|
||||||
if 'NZBPO_NDCATEGORY' in os.environ and 'NZBPO_SBCATEGORY' in os.environ:
|
if 'NZBPO_NDCATEGORY' in os.environ and 'NZBPO_SBCATEGORY' in os.environ:
|
||||||
if os.environ['NZBPO_NDCATEGORY'] == os.environ['NZBPO_SBCATEGORY']:
|
if os.environ['NZBPO_NDCATEGORY'] == os.environ['NZBPO_SBCATEGORY']:
|
||||||
logger.warning("{x} category is set for SickBeard and NzbDrone. "
|
logger.warning("{x} category is set for SickBeard and Sonarr. "
|
||||||
"Please check your config in NZBGet".format
|
"Please check your config in NZBGet".format
|
||||||
(x=os.environ['NZBPO_NDCATEGORY']))
|
(x=os.environ['NZBPO_NDCATEGORY']))
|
||||||
|
if 'NZBPO_RACATEGORY' in os.environ and 'NZBPO_CPSCATEGORY' in os.environ:
|
||||||
|
if os.environ['NZBPO_RACATEGORY'] == os.environ['NZBPO_CPSCATEGORY']:
|
||||||
|
logger.warning("{x} category is set for CouchPotato and Radarr. "
|
||||||
|
"Please check your config in NZBGet".format
|
||||||
|
(x=os.environ['NZBPO_RACATEGORY']))
|
||||||
section = "Nzb"
|
section = "Nzb"
|
||||||
key = 'NZBOP_DESTDIR'
|
key = 'NZBOP_DESTDIR'
|
||||||
if key in os.environ:
|
if key in os.environ:
|
||||||
|
@ -302,6 +306,8 @@ class ConfigObj(configobj.ConfigObj, Section):
|
||||||
CFG_NEW[section][os.environ[envCatKey]] = {}
|
CFG_NEW[section][os.environ[envCatKey]] = {}
|
||||||
CFG_NEW[section][os.environ[envCatKey]][option] = value
|
CFG_NEW[section][os.environ[envCatKey]][option] = value
|
||||||
CFG_NEW[section][os.environ[envCatKey]]['enabled'] = 1
|
CFG_NEW[section][os.environ[envCatKey]]['enabled'] = 1
|
||||||
|
if os.environ[envCatKey] in CFG_NEW['Radarr'].sections:
|
||||||
|
CFG_NEW['Radarr'][envCatKey]['enabled'] = 0
|
||||||
|
|
||||||
section = "SickBeard"
|
section = "SickBeard"
|
||||||
envCatKey = 'NZBPO_SBCATEGORY'
|
envCatKey = 'NZBPO_SBCATEGORY'
|
||||||
|
@ -388,6 +394,25 @@ class ConfigObj(configobj.ConfigObj, Section):
|
||||||
if os.environ[envCatKey] in CFG_NEW['SickBeard'].sections:
|
if os.environ[envCatKey] in CFG_NEW['SickBeard'].sections:
|
||||||
CFG_NEW['SickBeard'][envCatKey]['enabled'] = 0
|
CFG_NEW['SickBeard'][envCatKey]['enabled'] = 0
|
||||||
|
|
||||||
|
section = "Radarr"
|
||||||
|
envCatKey = 'NZBPO_RACATEGORY'
|
||||||
|
envKeys = ['ENABLED', 'HOST', 'APIKEY', 'PORT', 'SSL', 'WEB_ROOT', 'WATCH_DIR', 'FORK', 'DELETE_FAILED',
|
||||||
|
'TORRENT_NOLINK', 'NZBEXTRACTIONBY', 'WAIT_FOR', 'DELETE_FAILED', 'REMOTE_PATH']
|
||||||
|
cfgKeys = ['enabled', 'host', 'apikey', 'port', 'ssl', 'web_root', 'watch_dir', 'fork', 'delete_failed',
|
||||||
|
'Torrent_NoLink', 'nzbExtractionBy', 'wait_for', 'delete_failed', 'remote_path']
|
||||||
|
if envCatKey in os.environ:
|
||||||
|
for index in range(len(envKeys)):
|
||||||
|
key = 'NZBPO_RA{index}'.format(index=envKeys[index])
|
||||||
|
if key in os.environ:
|
||||||
|
option = cfgKeys[index]
|
||||||
|
value = os.environ[key]
|
||||||
|
if os.environ[envCatKey] not in CFG_NEW[section].sections:
|
||||||
|
CFG_NEW[section][os.environ[envCatKey]] = {}
|
||||||
|
CFG_NEW[section][os.environ[envCatKey]][option] = value
|
||||||
|
CFG_NEW[section][os.environ[envCatKey]]['enabled'] = 1
|
||||||
|
if os.environ[envCatKey] in CFG_NEW['CouchPotato'].sections:
|
||||||
|
CFG_NEW['CouchPotato'][envCatKey]['enabled'] = 0
|
||||||
|
|
||||||
section = "Extensions"
|
section = "Extensions"
|
||||||
envKeys = ['COMPRESSEDEXTENSIONS', 'MEDIAEXTENSIONS', 'METAEXTENSIONS']
|
envKeys = ['COMPRESSEDEXTENSIONS', 'MEDIAEXTENSIONS', 'METAEXTENSIONS']
|
||||||
cfgKeys = ['compressedExtensions', 'mediaExtensions', 'metaExtensions']
|
cfgKeys = ['compressedExtensions', 'mediaExtensions', 'metaExtensions']
|
||||||
|
|
|
@ -83,6 +83,49 @@
|
||||||
# Enable to replace local path with the path as per the mountPoints below.
|
# Enable to replace local path with the path as per the mountPoints below.
|
||||||
#cpsremote_path=0
|
#cpsremote_path=0
|
||||||
|
|
||||||
|
## Radarr
|
||||||
|
|
||||||
|
# Radarr script category.
|
||||||
|
#
|
||||||
|
# category that gets called for post-processing with NzbDrone.
|
||||||
|
#raCategory=movies2
|
||||||
|
|
||||||
|
# Radarr host.
|
||||||
|
#
|
||||||
|
# The ipaddress for your Radarr server. e.g For the Same system use localhost or 127.0.0.1
|
||||||
|
#rahost=localhost
|
||||||
|
|
||||||
|
# Radarr port.
|
||||||
|
#raport=8989
|
||||||
|
|
||||||
|
# Radarr API key.
|
||||||
|
#raapikey=
|
||||||
|
|
||||||
|
# Radarr uses ssl (0, 1).
|
||||||
|
#
|
||||||
|
# Set to 1 if using ssl, else set to 0.
|
||||||
|
#rassl=0
|
||||||
|
|
||||||
|
# Radarr web_root
|
||||||
|
#
|
||||||
|
# set this if using a reverse proxy.
|
||||||
|
#raweb_root=
|
||||||
|
|
||||||
|
# Radarr wait_for
|
||||||
|
#
|
||||||
|
# Set the number of minutes to wait after calling the renamer, to check the episode has changed status.
|
||||||
|
#rawait_for=2
|
||||||
|
|
||||||
|
# Radarr Delete Failed Downloads (0, 1).
|
||||||
|
#
|
||||||
|
# set to 1 to delete failed, or 0 to leave files in place.
|
||||||
|
#radelete_failed=0
|
||||||
|
|
||||||
|
# Radarr and NZBGet are a different system (0, 1).
|
||||||
|
#
|
||||||
|
# Enable to replace local path with the path as per the mountPoints below.
|
||||||
|
#raremote_path=0
|
||||||
|
|
||||||
## SickBeard
|
## SickBeard
|
||||||
|
|
||||||
# SickBeard script category.
|
# SickBeard script category.
|
||||||
|
@ -613,10 +656,10 @@ def process(inputDirectory, inputName=None, status=0, clientAgent='manual', down
|
||||||
|
|
||||||
logger.info("Calling {0}:{1} to post-process:{2}".format(sectionName, inputCategory, inputName))
|
logger.info("Calling {0}:{1} to post-process:{2}".format(sectionName, inputCategory, inputName))
|
||||||
|
|
||||||
if sectionName == "CouchPotato":
|
if sectionName in ["CouchPotato", "Radarr"]:
|
||||||
result = autoProcessMovie().process(sectionName, inputDirectory, inputName, status, clientAgent, download_id,
|
result = autoProcessMovie().process(sectionName, inputDirectory, inputName, status, clientAgent, download_id,
|
||||||
inputCategory, failureLink)
|
inputCategory, failureLink)
|
||||||
elif sectionName in ["SickBeard", "NzbDrone"]:
|
elif sectionName in ["SickBeard", "NzbDrone", "Sonarr"]:
|
||||||
result = autoProcessTV().processEpisode(sectionName, inputDirectory, inputName, status, clientAgent,
|
result = autoProcessTV().processEpisode(sectionName, inputDirectory, inputName, status, clientAgent,
|
||||||
download_id, inputCategory, failureLink)
|
download_id, inputCategory, failureLink)
|
||||||
elif sectionName == "HeadPhones":
|
elif sectionName == "HeadPhones":
|
||||||
|
@ -637,7 +680,7 @@ def process(inputDirectory, inputName=None, status=0, clientAgent='manual', down
|
||||||
if clientAgent != 'manual':
|
if clientAgent != 'manual':
|
||||||
# update download status in our DB
|
# update download status in our DB
|
||||||
update_downloadInfoStatus(inputName, 1)
|
update_downloadInfoStatus(inputName, 1)
|
||||||
if sectionName not in ['UserScript', 'NzbDrone']:
|
if sectionName not in ['UserScript', 'NzbDrone', 'Sonarr', 'Radarr']:
|
||||||
# cleanup our processing folders of any misc unwanted files and empty directories
|
# cleanup our processing folders of any misc unwanted files and empty directories
|
||||||
cleanDir(inputDirectory, sectionName, inputCategory)
|
cleanDir(inputDirectory, sectionName, inputCategory)
|
||||||
|
|
||||||
|
@ -708,6 +751,8 @@ def main(args, section=None):
|
||||||
download_id = os.environ['NZBPR_DRONE']
|
download_id = os.environ['NZBPR_DRONE']
|
||||||
elif 'NZBPR_SONARR' in os.environ:
|
elif 'NZBPR_SONARR' in os.environ:
|
||||||
download_id = os.environ['NZBPR_SONARR']
|
download_id = os.environ['NZBPR_SONARR']
|
||||||
|
elif 'NZBPR_RADARR' in os.environ:
|
||||||
|
download_id = os.environ['NZBPR_RADARR']
|
||||||
if 'NZBPR__DNZB_FAILURE' in os.environ:
|
if 'NZBPR__DNZB_FAILURE' in os.environ:
|
||||||
failureLink = os.environ['NZBPR__DNZB_FAILURE']
|
failureLink = os.environ['NZBPR__DNZB_FAILURE']
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
##############################################################################
|
##############################################################################
|
||||||
### NZBGET POST-PROCESSING SCRIPT ###
|
### NZBGET POST-PROCESSING SCRIPT ###
|
||||||
|
|
||||||
# Post-Process to NzbDrone.
|
# Post-Process to NzbDrone/Sonarr.
|
||||||
#
|
#
|
||||||
# This script sends the download to your automated media management servers.
|
# This script sends the download to your automated media management servers.
|
||||||
#
|
#
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue