mirror of
https://github.com/MISP/misp-galaxy.git
synced 2024-11-29 18:27:19 +00:00
26 lines
738 B
Python
26 lines
738 B
Python
from typing import Optional, Tuple, Union
|
|
|
|
|
|
class CredentialProvider:
|
|
"""
|
|
Credentials Provider.
|
|
"""
|
|
|
|
def get_credentials(self) -> Union[Tuple[str], Tuple[str, str]]:
|
|
raise NotImplementedError("get_credentials must be implemented")
|
|
|
|
|
|
class UsernamePasswordCredentialProvider(CredentialProvider):
|
|
"""
|
|
Simple implementation of CredentialProvider that just wraps static
|
|
username and password.
|
|
"""
|
|
|
|
def __init__(self, username: Optional[str] = None, password: Optional[str] = None):
|
|
self.username = username or ""
|
|
self.password = password or ""
|
|
|
|
def get_credentials(self):
|
|
if self.username:
|
|
return self.username, self.password
|
|
return (self.password,)
|