Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
if not (user and get_user(user.name)):
raise NameError('User does not exist: %r.' % user)
api.delete(user)
### Authentication
PASSWORD_TYPE = sasl.DigestMD5Password
def make_password(name, passwd):
auth = authenticator()
if not auth:
raise ValueError('No active authenticator.')
return password(PASSWORD_TYPE.make(auth, name, passwd))
class LocalAuth(sasl.Authenticator):
def __init__(self, service=None, host=None):
self._service = service or 'xmpp'
self._host = host or get_host()
def service_type(self):
return self._service
def host(self):
return self._host
def realm(self):
return self._host
def username(self):
raise NotImplemented