2014-08-23 19:30:13 +00:00
|
|
|
from __future__ import unicode_literals
|
2014-08-25 08:18:01 +00:00
|
|
|
|
2021-04-15 18:44:33 +00:00
|
|
|
import re
|
2014-08-23 19:30:13 +00:00
|
|
|
import subprocess
|
2014-08-25 08:18:01 +00:00
|
|
|
|
|
|
|
from .common import PostProcessor
|
2016-05-10 07:58:25 +00:00
|
|
|
from ..compat import compat_shlex_quote
|
2017-06-17 16:15:57 +00:00
|
|
|
from ..utils import (
|
|
|
|
encodeArgument,
|
2021-04-15 18:44:33 +00:00
|
|
|
FORMAT_RE,
|
2017-06-17 16:15:57 +00:00
|
|
|
PostProcessingError,
|
|
|
|
)
|
2014-08-22 21:40:43 +00:00
|
|
|
|
|
|
|
|
2014-08-23 19:30:13 +00:00
|
|
|
class ExecAfterDownloadPP(PostProcessor):
|
2021-01-07 19:28:41 +00:00
|
|
|
|
2015-05-10 15:47:49 +00:00
|
|
|
def __init__(self, downloader, exec_cmd):
|
|
|
|
super(ExecAfterDownloadPP, self).__init__(downloader)
|
2014-08-25 08:18:01 +00:00
|
|
|
self.exec_cmd = exec_cmd
|
2014-08-22 21:40:43 +00:00
|
|
|
|
2021-01-20 16:07:40 +00:00
|
|
|
@classmethod
|
|
|
|
def pp_key(cls):
|
|
|
|
return 'Exec'
|
|
|
|
|
2021-04-15 18:44:33 +00:00
|
|
|
def parse_cmd(self, cmd, info):
|
|
|
|
# If no %(key)s is found, replace {} for backard compatibility
|
|
|
|
if not re.search(FORMAT_RE.format(r'[-\w>.+]+'), cmd):
|
|
|
|
if '{}' not in cmd:
|
|
|
|
cmd += ' {}'
|
|
|
|
return cmd.replace('{}', compat_shlex_quote(info['filepath']))
|
|
|
|
|
|
|
|
tmpl, info_copy = self._downloader.prepare_outtmpl(cmd, info)
|
|
|
|
return tmpl % info_copy
|
2014-08-25 08:18:01 +00:00
|
|
|
|
2021-04-15 18:44:33 +00:00
|
|
|
def run(self, info):
|
|
|
|
cmd = self.parse_cmd(self.exec_cmd, info)
|
2021-01-07 19:28:41 +00:00
|
|
|
self.to_screen('Executing command: %s' % cmd)
|
2017-06-17 16:15:57 +00:00
|
|
|
retCode = subprocess.call(encodeArgument(cmd), shell=True)
|
2014-08-25 08:18:01 +00:00
|
|
|
if retCode != 0:
|
2021-04-15 18:44:33 +00:00
|
|
|
raise PostProcessingError('Command returned error code %d' % retCode)
|
2021-04-11 00:09:55 +00:00
|
|
|
return [], info
|