2016-11-21 19:44:16 -05:00
|
|
|
#!/usr/bin/env python
|
2016-08-17 12:34:11 -04:00
|
|
|
from __future__ import print_function
|
|
|
|
|
|
|
|
import importlib
|
|
|
|
import logging
|
|
|
|
import optparse
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
|
|
|
our_dir = os.path.dirname(os.path.abspath(__file__))
|
2017-01-14 13:58:03 -05:00
|
|
|
sys.path.insert(0, our_dir)
|
2016-08-17 12:34:11 -04:00
|
|
|
|
2017-01-14 13:58:03 -05:00
|
|
|
from bot_lib import run_message_handler_for_bot
|
2017-01-10 15:41:02 -05:00
|
|
|
|
2016-08-17 12:34:11 -04:00
|
|
|
def get_lib_module(lib_fn):
|
|
|
|
lib_fn = os.path.abspath(lib_fn)
|
2016-12-14 05:12:26 -05:00
|
|
|
if not os.path.dirname(lib_fn).startswith(os.path.join(our_dir, 'lib')):
|
2016-08-17 12:34:11 -04:00
|
|
|
print('Sorry, we will only import code from contrib_bots/lib.')
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
if not lib_fn.endswith('.py'):
|
|
|
|
print('Please use a .py extension for library files.')
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
sys.path.append('lib')
|
|
|
|
base_lib_fn = os.path.basename(os.path.splitext(lib_fn)[0])
|
|
|
|
module_name = 'lib.' + base_lib_fn
|
|
|
|
module = importlib.import_module(module_name)
|
|
|
|
return module
|
|
|
|
|
|
|
|
def run():
|
|
|
|
usage = '''
|
2016-11-21 19:44:16 -05:00
|
|
|
./run.py <lib file>
|
2016-08-17 12:34:11 -04:00
|
|
|
|
2016-11-21 19:44:16 -05:00
|
|
|
Example: ./run.py lib/followup.py
|
2016-08-17 12:34:11 -04:00
|
|
|
|
|
|
|
(This program loads bot-related code from the
|
|
|
|
library code and then runs a message loop,
|
|
|
|
feeding messages to the library code to handle.)
|
|
|
|
|
|
|
|
Please make sure you have a current ~/.zuliprc
|
|
|
|
file with the credentials you want to use for
|
|
|
|
this bot.
|
|
|
|
|
|
|
|
See lib/readme.md for more context.
|
|
|
|
'''
|
|
|
|
|
|
|
|
parser = optparse.OptionParser(usage=usage)
|
|
|
|
parser.add_option('--quiet', '-q',
|
2016-12-11 08:30:45 -05:00
|
|
|
action='store_true',
|
|
|
|
help='Turn off logging output.')
|
2016-08-24 15:09:11 -04:00
|
|
|
parser.add_option('--config-file',
|
2016-12-11 08:30:45 -05:00
|
|
|
action='store',
|
|
|
|
help='(alternate config file to ~/.zuliprc)')
|
2016-08-17 12:34:11 -04:00
|
|
|
(options, args) = parser.parse_args()
|
|
|
|
|
|
|
|
if len(args) == 0:
|
|
|
|
print('You must specify a library!')
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
lib_module = get_lib_module(lib_fn=args[0])
|
|
|
|
|
|
|
|
if not options.quiet:
|
|
|
|
logging.basicConfig(stream=sys.stdout, level=logging.INFO)
|
|
|
|
|
2016-08-24 15:09:11 -04:00
|
|
|
run_message_handler_for_bot(
|
|
|
|
lib_module=lib_module,
|
|
|
|
config_file=options.config_file,
|
|
|
|
quiet=options.quiet
|
|
|
|
)
|
2016-08-17 12:34:11 -04:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
run()
|