zulip_bots/provision: Improve logging.
This commit is contained in:
parent
44f63992da
commit
e255c73fc3
|
@ -1,67 +1,86 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
from __future__ import absolute_import
|
from __future__ import absolute_import
|
||||||
from __future__ import print_function
|
|
||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
|
import logging
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
import glob
|
||||||
import pip
|
import pip
|
||||||
|
|
||||||
def provision_bot(path_to_bot, force):
|
def provision_bot(path_to_bot, force):
|
||||||
# type: (str, bool) -> None
|
# type: (str, bool) -> None
|
||||||
req_path = os.path.join(path_to_bot, 'requirements.txt')
|
req_path = os.path.join(path_to_bot, 'requirements.txt')
|
||||||
install_path = os.path.join(path_to_bot, 'bot_dependencies')
|
install_path = os.path.join(path_to_bot, 'bot_dependencies')
|
||||||
|
|
||||||
if os.path.isfile(req_path):
|
if os.path.isfile(req_path):
|
||||||
print('Installing dependencies...')
|
bot_name = os.path.basename(path_to_bot)
|
||||||
|
logging.info('Installing dependencies for {}...'.format(bot_name))
|
||||||
if not os.path.isdir(install_path):
|
if not os.path.isdir(install_path):
|
||||||
os.makedirs(install_path)
|
os.makedirs(install_path)
|
||||||
|
|
||||||
# pip install -r $BASEDIR/requirements.txt -t $BASEDIR/bot_dependencies --quiet
|
# pip install -r $BASEDIR/requirements.txt -t $BASEDIR/bot_dependencies --quiet
|
||||||
rcode = pip.main(['install', '-r', req_path, '-t', install_path, '--quiet'])
|
rcode = pip.main(['install', '-r', req_path, '-t', install_path, '--quiet'])
|
||||||
if not rcode == 0:
|
|
||||||
print('Error. Check output of `pip install` above for details.')
|
if rcode != 0:
|
||||||
|
logging.error('Error. Check output of `pip install` above for details.')
|
||||||
if not force:
|
if not force:
|
||||||
print('Use --force to try running anyway.')
|
logging.error('Use --force to try running anyway.')
|
||||||
sys.exit(rcode) # Use pip's exit code
|
sys.exit(rcode) # Use pip's exit code
|
||||||
else:
|
else:
|
||||||
print('Installed.')
|
logging.info('Installed dependencies successfully.')
|
||||||
|
|
||||||
sys.path.insert(0, install_path)
|
sys.path.insert(0, install_path)
|
||||||
|
|
||||||
def dir_join(dir1, dir2):
|
|
||||||
# type: (str, str) -> str
|
|
||||||
return os.path.abspath(os.path.join(dir1, dir2))
|
|
||||||
|
|
||||||
def run():
|
def parse_args(available_bots):
|
||||||
# type: () -> None
|
usage = """
|
||||||
usage = '''
|
Installs dependencies of bots in the bots/<bot_name>
|
||||||
Installs dependencies of bots in api/bots directory. Add a
|
directories. Add a requirements.txt file in a bot's folder
|
||||||
reuirements.txt file in a bot's folder before provisioning.
|
before provisioning.
|
||||||
|
|
||||||
To provision all bots, use:
|
To provision all bots, use:
|
||||||
./provision.py
|
./provision.py
|
||||||
|
|
||||||
To provision specific bots, use:
|
|
||||||
./provision.py [names of bots]
|
|
||||||
Example: ./provision.py helloworld xkcd wikipedia
|
|
||||||
|
|
||||||
'''
|
|
||||||
|
|
||||||
bots_dir = dir_join(os.path.dirname(os.path.abspath(__file__)), 'bots')
|
|
||||||
available_bots = [b for b in os.listdir(bots_dir) if os.path.isdir(dir_join(bots_dir, b))]
|
|
||||||
|
|
||||||
|
To provision specific bots, use:
|
||||||
|
./provision.py [names of bots]
|
||||||
|
Example: ./provision.py helloworld xkcd wikipedia
|
||||||
|
"""
|
||||||
parser = argparse.ArgumentParser(usage=usage)
|
parser = argparse.ArgumentParser(usage=usage)
|
||||||
|
|
||||||
parser.add_argument('bots_to_provision',
|
parser.add_argument('bots_to_provision',
|
||||||
metavar='bots',
|
metavar='bots',
|
||||||
nargs='*',
|
nargs='*',
|
||||||
default=available_bots,
|
default=available_bots,
|
||||||
help='specific bots to provision (default is all)')
|
help='specific bots to provision (default is all)')
|
||||||
|
|
||||||
parser.add_argument('--force',
|
parser.add_argument('--force',
|
||||||
default=False,
|
default=False,
|
||||||
action="store_true",
|
action="store_true",
|
||||||
help='Continue installation despite pip errors.')
|
help='Continue installation despite pip errors.')
|
||||||
options = parser.parse_args()
|
|
||||||
|
parser.add_argument('--quiet', '-q',
|
||||||
|
action='store_true',
|
||||||
|
default=False,
|
||||||
|
help='Turn off logging output.')
|
||||||
|
|
||||||
|
return parser.parse_args()
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
# type: () -> None
|
||||||
|
bots_dir = os.path.abspath("bots")
|
||||||
|
bots_subdirs = map(os.path.abspath, glob.glob("bots/*"))
|
||||||
|
available_bots = filter(lambda d: os.path.isdir(d), bots_subdirs)
|
||||||
|
|
||||||
|
options = parse_args(available_bots)
|
||||||
|
|
||||||
|
if not options.quiet:
|
||||||
|
logging.basicConfig(stream=sys.stdout, level=logging.INFO)
|
||||||
|
|
||||||
for bot in options.bots_to_provision:
|
for bot in options.bots_to_provision:
|
||||||
provision_bot(os.path.join(dir_join(bots_dir, bot)), options.force)
|
provision_bot(os.path.join(bots_dir, bot), options.force)
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
run()
|
main()
|
||||||
|
|
Loading…
Reference in a new issue