2015-03-19 20:55:18 +01:00
|
|
|
#!/usr/bin/python3
|
|
|
|
|
|
|
|
import yaml
|
|
|
|
import imp
|
|
|
|
import os
|
2015-04-03 09:17:03 +02:00
|
|
|
import threading
|
|
|
|
import socket
|
2015-04-03 21:35:55 +02:00
|
|
|
import multiprocessing
|
|
|
|
import time
|
2015-03-19 20:55:18 +01:00
|
|
|
|
|
|
|
print('PyLink starting...')
|
|
|
|
|
|
|
|
with open("config.yml", 'r') as f:
|
|
|
|
conf = yaml.load(f)
|
|
|
|
|
|
|
|
# if conf['login']['password'] == 'changeme':
|
|
|
|
# print("You have not set the login details correctly! Exiting...")
|
|
|
|
|
|
|
|
global networkobjects
|
|
|
|
networkobjects = {}
|
|
|
|
|
2015-04-04 03:45:18 +02:00
|
|
|
class IrcUser():
|
|
|
|
def __init__(self, nick, timestamp, data={'uid': None}):
|
|
|
|
self.nick = nick
|
|
|
|
self.data = data
|
|
|
|
self.timestamp = timestamp
|
|
|
|
|
|
|
|
class Irc(multiprocessing.Process):
|
2015-04-03 21:35:55 +02:00
|
|
|
def __init__(self, network):
|
|
|
|
multiprocessing.Process.__init__(self)
|
2015-04-04 03:45:18 +02:00
|
|
|
# Initialize some variables
|
2015-04-03 09:17:03 +02:00
|
|
|
self.socket = socket.socket()
|
2015-04-03 21:35:55 +02:00
|
|
|
self.kill_received = False
|
2015-04-04 03:45:18 +02:00
|
|
|
self.users = {}
|
|
|
|
self.name = network
|
2015-04-03 09:17:03 +02:00
|
|
|
|
|
|
|
self.serverdata = conf['networks'][network]
|
|
|
|
ip = self.serverdata["ip"]
|
|
|
|
port = self.serverdata["port"]
|
|
|
|
self.sid = self.serverdata["sid"]
|
|
|
|
print("[+] New thread started for %s:%s" % (ip, port))
|
|
|
|
|
2015-04-04 03:45:18 +02:00
|
|
|
|
2015-04-03 09:17:03 +02:00
|
|
|
protoname = self.serverdata['protocol']
|
2015-03-19 20:55:18 +01:00
|
|
|
# With the introduction of Python 3, relative imports are no longer
|
|
|
|
# allowed from normal applications ran from the command line. Instead,
|
|
|
|
# these imported libraries must be installed as a package using distutils
|
|
|
|
# or something similar.
|
|
|
|
#
|
|
|
|
# But I don't want that! Where PyLink is at right now (a total WIP), it is
|
|
|
|
# a lot more convenient to run the program directly from the source folder.
|
|
|
|
protocols_folder = [os.path.join(os.getcwd(), 'protocols')]
|
|
|
|
# Here, we override the module lookup and import the protocol module
|
|
|
|
# dynamically depending on which module was configured.
|
|
|
|
moduleinfo = imp.find_module(protoname, protocols_folder)
|
|
|
|
self.proto = imp.load_source(protoname, moduleinfo[1])
|
2015-04-03 09:17:03 +02:00
|
|
|
self.socket = socket.socket()
|
|
|
|
self.socket.connect((ip, port))
|
|
|
|
self.proto.connect(self)
|
|
|
|
|
2015-04-03 21:35:55 +02:00
|
|
|
def run(self):
|
|
|
|
while not self.kill_received:
|
|
|
|
try:
|
|
|
|
data = self.socket.recv(1024)
|
|
|
|
if data:
|
|
|
|
buf = data.decode("utf-8")
|
|
|
|
for line in buf.split("\n"):
|
|
|
|
print("<- {}".format(line))
|
|
|
|
self.proto.handle_events(self, line)
|
|
|
|
except socket.error:
|
|
|
|
self.restart()
|
|
|
|
break
|
2015-04-03 09:17:03 +02:00
|
|
|
|
|
|
|
def send(self, data):
|
|
|
|
data = data.encode("utf-8") + b"\n"
|
|
|
|
print("-> {}".format(data.decode("utf-8").strip("\n")))
|
|
|
|
self.socket.send(data)
|
2015-04-03 21:35:55 +02:00
|
|
|
|
|
|
|
def restart(self):
|
|
|
|
print('Disconnected... Restarting IRC Object for: %s' % network)
|
|
|
|
time.sleep(1)
|
|
|
|
del networkobjects[network]
|
2015-04-04 03:45:18 +02:00
|
|
|
networkobjects[network] = Irc(network)
|
2015-04-03 21:35:55 +02:00
|
|
|
|
|
|
|
def relay(self, line):
|
|
|
|
for network in networkobjects.values():
|
|
|
|
self.proto.handle_events(self, line)
|
2015-03-19 20:55:18 +01:00
|
|
|
|
|
|
|
for network in conf['networks']:
|
|
|
|
print('Creating IRC Object for: %s' % network)
|
2015-04-04 03:45:18 +02:00
|
|
|
networkobjects[network] = Irc(network)
|
2015-04-03 21:35:55 +02:00
|
|
|
networkobjects[network].start()
|