41 lines
1.1 KiB
Python
Raw Normal View History

from __future__ import unicode_literals
2014-08-25 10:18:01 +02:00
import subprocess
2018-04-07 19:13:01 -07:00
import sys
2014-08-25 10:18:01 +02:00
from .common import PostProcessor
from ..compat import compat_shlex_quote
from ..utils import (
encodeArgument,
PostProcessingError,
)
2014-08-22 16:40:43 -05:00
class ExecAfterDownloadPP(PostProcessor):
def __init__(self, downloader, exec_cmd):
super(ExecAfterDownloadPP, self).__init__(downloader)
2014-08-25 10:18:01 +02:00
self.exec_cmd = exec_cmd
2014-08-22 16:40:43 -05:00
def run(self, information):
2014-08-25 10:18:01 +02:00
cmd = self.exec_cmd
2018-04-07 19:13:01 -07:00
str_types = (str) if sys.version_info.major > 2 else (str, unicode)
info = {}
2018-04-07 20:28:03 -07:00
2018-04-07 22:13:35 -07:00
cmd = cmd.replace('{}', '%(filepath)s')
2018-04-07 20:28:03 -07:00
if '%(filepath)s' not in cmd:
cmd += ' %(filepath)s'
2018-04-07 19:13:01 -07:00
for key in information:
value = information[key]
info[key] = compat_shlex_quote(value) if isinstance(value, str_types) else value
2018-04-07 20:28:03 -07:00
2018-04-07 20:20:27 -07:00
cmd = cmd % info
2014-08-25 10:18:01 +02:00
2016-02-14 15:37:17 +06:00
self._downloader.to_screen('[exec] Executing command: %s' % cmd)
retCode = subprocess.call(encodeArgument(cmd), shell=True)
2014-08-25 10:18:01 +02:00
if retCode != 0:
raise PostProcessingError(
'Command returned error code %d' % retCode)
2014-08-22 16:40:43 -05:00
return [], information