Handle OAuth2 authentication for REST APIs
Project description
Handle OAuth2 authentication for REST APIs
As expected by the HTTP specification, token is extracted from Authorization
header and must be prefixed with Bearer
.
Token will then be validated and in case it is valid, you will be able to access the raw token (as string) and the decoded token body (as dictionary).
Starlette
Provides a Starlette authentication backend: layabauth.starlette.OAuth2IdTokenBackend
.
3 arguments are required:
- The JWKs URI as defined in .well-known.
- Azure Active Directory:
https://sts.windows.net/common/discovery/keys
- Microsoft Identity Platform:
https://sts.windows.net/common/discovery/keys
- A callable to create the authenticated user based on received token.
- A callable to returns authenticated user scopes based on received token.
Below is a sample Starlette
application with an endpoint requesting a Microsoft issued OAuth2 token.
import starlette.applications
from starlette.authentication import SimpleUser, requires
from starlette.middleware import Middleware
from starlette.middleware.authentication import AuthenticationMiddleware
from starlette.responses import PlainTextResponse
import layabauth.starlette
backend = layabauth.starlette.OAuth2IdTokenBackend(
jwks_uri="https://sts.windows.net/common/discovery/keys",
create_user=lambda token, token_body: SimpleUser(token_body["name"]),
scopes=lambda token, token_body: token_body["scopes"]
)
app = starlette.applications.Starlette(middleware=[Middleware(AuthenticationMiddleware, backend=backend)])
@app.route("/my_endpoint")
@requires('my_scope')
async def my_endpoint(request):
return PlainTextResponse(request.user.display_name)
Flask
Provides a decorator layabauth.flask.requires_authentication
to ensure that, in a context of a Flask
application, a valid OAuth2 token was received.
The JWKs URI as defined in .well-known is the only required argument.
- Azure Active Directory:
https://sts.windows.net/common/discovery/keys
- Microsoft Identity Platform:
https://sts.windows.net/common/discovery/keys
If validation fails, an werkzeug.exceptions.Unauthorized
exception is raised.
Otherwise token is stored in flask.g.token
and decoded token body is stored in flask.g.token_body
.
Decorator works fine on flask-restplus
methods as well.
Below is a sample Flask
application with an endpoint requesting a Microsoft issued OAuth2 token.
import flask
import layabauth.flask
app = flask.Flask(__name__)
@app.route("/my_endpoint")
@layabauth.flask.requires_authentication("https://sts.windows.net/common/discovery/keys")
def my_endpoint():
# Optional, ensure that the appropriates scopes are provided
layabauth.flask.requires_scopes(lambda token, token_body: token_body["scopes"], "my_scope")
# Return the content of the name entry within the decoded token body.
return flask.Response(flask.g.token_body["name"])
app.run()
OpenAPI
You can generate OpenAPI 2.0 security
definition thanks to layabauth.authorizations
.
You can generate OpenAPI 2.0 method security
thanks to layabauth.method_authorizations
Testing
Authentication can be mocked using layabauth.testing.auth_mock
pytest
fixture.
token_body
pytest
fixture returning the decoded token body used in tests must be provided.
jwks_uri
pytest
fixture returning the jwks_uri used in tests must be provided.
from layabauth.testing import *
@pytest.fixture
def jwks_uri():
return "https://sts.windows.net/common/discovery/keys"
@pytest.fixture
def token_body():
return {"name": "TEST@email.com", "scopes": ["my_scope"]}
def test_authentication(auth_mock, client):
response = client.get("/my_endpoint", headers={"Authentication": "Bearer mocked_token"})
assert response.text == "TEST@email.com"
How to install
- python 3.7+ must be installed
- Use pip to install module:
python -m pip install layabauth
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file layabauth-7.0.0.tar.gz
.
File metadata
- Download URL: layabauth-7.0.0.tar.gz
- Upload date:
- Size: 15.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 904ee28d3b9362e9344378feb050f05bcf272eb675adcb9ebeaa218db9367e2b |
|
MD5 | 034820bfb2da46d09af61a4daf81460e |
|
BLAKE2b-256 | dd4592b65092baf91541a2635264e19a97e321e6b100ecd085932fc68f192f7d |
File details
Details for the file layabauth-7.0.0-py3-none-any.whl
.
File metadata
- Download URL: layabauth-7.0.0-py3-none-any.whl
- Upload date:
- Size: 8.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3e2fb33ae2d7da1c32e0f7f68bee2091d2a1039d2b2d0b8e33df360558aa2dd9 |
|
MD5 | 51825f30a61acd1026d73aa092fb0281 |
|
BLAKE2b-256 | d3d38ad56cf5086f727d413e5a21f0440664570a573a08b15d858aa325a13a5c |