2018-03-14 20:13:40 +00:00
|
|
|
import main
|
2018-02-23 22:05:40 +00:00
|
|
|
|
2022-07-21 12:39:41 +00:00
|
|
|
|
2019-08-09 22:06:34 +00:00
|
|
|
class PassCommand:
|
2019-01-26 18:58:21 +00:00
|
|
|
def __init__(self, *args):
|
|
|
|
self.password(*args)
|
2018-02-23 22:05:40 +00:00
|
|
|
|
2022-07-21 12:40:01 +00:00
|
|
|
def password(self, addr, authed, data, obj, spl, success, failure, info, incUsage, length):
|
2018-02-23 22:05:40 +00:00
|
|
|
if authed:
|
|
|
|
info("You are already authenticated")
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
if length == 2:
|
2018-03-14 20:13:40 +00:00
|
|
|
if spl[1] == main.config["Password"]:
|
2018-02-23 22:05:40 +00:00
|
|
|
success("Authenticated successfully")
|
|
|
|
obj.authed = True
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
failure("Password incorrect")
|
|
|
|
obj.transport.loseConnection()
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
incUsage("pass")
|