2015-12-07 02:40:13 +01:00
|
|
|
"""
|
2016-03-12 08:09:07 +01:00
|
|
|
world.py: Stores global variables for PyLink, including lists of active IRC objects and plugins.
|
2015-12-07 02:40:13 +01:00
|
|
|
"""
|
2015-08-29 04:27:38 +02:00
|
|
|
|
2015-08-29 18:39:33 +02:00
|
|
|
from collections import defaultdict
|
|
|
|
import threading
|
2015-09-19 20:51:56 +02:00
|
|
|
import subprocess
|
2015-09-29 04:12:45 +02:00
|
|
|
import os
|
2015-08-29 18:39:33 +02:00
|
|
|
|
2016-06-24 07:51:40 +02:00
|
|
|
# This indicates whether we're running in tests modes. What it actually does
|
|
|
|
# though is control whether IRC connections should be threaded or not.
|
|
|
|
testing = False
|
2015-12-25 03:24:42 +01:00
|
|
|
|
2016-05-22 08:01:09 +02:00
|
|
|
# Statekeeping for our hooks list, IRC objects, loaded plugins, and initialized
|
|
|
|
# service bots.
|
2015-09-27 19:53:25 +02:00
|
|
|
hooks = defaultdict(list)
|
2015-08-29 18:39:33 +02:00
|
|
|
networkobjects = {}
|
2015-09-27 19:27:32 +02:00
|
|
|
plugins = {}
|
2016-05-14 18:55:46 +02:00
|
|
|
services = {}
|
|
|
|
|
2015-08-29 18:39:33 +02:00
|
|
|
started = threading.Event()
|
2015-09-19 20:51:56 +02:00
|
|
|
|
2015-11-23 05:14:47 +01:00
|
|
|
plugins_folder = os.path.join(os.getcwd(), 'plugins')
|
|
|
|
protocols_folder = os.path.join(os.getcwd(), 'protocols')
|
2015-09-29 04:12:45 +02:00
|
|
|
|
2015-09-19 20:51:56 +02:00
|
|
|
version = "<unknown>"
|
|
|
|
source = "https://github.com/GLolol/PyLink" # CHANGE THIS IF YOU'RE FORKING!!
|
|
|
|
|
|
|
|
# Only run this once.
|
|
|
|
if version == "<unknown>":
|
|
|
|
# Get version from Git tags.
|
|
|
|
try:
|
|
|
|
version = 'v' + subprocess.check_output(['git', 'describe', '--tags']).decode('utf-8').strip()
|
2015-09-19 20:55:29 +02:00
|
|
|
except Exception as e:
|
|
|
|
print('ERROR: Failed to get version from "git describe --tags": %s: %s' % (type(e).__name__, e))
|