Start implementing relay abstractions for smarter network handling and minor cosmetic changes

This commit is contained in:
2019-01-20 19:56:54 +00:00
parent e97792c460
commit 6046329a83
10 changed files with 128 additions and 7 deletions

54
commands/relay.py Normal file
View File

@@ -0,0 +1,54 @@
import main
from yaml import dump
class Relay:
def __init__(self, register):
register("relay", self.relay)
def relay(self, addr, authed, data, obj, spl, success, failure, info, incUsage, length):
if authed:
if length == 7:
if spl[1] == "add":
if spl[2] in main.relay.keys():
failure("Relay already exists: %s" % spl[2])
return
else:
if not spl[4].isdigit():
failure("Port must be an integer, not %s" % spl[4])
return
main.relay[spl[2]] = {"host": spl[3],
"port": spl[4],
"user": spl[5],
"password": spl[6]}
success("Successfully created relay: %s" % spl[2])
main.saveConf("relay")
return
else:
incUsage("relay")
return
elif length == 3:
if spl[1] == "del":
if spl[2] in main.relay.keys():
del main.relay[spl[2]]
success("Successfully removed relay: %s" % spl[2])
main.saveConf("relay")
return
else:
failure("No such relay: %s" % spl[2])
return
else:
incUsage("relay")
return
elif length == 2:
if spl[1] == "list":
info(dump(main.relay))
return
else:
incUsage("relay")
return
else:
incUsage("relay")
return
else:
incUsage(None)