3
0
mirror of https://github.com/jlu5/PyLink.git synced 2025-02-11 12:00:45 +01:00
PyLink/pylink

56 lines
1.8 KiB
Plaintext
Raw Normal View History

#!/usr/bin/env python3
2015-03-19 12:55:18 -07:00
import os
import sys
# Change directory to the folder containing PyLink's source
os.chdir(os.path.dirname(os.path.abspath(__file__)))
# This must be done before conf imports, so we get the real conf instead of testing one.
import world
world.testing = False
2015-07-05 19:19:49 -07:00
import conf
from log import log
import classes
import utils
import coreplugin
2015-03-19 12:55:18 -07:00
if __name__ == '__main__':
2015-09-19 11:51:56 -07:00
log.info('PyLink %s starting...', world.version)
2015-07-25 16:57:21 -07:00
# Write a PID file.
with open('%s.pid' % conf.confname, 'w') as f:
2015-07-25 16:57:21 -07: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']
# Here, we override the module lookup and import the plugins
# dynamically depending on which were configured.
for plugin in to_load:
try:
world.plugins[plugin] = pl = utils.loadModuleFromFolder(plugin, world.plugins_folder)
except (OSError, ImportError) as e:
log.exception('Failed to load plugin %r: %s: %s', plugin, type(e).__name__, str(e))
else:
if hasattr(pl, 'main'):
log.debug('Calling main() function of plugin %r', pl)
pl.main()
# Initialize all the networks one by one
for network, sdata in conf.conf['servers'].items():
protoname = sdata['protocol']
# Fetch the correct protocol module
proto = utils.getProtocolModule(protoname)
world.networkobjects[network] = irc = classes.Irc(network, proto, conf.conf)
# Call coreplugin's initialization method
2015-12-24 18:08:00 -08:00
log.debug('(%s) Calling main() function of coreplugin', irc.name)
coreplugin.main(irc)
world.started.set()
log.info("Loaded plugins: %s", ', '.join(sorted(world.plugins.keys())))