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