3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-11-01 01:09:22 +01:00
PyLink/pylink

64 lines
2.2 KiB
Plaintext
Raw Normal View History

2015-03-19 20:55:18 +01:00
#!/usr/bin/python3
import imp
import os
import sys
# cd into the PyLink root directory first...
os.chdir(os.path.dirname(__file__))
import world
# This must be set before conf imports, so we get the real conf instead of testing one.
world.testing = False
2015-07-06 04:19:49 +02:00
import conf
from log import log
import classes
import coreplugin
2015-03-19 20:55:18 +01:00
if __name__ == '__main__':
2015-09-19 20:51:56 +02:00
log.info('PyLink %s starting...', world.version)
2015-07-06 04:19:49 +02:00
if conf.conf['login']['password'] == 'changeme':
2015-07-05 22:44:48 +02:00
log.critical("You have not set the login details correctly! Exiting...")
sys.exit(2)
protocols_folder = os.path.join(os.getcwd(), 'protocols')
2015-07-26 01:57:21 +02:00
# Write a PID file.
with open('%s.pid' % conf.confname, 'w') as f:
2015-07-26 01:57:21 +02:00
f.write(str(os.getpid()))
# Import plugins first globally, because they can listen for events
# that happen before the connection phase.
to_load = conf.conf['plugins']
plugins_folder = os.path.join(os.getcwd(), 'plugins')
sys.path.extend([plugins_folder, protocols_folder])
for plugin in to_load:
try:
world.plugins[plugin] = pl = __import__(plugin)
except ImportError as e:
if str(e) == ('No module named %r' % plugin):
log.error('Failed to load plugin %r: The plugin could not be found.', plugin)
else:
log.error('Failed to load plugin %r: ImportError: %s', plugin, str(e))
else:
if hasattr(pl, 'main'):
log.debug('Calling main() function of plugin %r', pl)
pl.main()
for network in conf.conf['servers']:
protoname = conf.conf['servers'][network]['protocol']
try:
proto = __import__(protoname)
except ImportError as e:
if str(e) == ('No module named %r' % protoname):
log.critical('Failed to load protocol module %r: The file could not be found.', protoname)
else:
log.critical('Failed to load protocol module: ImportError: %s', protoname, str(e))
sys.exit(2)
else:
world.networkobjects[network] = irc = classes.Irc(network, proto)
irc.plugins_folder = plugins_folder
world.started.set()
log.info("loaded plugins: %s", world.plugins)