2014-08-23 19:30:13 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
from .common import PostProcessor
|
2014-08-22 21:40:43 +00:00
|
|
|
from ..utils import PostProcessingError
|
2014-08-23 19:30:13 +00:00
|
|
|
import subprocess
|
|
|
|
import shlex
|
2014-08-22 21:40:43 +00:00
|
|
|
|
|
|
|
|
2014-08-23 19:30:13 +00:00
|
|
|
class ExecAfterDownloadPP(PostProcessor):
|
|
|
|
def __init__(self, downloader=None, verboseOutput=None, commandString=None):
|
|
|
|
self.verboseOutput = verboseOutput
|
2014-08-22 21:40:43 +00:00
|
|
|
self.commandString = commandString
|
|
|
|
|
2014-08-23 19:30:13 +00:00
|
|
|
def run(self, information):
|
|
|
|
self.targetFile = information['filepath'].replace('\'', '\'\\\'\'') # Replace single quotes with '\''
|
|
|
|
self.commandList = shlex.split(self.commandString)
|
|
|
|
self.commandString = ''
|
2014-08-22 21:40:43 +00:00
|
|
|
|
2014-08-23 19:30:13 +00:00
|
|
|
# Replace all instances of '{}' with the file name and convert argument list to single string.
|
|
|
|
for index, arg in enumerate(self.commandList):
|
|
|
|
if(arg == '{}'):
|
|
|
|
self.commandString += '\'' + self.targetFile + '\' '
|
|
|
|
else:
|
|
|
|
self.commandString += arg + ' '
|
2014-08-22 21:40:43 +00:00
|
|
|
|
2014-08-23 19:30:13 +00:00
|
|
|
if self.targetFile not in self.commandString: # Assume user wants the file appended to the end of the command if no {}'s were given.
|
|
|
|
self.commandString += '\'' + self.targetFile + '\''
|
2014-08-22 21:40:43 +00:00
|
|
|
|
2014-08-23 19:30:13 +00:00
|
|
|
print("[exec] Executing command: " + self.commandString)
|
|
|
|
self.retCode = subprocess.call(self.commandString, shell=True)
|
|
|
|
if(self.retCode < 0):
|
|
|
|
print("[exec] WARNING: Command exited with a negative return code, the process was killed externally. Your command may not of completed succesfully!")
|
|
|
|
elif(self.verboseOutput):
|
|
|
|
print("[exec] Command exited with return code: " + str(self.retCode))
|
2014-08-22 21:40:43 +00:00
|
|
|
|
|
|
|
return None, information # by default, keep file and do nothing
|
|
|
|
|
2014-08-23 19:30:13 +00:00
|
|
|
|
|
|
|
class PostProcessingExecError(PostProcessingError):
|
2014-08-22 21:40:43 +00:00
|
|
|
pass
|