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
|
2017-06-17 12:15:57 -04:00
|
|
|
from ..utils import (
|
|
|
|
encodeArgument,
|
|
|
|
PostProcessingError,
|
|
|
|
)
|
2014-08-22 17:40:43 -04:00
|
|
|
|
|
|
|
|
2014-08-23 15:30:13 -04:00
|
|
|
class ExecAfterDownloadPP(PostProcessor):
|
2021-01-07 14:28:41 -05:00
|
|
|
|
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
|
|
|
|
2021-01-20 11:07:40 -05:00
|
|
|
@classmethod
|
|
|
|
def pp_key(cls):
|
|
|
|
return 'Exec'
|
|
|
|
|
2021-04-10 20:09:55 -04:00
|
|
|
def run(self, info):
|
|
|
|
tmpl, info_copy = self._downloader.prepare_outtmpl(self.exec_cmd, info)
|
|
|
|
cmd = tmpl % info_copy
|
|
|
|
if cmd == self.exec_cmd: # No replacements were made
|
|
|
|
if '{}' not in self.exec_cmd:
|
|
|
|
self.exec_cmd += ' {}'
|
|
|
|
cmd = self.exec_cmd.replace('{}', compat_shlex_quote(info['filepath']))
|
2014-08-25 04:18:01 -04:00
|
|
|
|
2021-01-07 14:28:41 -05:00
|
|
|
self.to_screen('Executing command: %s' % cmd)
|
2017-06-17 12:15:57 -04:00
|
|
|
retCode = subprocess.call(encodeArgument(cmd), shell=True)
|
2014-08-25 04:18:01 -04:00
|
|
|
if retCode != 0:
|
|
|
|
raise PostProcessingError(
|
|
|
|
'Command returned error code %d' % retCode)
|
2014-08-22 17:40:43 -04:00
|
|
|
|
2021-04-10 20:09:55 -04:00
|
|
|
return [], info
|