Authorization and multitenancy¤
The asab.web.auth
module provides authentication and
authorization of incoming requests.
This enables your application to differentiate between users,
grant or deny them API access depending on their permissions, and work
with other relevant user data.
The module also implements multitenancy, meaning that your application can be used by a number of independent subjects (tenants, for example companies) without interfering with each other.
The auth
module requires an authorization server to function.
It works best with TeskaLabs Seacat Auth
authorization server
(See its documentation for setup instructions).
Getting started¤
To get started, add asab.web
module to your application and initialize asab.web.auth.AuthService
:
import asab
import asab.web
import asab.web.auth
...
class MyApplication(asab.Application):
def __init__(self):
super().__init__()
# Initialize web module
asab.web.create_web_server(self)
# Initialize authorization service
self.AuthService = asab.web.auth.AuthService(self)
Note
If your app has more than one web container, you will need to call AuthService.install(web_container)
to apply
the authorization.
Note
You may also need to specify your authorization server's public_keys_url
(also known as jwks_uri
in OAuth 2.0).
In case you don't have any authorization server at hand,
you can run the auth module in "mock mode". See the Configuration section for details.
Every handler in your web server now accepts only requests with a valid authentication.
Unauthenticated requests are automatically answered with
HTTP 401: Unauthorized.
For every authenticated request, an asab.web.auth.Authorization
object is created and stored
in asab.contextvars.Authz
for easy access.
It contains authorization and authentication details, such as CredentialsId
, Username
or Email
, and
access-checking methods has_resource_access
, require_superuser_access
and more (see reference).
import asab.contextvars
import asab.web.rest
...
async def order_breakfast(request):
authz = asab.contextvars.Authz.get()
username = authz.Username
# This will raise asab.exceptions.AccessDeniedError when the user is not authorized for resource `breakfast:access`
authz.require_resource_access("breakfast:access")
print("{} is ordering breakfast.".format(username))
if authz.has_resource_access("breakfast:pancakes"):
print("{} can get pancakes for breakfast!".format(username))
if authz.has_superuser_access():
print("{} can get anything they want!".format(username))
return asab.web.rest.json_response(request, {
"result": "Good morning {}, your breakfast will be ready in a minute!".format(username)
})
See examples/web-auth.py for a full demo ASAB application with auth module.
Configuration¤
The asab.web.auth
module is configured
in the [auth]
section with the following options:
Option | Type | Meaning |
---|---|---|
public_keys_url |
URL | The URL of the authorization server's public keys (also known as jwks_uri in OAuth 2.0) |
enabled |
boolean or "mock" |
Enables or disables authentication and authorization or switches to mock authorization. In mock mode, all incoming requests are authorized with mock user info. There is no communication with the authorization server (so it is not necessary to configure public_keys_url in dev mode). |
mock_user_info_path |
path | Path to JSON file that contains user info claims used in mock mode. The structure of user info should follow the OpenID Connect userinfo definition and also contain the resources object. |
Default options:
public_keys_url=http://localhost:3081/.well-known/jwks.json
enabled=yes
mock_user_info_path=/conf/mock-userinfo.json
Multitenancy¤
Incoming request can specify tenant context using X-Tenant
HTTP header.
If this header is not empty, AuthService
extracts the tenant ID and verifies if the request is authorized
to access that tenant.
The request tenant can easily be accessed using asab.contextvars.Tenant.get()
.
import asab.contextvars
import asab.web.rest
...
async def get_todays_menu(request):
tenant = asab.contextvars.Tenant.get()
menu = await get_todays_menu(tenant)
return asab.web.rest.json_response(request, data=menu)
Mock mode¤
In mock mode, actual authorization is disabled and replaced with mock authorization, which is useful when you want
to develop your ASAB application, but don't have any authorization server at hand.
Activate mock mode by setting enabled=mock
in the [auth]
config section.
You can also specify a path to a JSON file with your own mock userinfo payload [auth] mock_user_info_path
:
When dev mode is enabled, you don't have to provide [public_keys_url]
since this option is ignored.
Reference¤
asab.web.auth.AuthService
¤
Bases: Service
Provides authentication and authorization of incoming requests.
Source code in asab/web/auth/service.py
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 |
|
build_authorization(id_token)
async
¤
Build authorization from ID token string.
:param id_token: Base64-encoded JWToken from Authorization header :return: Valid asab.web.auth.Authorization object
Source code in asab/web/auth/service.py
get_authorized_tenant(request=None)
¤
DEPRECATED. Get the request's authorized tenant.
Source code in asab/web/auth/service.py
get_bearer_token_from_authorization_header(request)
async
¤
Validate the Authorizetion header and extract the Bearer token value
Source code in asab/web/auth/service.py
install(web_container)
¤
Apply authorization to all web handlers in a web container.
:param web_container: Web container to be protected by authorization. :type web_container: asab.web.WebContainer
Source code in asab/web/auth/service.py
is_enabled()
¤
is_ready()
¤
Check if the service is ready to authorize requests.
Source code in asab/web/auth/service.py
asab.web.auth.Authorization
¤
Contains authentication and authorization details, provides methods for checking and enforcing access control.
Requires that AuthService is initialized and enabled.
Source code in asab/web/auth/authorization.py
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 |
|
authorized_resources()
¤
Return the set of authorized resources.
NOTE: If possible, use methods has_resource_access(resource_id) and has_superuser_access() instead of inspecting the set of resources directly.
:return: Set of authorized resources.
Source code in asab/web/auth/authorization.py
has_resource_access(*resources)
¤
Check whether the agent is authorized to access requested resources.
:param resources: List of resource IDs whose authorization is requested. :return: Is resource access authorized?
Source code in asab/web/auth/authorization.py
has_superuser_access()
¤
Check whether the agent is a superuser.
:return: Is the agent a superuser?
has_tenant_access()
¤
Check whether the agent has access to the tenant in context.
:return: Is tenant access authorized?
Source code in asab/web/auth/authorization.py
is_valid()
¤
require_resource_access(*resources)
¤
Assert that the agent is authorized to access the required resources.
:param resources: List of resource IDs whose authorization is required.
Source code in asab/web/auth/authorization.py
require_superuser_access()
¤
Assert that the agent has superuser access.
Source code in asab/web/auth/authorization.py
require_tenant_access()
¤
Assert that the agent is authorized to access the tenant in the context.
Source code in asab/web/auth/authorization.py
require_valid()
¤
Ensure that the authorization is not expired.
Source code in asab/web/auth/authorization.py
user_info()
¤
Return OpenID Connect UserInfo.
NOTE: If possible, use Authz attributes (CredentialsId, Username etc.) instead of inspecting the user info dictionary directly.
:return: User info
Source code in asab/web/auth/authorization.py
asab.web.auth.require(*resources)
¤
Require that the request have authorized access to one or more resources. Requests without these resources result in AccessDeniedError and consequently in an HTTP 403 response.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
resources
|
Iterable
|
Resources whose authorization is required. |
()
|
Examples:
@asab.web.auth.require("my-app:token:generate")
async def generate_token(self, request):
data = await self.service.generate_token()
return asab.web.rest.json_response(request, data)
Source code in asab/web/auth/decorator.py
asab.web.auth.noauth(handler)
¤
Exempt the decorated handler from authentication and authorization.
Examples:
@asab.web.auth.noauth
async def get_public_info(self, request):
data = await self.service.get_public_info()
return asab.web.rest.json_response(request, data)