1
0
Fork 0
mirror of synced 2024-05-24 19:15:22 -04:00
dotbot/plugins/shell.py

69 lines
2.7 KiB
Python
Raw Normal View History

2016-01-16 22:00:15 -05:00
import os, subprocess, dotbot
2014-03-19 23:07:30 -04:00
2016-01-16 22:00:15 -05:00
class Shell(dotbot.Plugin):
2014-03-19 23:07:30 -04:00
'''
Run arbitrary shell commands.
'''
2014-04-24 15:41:34 -04:00
_directive = 'shell'
2014-03-19 23:07:30 -04:00
def can_handle(self, directive):
2014-04-24 15:41:34 -04:00
return directive == self._directive
2014-03-19 23:07:30 -04:00
def handle(self, directive, data):
2014-04-24 15:41:34 -04:00
if directive != self._directive:
2016-01-16 22:00:15 -05:00
raise ValueError('Shell cannot handle directive %s' %
2014-03-19 23:07:30 -04:00
directive)
return self._process_commands(data)
def _process_commands(self, data):
success = True
defaults = self._context.defaults().get('shell', {})
2014-03-19 23:07:30 -04:00
with open(os.devnull, 'w') as devnull:
for item in data:
stdin = stdout = stderr = devnull
2017-07-26 05:03:47 -04:00
quiet = False
2017-06-28 00:20:37 -04:00
if defaults.get('stdin', False) == True:
stdin = None
if defaults.get('stdout', False) == True:
stdout = None
if defaults.get('stderr', False) == True:
stderr = None
2017-07-26 05:03:47 -04:00
if defaults.get('quiet', False) == True:
quiet = True
if isinstance(item, dict):
cmd = item['command']
msg = item.get('description', None)
2017-06-28 00:20:37 -04:00
if 'stdin' in item:
stdin = None if item['stdin'] == True else devnull
if 'stdout' in item:
stdout = None if item['stdout'] == True else devnull
if 'stderr' in item:
stderr = None if item['stderr'] == True else devnull
2017-07-26 05:03:47 -04:00
if 'quiet' in item:
quiet = True if item['quiet'] == True else False
elif isinstance(item, list):
cmd = item[0]
msg = item[1] if len(item) > 1 else None
else:
cmd = item
msg = None
if msg is None:
self._log.lowinfo(cmd)
2017-07-26 05:03:47 -04:00
elif quiet:
self._log.lowinfo('%s' % msg)
else:
self._log.lowinfo('%s [%s]' % (msg, cmd))
2016-10-19 11:25:45 -04:00
executable = os.environ.get('SHELL')
ret = subprocess.call(cmd, shell=True, stdin=stdin, stdout=stdout,
2016-10-19 11:25:45 -04:00
stderr=stderr, cwd=self._context.base_directory(),
executable=executable)
2014-03-19 23:07:30 -04:00
if ret != 0:
success = False
self._log.warning('Command [%s] failed' % cmd)
if success:
self._log.info('All commands have been executed')
else:
self._log.error('Some commands were not successfully executed')
2014-03-19 23:07:30 -04:00
return success