navigator-auth 0.16.0__tar.gz → 0.17.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/PKG-INFO +6 -3
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/backends/__init__.py +3 -1
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/backends/adfs.py +0 -1
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/backends/github.py +1 -1
- navigator_auth-0.17.2/navigator_auth/backends/oauth2/backend.py +650 -0
- navigator_auth-0.17.2/navigator_auth/backends/oauth2/client_backend.py +189 -0
- navigator_auth-0.17.2/navigator_auth/backends/oauth2/code_backend.py +103 -0
- navigator_auth-0.17.2/navigator_auth/backends/oauth2/ddl.sql +33 -0
- navigator_auth-0.17.2/navigator_auth/backends/oauth2/models.py +138 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/backends/okta.py +13 -12
- navigator_auth-0.17.2/navigator_auth/backends/saml.py +223 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/conf.py +34 -1
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/handlers/__init__.py +11 -0
- navigator_auth-0.17.2/navigator_auth/handlers/recovery.py +155 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/models.py +30 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/version.py +1 -1
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth.egg-info/PKG-INFO +6 -3
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth.egg-info/SOURCES.txt +5 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth.egg-info/requires.txt +4 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/pyproject.toml +16 -5
- navigator_auth-0.16.0/navigator_auth/backends/oauth2/backend.py +0 -388
- navigator_auth-0.16.0/navigator_auth/backends/oauth2/models.py +0 -99
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/CHANGES.rst +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/LICENSE +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/MANIFEST.in +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/Makefile +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/README.md +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/docs/Makefile +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/docs/api.rst +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/docs/authors.rst +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/docs/changelog.rst +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/docs/changes.rst +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/docs/code-of-conduct.rst +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/docs/conf.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/docs/config.rst +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/docs/index.rst +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/docs/make.bat +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/docs/policies.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/docs/requirements-dev.txt +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/docs/requirements.txt +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/docs/security.rst +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/docs/settings.rst +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/__init__.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/abac/__init__.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/abac/audit.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/abac/context.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/abac/decorators.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/abac/errors.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/abac/guardian.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/abac/middleware.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/abac/pdp.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/abac/policies/__init__.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/abac/policies/abstract.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/abac/policies/environment.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/abac/policies/evaluator.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/abac/policies/file.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/abac/policies/obj.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/abac/policies/policy.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/abac/policies/resource_policy.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/abac/policies/resources.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/abac/policyhandler.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/abac/storages/__init__.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/abac/storages/abstract.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/abac/storages/db.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/abac/storages/pg.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/auth.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/authorizations/__init__.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/authorizations/abstract.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/authorizations/allow_hosts.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/authorizations/hosts.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/authorizations/useragent.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/backends/abstract.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/backends/api.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/backends/attributes/__init__.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/backends/attributes/abstract.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/backends/attributes/internal.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/backends/azure.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/backends/basic.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/backends/django.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/backends/external.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/backends/google.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/backends/idp/__init__.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/backends/idp/code.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/backends/jwksutils.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/backends/noauth.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/backends/oauth.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/backends/oauth2/__init__.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/backends/token.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/backends/troc.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/decorators.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/exceptions.c +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/exceptions.pxd +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/exceptions.pyx +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/handlers/groups.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/handlers/handler.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/handlers/model.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/handlers/partners.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/handlers/permissions.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/handlers/userattrs.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/handlers/users/__init__.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/handlers/users/passwd.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/handlers/users/session.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/handlers/users/user.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/identities.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/libs/__init__.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/libs/cipher.cpp +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/libs/cipher.pyx +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/libs/json.cpp +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/libs/json.pyx +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/libs/parser.cpp +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/libs/parser.pyx +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/middlewares/__init__.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/middlewares/abstract.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/middlewares/apikey.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/middlewares/django.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/middlewares/jwt.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/middlewares/security.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/middlewares/token.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/middlewares/troc.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/py.typed +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/responses.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/storages/__init__.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/storages/abstract.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/storages/postgres.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/storages/redis.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/templates.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth/uv.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth.egg-info/dependency_links.txt +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/navigator_auth.egg-info/top_level.txt +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/setup.cfg +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/setup.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/tests/__init__.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/tests/test_allowed.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/tests/test_login.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/tests/test_policy.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/tests/test_policy_conditions.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/tests/test_policy_evaluation.py +0 -0
- {navigator_auth-0.16.0 → navigator_auth-0.17.2}/tests/test_policy_object.py +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: navigator-auth
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.17.2
|
|
4
4
|
Summary: Navigator Auth is an Authentication/Authorization Toolkit for aiohttp.
|
|
5
5
|
Author-email: Jesus Lara Gimenez <jesuslarag@gmail.com>
|
|
6
|
-
License: Apache
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
7
|
Project-URL: Homepage, https://github.com/phenobarbital/navigator-auth
|
|
8
8
|
Project-URL: Source, https://github.com/phenobarbital/navigator-auth
|
|
9
9
|
Project-URL: Funding, https://paypal.me/phenobarbital
|
|
@@ -25,7 +25,6 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
25
25
|
Classifier: Programming Language :: Python :: 3.13
|
|
26
26
|
Classifier: Framework :: AsyncIO
|
|
27
27
|
Classifier: Framework :: aiohttp
|
|
28
|
-
Classifier: License :: OSI Approved :: Apache Software License
|
|
29
28
|
Requires-Python: >=3.9.16
|
|
30
29
|
Description-Content-Type: text/markdown
|
|
31
30
|
License-File: LICENSE
|
|
@@ -44,6 +43,10 @@ Requires-Dist: asyncdb>=2.8.0
|
|
|
44
43
|
Requires-Dist: navconfig>=1.7.0
|
|
45
44
|
Requires-Dist: navigator-session>=0.6.5
|
|
46
45
|
Requires-Dist: navigator-api>=0.5.0
|
|
46
|
+
Requires-Dist: pydantic>=2.12.5
|
|
47
|
+
Requires-Dist: python3-saml>=1.16.0
|
|
48
|
+
Requires-Dist: lxml>=6.0.2
|
|
49
|
+
Requires-Dist: xmlsec>=1.3.17
|
|
47
50
|
Provides-Extra: uvloop
|
|
48
51
|
Requires-Dist: uvloop>=0.20.0; extra == "uvloop"
|
|
49
52
|
Dynamic: license-file
|
|
@@ -14,6 +14,7 @@ from .adfs import ADFSAuth
|
|
|
14
14
|
from .azure import AzureAuth
|
|
15
15
|
from .github import GithubAuth
|
|
16
16
|
from .oauth2 import Oauth2Provider
|
|
17
|
+
from .saml import SAMLAuth
|
|
17
18
|
|
|
18
19
|
|
|
19
20
|
__all__ = (
|
|
@@ -28,5 +29,6 @@ __all__ = (
|
|
|
28
29
|
"ADFSAuth",
|
|
29
30
|
"AzureAuth",
|
|
30
31
|
"GithubAuth",
|
|
31
|
-
"Oauth2Provider"
|
|
32
|
+
"Oauth2Provider",
|
|
33
|
+
"SAMLAuth"
|
|
32
34
|
)
|