mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-21 05:43:16 -07:00
Create autoProcessComics.py
This commit is contained in:
parent
039a5aa30c
commit
ec27806f5a
1 changed files with 88 additions and 0 deletions
88
autoProcessComics.py
Normal file
88
autoProcessComics.py
Normal file
|
@ -0,0 +1,88 @@
|
||||||
|
import sys
|
||||||
|
import urllib
|
||||||
|
import os.path
|
||||||
|
import ConfigParser
|
||||||
|
|
||||||
|
from nzbToMediaEnv import *
|
||||||
|
from nzbToMediaSceneExceptions import process_all_exceptions
|
||||||
|
|
||||||
|
Logger = logging.getLogger()
|
||||||
|
|
||||||
|
class AuthURLOpener(urllib.FancyURLopener):
|
||||||
|
def __init__(self, user, pw):
|
||||||
|
self.username = user
|
||||||
|
self.password = pw
|
||||||
|
self.numTries = 0
|
||||||
|
urllib.FancyURLopener.__init__(self)
|
||||||
|
|
||||||
|
def prompt_user_passwd(self, host, realm):
|
||||||
|
if self.numTries == 0:
|
||||||
|
self.numTries = 1
|
||||||
|
return (self.username, self.password)
|
||||||
|
else:
|
||||||
|
return ('', '')
|
||||||
|
|
||||||
|
def openit(self, url):
|
||||||
|
self.numTries = 0
|
||||||
|
return urllib.FancyURLopener.open(self, url)
|
||||||
|
|
||||||
|
|
||||||
|
def processEpisode(dirName, nzbName=None):
|
||||||
|
|
||||||
|
config = ConfigParser.ConfigParser()
|
||||||
|
configFilename = os.path.join(os.path.dirname(sys.argv[0]), "autoProcessMedia.cfg")
|
||||||
|
Logger.info("Loading config from %s", configFilename)
|
||||||
|
|
||||||
|
if not os.path.isfile(configFilename):
|
||||||
|
Logger.error("You need an autoProcessMedia.cfg file - did you rename and edit the .sample?")
|
||||||
|
return 1 # failure
|
||||||
|
|
||||||
|
try:
|
||||||
|
fp = open(configFilename, "r")
|
||||||
|
config.readfp(fp)
|
||||||
|
fp.close()
|
||||||
|
except IOError, e:
|
||||||
|
Logger.error("Could not read configuration file: %s", str(e))
|
||||||
|
return 1 # failure
|
||||||
|
|
||||||
|
host = config.get("Mylar", "host")
|
||||||
|
port = config.get("Mylar", "port")
|
||||||
|
username = config.get("Mylar", "username")
|
||||||
|
password = config.get("Mylar", "password")
|
||||||
|
try:
|
||||||
|
ssl = int(config.get("Mylar", "ssl"))
|
||||||
|
except (ConfigParser.NoOptionError, ValueError):
|
||||||
|
ssl = 0
|
||||||
|
|
||||||
|
try:
|
||||||
|
web_root = config.get("Mylar", "web_root")
|
||||||
|
except ConfigParser.NoOptionError:
|
||||||
|
web_root = ""
|
||||||
|
|
||||||
|
params = {}
|
||||||
|
|
||||||
|
params['nzb_folder'] = dirName
|
||||||
|
if nzbName != None:
|
||||||
|
params['nzb_name'] = nzbName
|
||||||
|
|
||||||
|
myOpener = AuthURLOpener(username, password)
|
||||||
|
|
||||||
|
if ssl:
|
||||||
|
protocol = "https://"
|
||||||
|
else:
|
||||||
|
protocol = "http://"
|
||||||
|
|
||||||
|
url = protocol + host + ":" + port + web_root + "/post_process?" + urllib.urlencode(params)
|
||||||
|
|
||||||
|
Logger.debug("Opening URL: %s", url)
|
||||||
|
|
||||||
|
try:
|
||||||
|
urlObj = myOpener.openit(url)
|
||||||
|
except IOError, e:
|
||||||
|
Logger.error("Unable to open URL: %s", str(e))
|
||||||
|
return 1 # failure
|
||||||
|
|
||||||
|
result = urlObj.readlines()
|
||||||
|
for line in result:
|
||||||
|
Logger.info("%s", line)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue