colda.authentication package

Submodules

colda.authentication.api module

class colda.authentication.api.Authentication

Bases: AuthenticationBase

Verify user identity

Methods

user_register user_login user_logout

classmethod get_instance() Authentication

Singleton pattern. Get instance of current class.

Returns

Authentication

process_token(token: str) None

Process token from backend and Set correlated attributes

Parameters

token : str

Returns

None

user_login(username: str, password: str) None

user login Get Token when first time login. Update __token in Network class

Parameters

username : str password : str

Returns

None

user_logout()

user logout clean related class

Returns

None

user_register(username: str, email: str, password: str) None

register new user

Parameters

username : str email : str password : str

Returns

None

colda.authentication.authentication module

class colda.authentication.authentication.Authentication

Bases: AuthenticationBase

Verify user identity

Methods

user_register user_login user_logout

classmethod get_instance() Authentication

Singleton pattern. Get instance of current class.

Returns

Authentication

process_token(token: str) None

Process token from backend and Set correlated attributes

Parameters

token : str

Returns

None

user_login(username: str, password: str) None

user login Get Token when first time login. Update __token in Network class

Parameters

username : str password : str

Returns

None

user_logout()

user logout clean related class

Returns

None

user_register(username: str, email: str, password: str) None

register new user

Parameters

username : str email : str password : str

Returns

None

colda.authentication.base module

class colda.authentication.base.AuthenticationBase

Bases: object

Base class for authentication

final placeholder()

colda.authentication.logout module

colda.authentication.utils module

colda.authentication.utils.del_instance(objectInstance: object) None

Delete instance

Parameters

objectInstance : object

Returns

None

colda.authentication.utils.handle_base64_padding(base64_string: str) str

If the length of the base64 string is not multiple of 3, add ‘=’ or ‘==’ behind to let the base64_string can be parsed

Parameters

base64_stringstr

part of token

Returns

str

Processed base64_string

Module contents