mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-07-16 02:02:53 -07:00
36 lines
1.1 KiB
Python
Executable file
36 lines
1.1 KiB
Python
Executable file
#!/usr/bin/env python
|
|
|
|
import sys
|
|
import autoProcessMovie
|
|
|
|
from nzbToMediaEnv import *
|
|
|
|
print "nzbToCouchPotato %s" % VERSION
|
|
|
|
# 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 autoProcessMovie..."
|
|
autoProcessMovie.process(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 autoProcessMovie..."
|
|
|
|
autoProcessMovie.process(sys.argv[1], sys.argv[2], sys.argv[3])
|
|
|
|
else:
|
|
print "Invalid number of arguments received from client."
|
|
print "Running autoProcessMovie as a manual run..."
|
|
autoProcessMovie.process('Manual Run', 'Manual Run', 0)
|