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.webapps.galaxy.api.authenticate

"""API key retrieval through BaseAuth

Sample usage

.. code-block::

    curl --user zipzap@foo.com:password http://localhost:8080/api/authenticate/baseauth

Returns

.. code-block:: json

    {
        "api_key": "baa4d6e3a156d3033f05736255f195f9"
    }

"""
import logging
from base64 import b64decode
from urllib.parse import unquote

from galaxy import exceptions
from galaxy.util import (
    smart_str,
    unicodify
)
from galaxy.web import expose_api_anonymous_and_sessionless
from galaxy.webapps.base.webapp import GalaxyWebTransaction
from . import BaseGalaxyAPIController

log = logging.getLogger(__name__)


[docs]class AuthenticationController(BaseGalaxyAPIController):
[docs] @expose_api_anonymous_and_sessionless def options(self, trans: GalaxyWebTransaction, **kwd): """ A no-op endpoint to return generic OPTIONS for the API. Any OPTIONS request to /api/* maps here. Right now this is solely to inform preflight CORS checks, which are API wide. Might be better placed elsewhere, but for now this is the initial entrypoint for relevant consumers. """ trans.response.headers['Access-Control-Allow-Headers'] = '*' trans.response.headers['Access-Control-Max-Age'] = 600
# No need to set allow-methods for preflight cors check, I don't think. # When this is actually granular, endpoints should *probably* respond appropriately. # trans.response.headers['Access-Control-Allow-Methods'] = 'POST, PUT, GET, OPTIONS, DELETE'
[docs] @expose_api_anonymous_and_sessionless def get_api_key(self, trans: GalaxyWebTransaction, **kwd): """ GET /api/authenticate/baseauth returns an API key for authenticated user based on BaseAuth headers :returns: api_key in json format :rtype: dict :raises: ObjectNotFound, HTTPBadRequest """ identity, password = self._decode_baseauth(trans.environ.get('HTTP_AUTHORIZATION')) # check if this is an email address or username user = self.app.user_manager.get_user_by_identity(identity) if not user: raise exceptions.ObjectNotFound('The user does not exist.') is_valid_user = self.app.auth_manager.check_password(user, password) if is_valid_user: key = self.app.api_keys_manager.get_or_create_api_key(user) return dict(api_key=key) else: raise exceptions.AuthenticationFailed('Invalid password.')
def _decode_baseauth(self, encoded_str): """ Decode an encrypted HTTP basic authentication string. Returns a tuple of the form (email, password), and raises a HTTPBadRequest exception if nothing could be decoded. :param encoded_str: BaseAuth string encoded base64 :type encoded_str: string :returns: email of the user :rtype: string :returns: password of the user :rtype: string :raises: HTTPBadRequest """ try: split = encoded_str.strip().split(' ') except AttributeError: raise exceptions.RequestParameterInvalidException('Authentication is missing') # If split is only one element, try to decode the email and password # directly. if len(split) == 1: try: email, password = unicodify(b64decode(smart_str(split[0]))).split(':') except Exception as e: raise exceptions.ActionInputError(e) # If there are only two elements, check the first and ensure it says # 'basic' so that we know we're about to decode the right thing. If not, # bail out. elif len(split) == 2: if split[0].strip().lower() == 'basic': try: email, password = unicodify(b64decode(smart_str(split[1]))).split(':') except Exception: raise exceptions.ActionInputError() else: raise exceptions.ActionInputError() # If there are more than 2 elements, something crazy must be happening. # Bail. else: raise exceptions.ActionInputError() return unquote(email), unquote(password)