28 lines
980 B
Python
28 lines
980 B
Python
|
import main
|
||
|
from modules import regproc
|
||
|
|
||
|
class RegCommand:
|
||
|
def __init__(self, *args):
|
||
|
self.reg(*args)
|
||
|
|
||
|
def reg(self, addr, authed, data, obj, spl, success, failure, info, incUsage, length):
|
||
|
if authed:
|
||
|
if length == 3:
|
||
|
if not spl[1] in main.network.keys():
|
||
|
failure("No such network: %s" % spl[1])
|
||
|
return
|
||
|
if not spl[2].isdigit():
|
||
|
failure("Must be a number, not %s" % spl[2])
|
||
|
return
|
||
|
if not int(spl[2]) in main.network[spl[1]].relays.keys():
|
||
|
failure("No such relay on %s: %s" % (spl[2], spl[1]))
|
||
|
return
|
||
|
regproc.registerAccount(spl[1], int(spl[2]))
|
||
|
success("Requested registration on %s - %s" % (spl[1], spl[2]))
|
||
|
return
|
||
|
else:
|
||
|
incUsage("reg")
|
||
|
return
|
||
|
else:
|
||
|
incUsage(None)
|