From 34ab8ddedc7ec140c20fd7a30019b9cc329458ea Mon Sep 17 00:00:00 2001 From: nivong Date: Tue, 29 Jan 2013 14:37:10 +0100 Subject: [PATCH] Update nzbToSickBeard.py --- nzbToSickBeard.py | 43 +++++++++++++------------------------------ 1 file changed, 13 insertions(+), 30 deletions(-) diff --git a/nzbToSickBeard.py b/nzbToSickBeard.py index dd2a62fc..2be3da74 100644 --- a/nzbToSickBeard.py +++ b/nzbToSickBeard.py @@ -17,39 +17,22 @@ # # You should have received a copy of the GNU General Public License # along with Sick Beard. If not, see . -# -# Edited by Clinton Hall to prevent processing of failed downloads. -# Also added suppot for NZBGet. With help from thorli import sys import autoProcessTV -print "nzbToSickBeard V4.0" - -# SABnzbd -if len(sys.argv) == 8: -# SABnzbd argv: -# 1 The final directory of the job (full path) -# 2 The original name of the NZB file -# 3 Clean version of the job name (no path info and ".nzb" removed) -# 4 Indexer's report number (if supported) -# 5 User-defined category -# 6 Group that the NZB was posted in e.g. alt.binaries.x -# 7 Status of post processing. 0 = OK, 1=failed verification, 2=failed unpack, 3=1+2 - print "Script triggered from SABnzbd, starting autoProcessTV..." - autoProcessTV.processEpisode(sys.argv[1], sys.argv[2], sys.argv[7]) - -# NZBGet -elif len(sys.argv) == 4: -# NZBGet argv: -# 1 The final directory of the job (full path) -# 2 The original name of the NZB file -# 3 The status of the download: 0 == successful - print "Script triggered from NZBGet, starting autoProcessTV..." - - autoProcessTV.processEpisode(sys.argv[1], sys.argv[2], sys.argv[3]) - +if len(sys.argv) < 8: + print "Not enough arguments received from SABnzbd. Please update it." + sys.exit() else: - print "Invalid number of arguments received from client." - sys.exit() + autoProcessTV.processEpisode(sys.argv[1], sys.argv[2], sys.argv[7]) + +# SABnzbd argv: +# 1 The final directory of the job (full path) +# 2 The original name of the NZB file +# 3 Clean version of the job name (no path info and ".nzb" removed) +# 4 Indexer's report number (if supported) +# 5 User-defined category +# 6 Group that the NZB was posted in e.g. alt.binaries.x +# 7 Status of post processing. 0 = OK, 1=failed verification, 2=failed unpack, 3=1+21