mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-07-30 03:28:26 -07:00
45 lines
1.7 KiB
Python
Executable file
45 lines
1.7 KiB
Python
Executable file
#!/usr/bin/env python
|
|
|
|
import os
|
|
import sys
|
|
sys.path.insert(0, os.path.join(os.path.dirname(sys.argv[0]),'autoProcess/'))
|
|
import logging
|
|
|
|
import migratecfg
|
|
import autoProcessGames
|
|
from nzbToMediaEnv import *
|
|
from nzbToMediaUtil import *
|
|
|
|
#check to migrate old cfg before trying to load.
|
|
if os.path.isfile(os.path.join(os.path.dirname(sys.argv[0]), "autoProcessMedia.cfg.sample")):
|
|
migratecfg.migrate()
|
|
|
|
nzbtomedia_configure_logging(os.path.dirname(sys.argv[0]))
|
|
Logger = logging.getLogger(__name__)
|
|
|
|
Logger.info("====================") # Seperate old from new log
|
|
Logger.info("nzbToGamez %s", VERSION)
|
|
|
|
# SABnzbd
|
|
if len(sys.argv) == SABNZB_NO_OF_ARGUMENTS:
|
|
# 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
|
|
Logger.info("Script triggered from SABnzbd, starting autoProcessGames...")
|
|
result = autoProcessGames.process(sys.argv[1], sys.argv[2], sys.argv[7])
|
|
# NZBGet
|
|
elif len(sys.argv) == NZBGET_NO_OF_ARGUMENTS:
|
|
# 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
|
|
Logger.info("Script triggered from NZBGet, starting autoProcessGames...")
|
|
result = autoProcessGames.process(sys.argv[1], sys.argv[2], sys.argv[3])
|
|
else:
|
|
Logger.warn("Invalid number of arguments received from client. Exiting")
|
|
sys.exit(1)
|