guillotina oauth support
Project description
.. contents::
GUILLOTINA_OAUTH
================
WARNING: this package requires a working plone.oauth server...
Features
--------
* There is no persistence information about the user
* The configuration is global for all application
Configuration
-------------
Generic global configuration on guillotina utilities section:
{
"applicatoins": ["guillotina_oauth"],
"auth_token_validators": [
"guillotina.auth.validators.SaltedHashPasswordValidator",
"guillotina_oauth.oauth.OAuthJWTValidator"
],
"oauth_settings": {
"server": "http://localhost/",
"jwt_secret": "secret",
"jwt_algorithm": "HS256",
"client_id": 11,
"client_password": "secret"
}
}
1.0.31 (2018-02-20)
-------------------
- Add grant and revoke scope roles method
[vangheem]
1.0.30 (2018-02-16)
-------------------
- Change default clear value
[vangheem]
1.0.29 (2018-02-16)
-------------------
- Be able to clear from argument
[vangheem]
1.0.28 (2018-02-08)
-------------------
- Use send email instead of remind
[vangheem]
1.0.27 (2018-02-08)
-------------------
- Fix add_user
[vangheem]
1.0.26 (2018-02-07)
-------------------
- Support websocket tokens
[vangheem]
1.0.25 (2018-01-24)
-------------------
- Add get_temp_token and retrieve_temp_data methods
[vangheem]
1.0.24 (2018-01-15)
-------------------
- Send authorization header for `get_user`
[vangheem]
1.0.23 (2018-01-10)
-------------------
- Store user data on authenticated user object
[vangheem]
1.0.22 (2017-12-07)
-------------------
- Add get_user and add_user methods to utility
[vangheem]
1.0.21 (2017-11-08)
-------------------
- Handle CancelledError
[vangheem]
1.0.20 (2017-11-01)
-------------------
- Fix search_users
[vangheem]
1.0.19 (2017-09-25)
-------------------
- Cache user object for 1 minute to lay off oauth server
[vangheem]
1.0.18 (2017-09-15)
-------------------
- Change various logging statements to "debug"
[vangheem]
1.0.17 (2017-09-08)
-------------------
- Fix release
[vangheem]
1.0.16 (2017-09-08)
-------------------
- Provide `auto_renew_token` setting to setting--useful in tests
[vangheem]
1.0.15 (2017-08-09)
-------------------
- Be able to configure timeouts for oauth requests
[vangheem]
1.0.14 (2017-08-08)
-------------------
- b/w compat OPTIONS call for getting auth code
[vangheem]
1.0.13 (2017-08-07)
-------------------
- override OPTIONS for @oauthgetcode
[vangheem]
1.0.12 (2017-08-04)
-------------------
- Detect invalid service tokens and refresh
[vangheem]
1.0.11 (2017-08-04)
-------------------
- More logging
1.0.10 (2017-08-04)
-------------------
- Log correct service token
[vangheem]
1.0.9 (2017-08-04)
------------------
- More logging
[vangheem]
1.0.8 (2017-08-04)
------------------
- Handle errors better on renewing service tokens
[vangheem]
1.0.7 (2017-07-24)
------------------
- Allow user to validate without any roles from api
[vangheem]
1.0.6 (2017-07-24)
------------------
- Fix use of OPTIONS for oauth endpoint
[vangheem]
- make sure POST request pushes variables to oauth endpoint as json data
[vangheem]
1.0.5 (2017-07-24)
------------------
- @oauthgetcode now works on application root as well as container
[vangheem]
1.0.4 (2017-06-25)
------------------
- User id on oauth may not be mail
[bloodbare]
1.0.3 (2017-06-16)
------------------
- Handle oauth errors on connecting to invalid server
[vangheem]
1.0.2 (2017-06-16)
------------------
- Handle errors when no config is provided
[vangheem]
1.0.1 (2017-06-15)
------------------
- Do not raise KeyError if user is not found, raise Unauthorized
[vangheem]
1.0.0 (2017-04-24)
------------------
- initial release
GUILLOTINA_OAUTH
================
WARNING: this package requires a working plone.oauth server...
Features
--------
* There is no persistence information about the user
* The configuration is global for all application
Configuration
-------------
Generic global configuration on guillotina utilities section:
{
"applicatoins": ["guillotina_oauth"],
"auth_token_validators": [
"guillotina.auth.validators.SaltedHashPasswordValidator",
"guillotina_oauth.oauth.OAuthJWTValidator"
],
"oauth_settings": {
"server": "http://localhost/",
"jwt_secret": "secret",
"jwt_algorithm": "HS256",
"client_id": 11,
"client_password": "secret"
}
}
1.0.31 (2018-02-20)
-------------------
- Add grant and revoke scope roles method
[vangheem]
1.0.30 (2018-02-16)
-------------------
- Change default clear value
[vangheem]
1.0.29 (2018-02-16)
-------------------
- Be able to clear from argument
[vangheem]
1.0.28 (2018-02-08)
-------------------
- Use send email instead of remind
[vangheem]
1.0.27 (2018-02-08)
-------------------
- Fix add_user
[vangheem]
1.0.26 (2018-02-07)
-------------------
- Support websocket tokens
[vangheem]
1.0.25 (2018-01-24)
-------------------
- Add get_temp_token and retrieve_temp_data methods
[vangheem]
1.0.24 (2018-01-15)
-------------------
- Send authorization header for `get_user`
[vangheem]
1.0.23 (2018-01-10)
-------------------
- Store user data on authenticated user object
[vangheem]
1.0.22 (2017-12-07)
-------------------
- Add get_user and add_user methods to utility
[vangheem]
1.0.21 (2017-11-08)
-------------------
- Handle CancelledError
[vangheem]
1.0.20 (2017-11-01)
-------------------
- Fix search_users
[vangheem]
1.0.19 (2017-09-25)
-------------------
- Cache user object for 1 minute to lay off oauth server
[vangheem]
1.0.18 (2017-09-15)
-------------------
- Change various logging statements to "debug"
[vangheem]
1.0.17 (2017-09-08)
-------------------
- Fix release
[vangheem]
1.0.16 (2017-09-08)
-------------------
- Provide `auto_renew_token` setting to setting--useful in tests
[vangheem]
1.0.15 (2017-08-09)
-------------------
- Be able to configure timeouts for oauth requests
[vangheem]
1.0.14 (2017-08-08)
-------------------
- b/w compat OPTIONS call for getting auth code
[vangheem]
1.0.13 (2017-08-07)
-------------------
- override OPTIONS for @oauthgetcode
[vangheem]
1.0.12 (2017-08-04)
-------------------
- Detect invalid service tokens and refresh
[vangheem]
1.0.11 (2017-08-04)
-------------------
- More logging
1.0.10 (2017-08-04)
-------------------
- Log correct service token
[vangheem]
1.0.9 (2017-08-04)
------------------
- More logging
[vangheem]
1.0.8 (2017-08-04)
------------------
- Handle errors better on renewing service tokens
[vangheem]
1.0.7 (2017-07-24)
------------------
- Allow user to validate without any roles from api
[vangheem]
1.0.6 (2017-07-24)
------------------
- Fix use of OPTIONS for oauth endpoint
[vangheem]
- make sure POST request pushes variables to oauth endpoint as json data
[vangheem]
1.0.5 (2017-07-24)
------------------
- @oauthgetcode now works on application root as well as container
[vangheem]
1.0.4 (2017-06-25)
------------------
- User id on oauth may not be mail
[bloodbare]
1.0.3 (2017-06-16)
------------------
- Handle oauth errors on connecting to invalid server
[vangheem]
1.0.2 (2017-06-16)
------------------
- Handle errors when no config is provided
[vangheem]
1.0.1 (2017-06-15)
------------------
- Do not raise KeyError if user is not found, raise Unauthorized
[vangheem]
1.0.0 (2017-04-24)
------------------
- initial release
Project details
Release history Release notifications | RSS feed
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 guillotina_oauth-1.0.31.tar.gz
.
File metadata
- Download URL: guillotina_oauth-1.0.31.tar.gz
- Upload date:
- Size: 9.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b029b00ea6adf4ff5659ff4ab3e585da6ffca038131d84780b82317758667b35 |
|
MD5 | a49f40c8726bf02d90b5dfbab9821827 |
|
BLAKE2b-256 | 4fbaf6b166be04788f42bff19735be4af47d0e68592f312c1402a3d26eff9d2a |
File details
Details for the file guillotina_oauth-1.0.31-py3-none-any.whl
.
File metadata
- Download URL: guillotina_oauth-1.0.31-py3-none-any.whl
- Upload date:
- Size: 11.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f430c84289708412066d4a18eef1ea793886cd0bb179c947e96616f511eda79b |
|
MD5 | b385f940acf34dc7b7011e0273d81686 |
|
BLAKE2b-256 | e091e755324b3af27a008451ada2dc18b5dc2f47a108ffe911175e331779da9f |