abs-auth-rbac-core 0.3.1__tar.gz → 0.3.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.

Potentially problematic release.


This version of abs-auth-rbac-core might be problematic. Click here for more details.

Files changed (27) hide show
  1. {abs_auth_rbac_core-0.3.1 → abs_auth_rbac_core-0.3.2}/PKG-INFO +2 -2
  2. {abs_auth_rbac_core-0.3.1 → abs_auth_rbac_core-0.3.2}/abs_auth_rbac_core/auth/middleware.py +32 -3
  3. {abs_auth_rbac_core-0.3.1 → abs_auth_rbac_core-0.3.2}/pyproject.toml +2 -2
  4. {abs_auth_rbac_core-0.3.1 → abs_auth_rbac_core-0.3.2}/README.md +0 -0
  5. {abs_auth_rbac_core-0.3.1 → abs_auth_rbac_core-0.3.2}/abs_auth_rbac_core/__init__.py +0 -0
  6. {abs_auth_rbac_core-0.3.1 → abs_auth_rbac_core-0.3.2}/abs_auth_rbac_core/auth/__init__.py +0 -0
  7. {abs_auth_rbac_core-0.3.1 → abs_auth_rbac_core-0.3.2}/abs_auth_rbac_core/auth/auth_functions.py +0 -0
  8. {abs_auth_rbac_core-0.3.1 → abs_auth_rbac_core-0.3.2}/abs_auth_rbac_core/auth/jwt_functions.py +0 -0
  9. {abs_auth_rbac_core-0.3.1 → abs_auth_rbac_core-0.3.2}/abs_auth_rbac_core/models/__init__.py +0 -0
  10. {abs_auth_rbac_core-0.3.1 → abs_auth_rbac_core-0.3.2}/abs_auth_rbac_core/models/base_model.py +0 -0
  11. {abs_auth_rbac_core-0.3.1 → abs_auth_rbac_core-0.3.2}/abs_auth_rbac_core/models/gov_casbin_rule.py +0 -0
  12. {abs_auth_rbac_core-0.3.1 → abs_auth_rbac_core-0.3.2}/abs_auth_rbac_core/models/permissions.py +0 -0
  13. {abs_auth_rbac_core-0.3.1 → abs_auth_rbac_core-0.3.2}/abs_auth_rbac_core/models/rbac_model.py +0 -0
  14. {abs_auth_rbac_core-0.3.1 → abs_auth_rbac_core-0.3.2}/abs_auth_rbac_core/models/role_permission.py +0 -0
  15. {abs_auth_rbac_core-0.3.1 → abs_auth_rbac_core-0.3.2}/abs_auth_rbac_core/models/roles.py +0 -0
  16. {abs_auth_rbac_core-0.3.1 → abs_auth_rbac_core-0.3.2}/abs_auth_rbac_core/models/seeder/permission_seeder.py +0 -0
  17. {abs_auth_rbac_core-0.3.1 → abs_auth_rbac_core-0.3.2}/abs_auth_rbac_core/models/user.py +0 -0
  18. {abs_auth_rbac_core-0.3.1 → abs_auth_rbac_core-0.3.2}/abs_auth_rbac_core/models/user_permission.py +0 -0
  19. {abs_auth_rbac_core-0.3.1 → abs_auth_rbac_core-0.3.2}/abs_auth_rbac_core/models/user_role.py +0 -0
  20. {abs_auth_rbac_core-0.3.1 → abs_auth_rbac_core-0.3.2}/abs_auth_rbac_core/rbac/__init__.py +0 -0
  21. {abs_auth_rbac_core-0.3.1 → abs_auth_rbac_core-0.3.2}/abs_auth_rbac_core/rbac/decorator.py +0 -0
  22. {abs_auth_rbac_core-0.3.1 → abs_auth_rbac_core-0.3.2}/abs_auth_rbac_core/rbac/policy.conf +0 -0
  23. {abs_auth_rbac_core-0.3.1 → abs_auth_rbac_core-0.3.2}/abs_auth_rbac_core/rbac/service.py +0 -0
  24. {abs_auth_rbac_core-0.3.1 → abs_auth_rbac_core-0.3.2}/abs_auth_rbac_core/schema/__init__.py +0 -0
  25. {abs_auth_rbac_core-0.3.1 → abs_auth_rbac_core-0.3.2}/abs_auth_rbac_core/schema/permission.py +0 -0
  26. {abs_auth_rbac_core-0.3.1 → abs_auth_rbac_core-0.3.2}/abs_auth_rbac_core/util/__init__.py +0 -0
  27. {abs_auth_rbac_core-0.3.1 → abs_auth_rbac_core-0.3.2}/abs_auth_rbac_core/util/permission_constants.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: abs-auth-rbac-core
3
- Version: 0.3.1
3
+ Version: 0.3.2
4
4
  Summary: RBAC and Auth core utilities including JWT token management.
5
5
  License: MIT
6
6
  Author: AutoBridgeSystems
@@ -12,7 +12,7 @@ Classifier: Programming Language :: Python :: 3.11
12
12
  Classifier: Programming Language :: Python :: 3.12
13
13
  Classifier: Programming Language :: Python :: 3.13
14
14
  Requires-Dist: abs-exception-core (>=0.2.0,<0.3.0)
15
- Requires-Dist: abs-utils (>=0.4.0,<0.5.0)
15
+ Requires-Dist: abs-utils (>=0.4.1,<0.5.0)
16
16
  Requires-Dist: casbin (>=1.41.0,<2.0.0)
17
17
  Requires-Dist: casbin-redis-watcher (>=1.3.0,<2.0.0)
18
18
  Requires-Dist: casbin-sqlalchemy-adapter (>=1.4.0,<2.0.0)
@@ -1,13 +1,38 @@
1
1
  from fastapi import Depends, Request
2
2
  from fastapi.security import HTTPBearer, HTTPAuthorizationCredentials
3
+ from fastapi import HTTPException
3
4
  import logging
4
- from typing import Callable, Any
5
+ from typing import Callable, Any, Optional
5
6
 
6
7
  from .jwt_functions import JWTFunctions
7
8
  from .auth_functions import get_user_by_attribute
8
- from abs_exception_core.exceptions import UnauthorizedError
9
+ from abs_exception_core.exceptions import UnauthorizedError, AuthError
10
+ from fastapi.security.utils import get_authorization_scheme_param
9
11
 
10
- security = HTTPBearer()
12
+ class CustomHTTPBearer(HTTPBearer):
13
+ def __init__(self, **kwargs):
14
+ super().__init__(**kwargs)
15
+
16
+ async def __call__(self, request: Request) -> Optional[HTTPAuthorizationCredentials]:
17
+ authorization = request.headers.get("Authorization")
18
+ scheme, credentials = get_authorization_scheme_param(authorization)
19
+
20
+ if not (authorization and scheme and credentials):
21
+ if self.auto_error:
22
+ raise UnauthorizedError(detail="Invalid authentication credentials")
23
+ else:
24
+ return None
25
+
26
+ if scheme.lower() != "bearer":
27
+ if self.auto_error:
28
+ raise UnauthorizedError(detail="Invalid authentication credentials")
29
+ else:
30
+ return None
31
+
32
+ return HTTPAuthorizationCredentials(scheme=scheme, credentials=credentials)
33
+
34
+ security = CustomHTTPBearer()
35
+ # security = HTTPBearer()
11
36
  logger = logging.getLogger(__name__)
12
37
 
13
38
 
@@ -45,7 +70,11 @@ def auth_middleware(
45
70
  request.state.user = user
46
71
  return user
47
72
 
73
+ except UnauthorizedError as e:
74
+ logger.error(e)
75
+ raise
48
76
  except Exception as e:
49
77
  logger.error(f"Authentication error: {str(e)}", exc_info=True)
50
78
  raise UnauthorizedError(detail="Authentication failed")
79
+
51
80
  return get_auth
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "abs-auth-rbac-core"
3
- version = "0.3.1"
3
+ version = "0.3.2"
4
4
  description = "RBAC and Auth core utilities including JWT token management."
5
5
  authors = [
6
6
  {name = "AutoBridgeSystems", email = "info@autobridgesystems.com"}
@@ -18,7 +18,7 @@ dependencies = [
18
18
  "casbin-sqlalchemy-adapter (>=1.4.0,<2.0.0)",
19
19
  "psycopg2-binary (>=2.9.10,<3.0.0)",
20
20
  "casbin-redis-watcher (>=1.3.0,<2.0.0)",
21
- "abs-utils (>=0.4.0,<0.5.0)"
21
+ "abs-utils (>=0.4.1,<0.5.0)"
22
22
  ]
23
23
 
24
24
  [build-system]