An authentication policy for Pyramid that uses the repoze.who v2 API.
Overview
This plugin allows you to configure a repoze.who authentication stack as a pyramid authentication policy. It takes a repoze.who API factory and turns it into an pyramid IAuthenticationPolicy:
from repoze.who.config import make_api_factory_with_config api_factory = make_api_factory_with_config(global_conf, "etc/who.ini") authn_policy = WhoAuthenticationPolicy(api_factory) config.set_authentication_policy(authn_policy)
This will load the repoze.who configuration from the specified config file and hook it into Pyramid.
The advantage of using pyramid_whoauth instead of the repoze.who middleware is that authentication is only performed when your application explicitly requests it using e.g. pyramid’s authenticated_userid() function.
For convenience, you can also specify all of the repoze.who configuration settings as part of your paster deployment settings. For example, you might have the following:
[app:pyramidapp] use = egg:mypyramidapp who.plugin.basicauth.use = repoze.who.plugins.basicauth:make_plugin who.plugin.basicauth.realm = MyRealm who.plugin.authtkt.use = repoze.who.plugins.auth_tkt:make_plugin who.plugin.authtkt.secret = Oh So Secret! who.identifiers.plugins = authtkt basicauth who.authenticators.plugins = authtkt basicauth who.challengers.plugins = basicauth
This configures repoze.who to use the “basicauth” and “auth_tkt” plugins, using pyramid’s dotted-settings style rather than the repoze.who config file. Then it is a simple matter of including the pyramid_whoauth module into your configurator:
config.include("pyramid_whoauth")
In addition to configuring the repoze.who API factory from the given settings, this will also set up some extra conveniences for your application:
a forbidden view that challenges for credentials via repoze.who
a login view that authenticates any credentials submitted via POST
a logout view that sends forget headers when accessed
a tween that calls the repoze.who “remember” method for each response
0.1.2 - 2012-05-28
Place the tween directly above the EXCVIEW tween. This will help ensure it is underneath other unrelated tweens, so they will not see the ApplicationRedirectException being thrown.
0.1.1 - 2012-01-30
Update to MPL 2.0
0.1.0 - 2011-11-11
Initial release
Release files for pyramid_whoauth 0.1.2
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| pyramid_whoauth-0.1.2.tar.gz | 10.6 kB | Details |
Release files / pyramid_whoauth-0.1.2.tar.gz
| Download URL | pyramid_whoauth-0.1.2.tar.gz |
|---|---|
| Size | 10.6 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
fb167551b49dd5d285b445c14ec3b434bccebb227a54ab3c801b1a2e28cc9eb4
|
|
BLAKE2b-256 checksum How to use checksums |
c05a12dc24d75a4ae71376da43ea148b0fcdea144447128ccc9ab07b4ce3254f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |