2014-08-24 04:30:13 +09:00
|
|
|
from __future__ import unicode_literals
|
2014-08-25 17:18:01 +09:00
|
|
|
|
2014-08-24 04:30:13 +09:00
|
|
|
import subprocess
|
2014-08-25 17:18:01 +09:00
|
|
|
|
|
|
|
from .common import PostProcessor
|
2014-11-02 19:23:40 +09:00
|
|
|
from ..compat import shlex_quote
|
|
|
|
from ..utils import PostProcessingError
|
2014-08-23 06:40:43 +09:00
|
|
|
|
|
|
|
|
2014-08-24 04:30:13 +09:00
|
|
|
class ExecAfterDownloadPP(PostProcessor):
|
2015-05-11 00:47:49 +09:00
|
|
|
def __init__(self, downloader, exec_cmd):
|
|
|
|
super(ExecAfterDownloadPP, self).__init__(downloader)
|
2014-08-25 17:18:01 +09:00
|
|
|
self.exec_cmd = exec_cmd
|
2014-08-23 06:40:43 +09:00
|
|
|
|
2014-08-24 04:30:13 +09:00
|
|
|
def run(self, information):
|
2014-08-25 17:18:01 +09:00
|
|
|
cmd = self.exec_cmd
|
2014-12-10 07:11:26 +09:00
|
|
|
if '{}' not in cmd:
|
2014-08-25 17:18:01 +09:00
|
|
|
cmd += ' {}'
|
2014-08-23 06:40:43 +09:00
|
|
|
|
2014-08-25 17:18:01 +09:00
|
|
|
cmd = cmd.replace('{}', shlex_quote(information['filepath']))
|
|
|
|
|
|
|
|
self._downloader.to_screen("[exec] Executing command: %s" % cmd)
|
|
|
|
retCode = subprocess.call(cmd, shell=True)
|
|
|
|
if retCode != 0:
|
|
|
|
raise PostProcessingError(
|
|
|
|
'Command returned error code %d' % retCode)
|
2014-08-23 06:40:43 +09:00
|
|
|
|
2015-04-18 18:36:42 +09:00
|
|
|
return [], information
|