Warning
This document is for an old release of Galaxy. You can alternatively view this page in the latest release if it exists or view the top of the latest release's documentation.
Source code for galaxy.auth.providers
"""
Created on 15/07/2014
@author: Andrew Robinson
"""
import abc
[docs]class AuthProvider(metaclass=abc.ABCMeta):
"""A base class for all Auth Providers."""
@property
@abc.abstractmethod
def plugin_type(self):
"""Short string providing labelling this plugin"""
[docs] @abc.abstractmethod
def authenticate(self, email, username, password, options, request):
"""
Check that the user credentials are correct.
Besides checking password, it is possible to perform custom checks
like filtering client remote IP address using the request argument. We can
get the remote IP address of the client using request.remote_addr and
check if the IP is in whitelisted IPs and deny the authentication if
it is not.
NOTE: Used within auto-registration to check it is ok to register this
user.
:param email: the user's email address
:type email: str
:param username: the user's username
:type username: str
:param password: the plain text password they typed
:type password: str
:param options: options provided in auth_config_file
:type options: dict
:param request: HTTP request object
:type request: GalaxyWebTransaction.request
:returns: True: accept user, False: reject user and None: reject user
and don't try any other providers. str, str are the email and
username to register with if accepting. The optional dict may
contain other attributes, e.g. roles to assign when autoregistering.
:rtype: (bool, str, str) or (bool, str, str, dict)
"""
[docs] @abc.abstractmethod
def authenticate_user(self, user, password, options, request):
"""
Same as authenticate() method, except an User object is provided instead
of a username.
Besides checking password, it is possible to perform custom checks
like filtering client remote IP address using the request argument. We can
get the remote IP address of the client using request.remote_addr and
check if the IP is in whitelisted IPs and deny the authentication if
it is not.
NOTE: used on normal login to check authentication and update user
details if required.
:param user: the user to authenticate
:type user: galaxy.model.User
:param password: the plain text password they typed
:type password: str
:param options: options provided in auth_config_file
:type options: dict
:param request: HTTP request object
:type request: GalaxyWebTransaction.request
:returns: True: accept user, False: reject user and None: reject user
and don't try any other providers
:rtype: bool
"""