abs-auth-rbac-core 0.1.2__py3-none-any.whl → 0.1.4__py3-none-any.whl

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.

@@ -1,4 +1,4 @@
1
- from fastapi import Depends
1
+ from fastapi import Depends, Request
2
2
  from fastapi.security import HTTPBearer, HTTPAuthorizationCredentials
3
3
  import logging
4
4
  from typing import Callable, Any
@@ -21,13 +21,12 @@ def auth_middleware(
21
21
  This middleware is used for authentication of the user.
22
22
  Args:
23
23
  db_session: Callable[...,Any]: Session of the SQLAlchemy database engine
24
- Users: User table fo teh system
25
24
  jwt_secret_key: Secret key of the JWT for jwt functions
26
25
  jwt_algorithm: Algorithm used for JWT
27
26
 
28
27
  Returns:
29
28
  """
30
- def get_auth(token: HTTPAuthorizationCredentials = Depends(security)):
29
+ async def get_auth(request: Request, token: HTTPAuthorizationCredentials = Depends(security)):
31
30
  jwt_functions = JWTFunctions(secret_key=jwt_secret_key,algorithm=jwt_algorithm)
32
31
  try:
33
32
  if not token or not token.credentials:
@@ -42,7 +41,9 @@ def auth_middleware(
42
41
  logger.error(f"Authentication failed: User with id {uuid} not found")
43
42
  raise UnauthorizedError(detail="Authentication failed")
44
43
 
45
- return user # Attach user for use in route
44
+ # Attach user to request state
45
+ request.state.user = user
46
+ return user # Still return user for backward compatibility
46
47
 
47
48
  except Exception as e:
48
49
  logger.error(f"Authentication error: {str(e)}", exc_info=True)
@@ -1,6 +1,6 @@
1
1
  from functools import wraps
2
2
  from typing import Dict, List, Union
3
-
3
+ from fastapi import Request
4
4
  from abs_exception_core.exceptions import PermissionDeniedError
5
5
  from .service import RBACService
6
6
 
@@ -20,9 +20,10 @@ def rbac_require_permission(permissions: Union[str, List[str]]):
20
20
  def decorator(func):
21
21
  @wraps(func)
22
22
  async def wrapper(
23
- *args, current_user: Dict,rbac_service:RBACService, **kwargs,
23
+ request:Request,
24
+ *args,rbac_service:RBACService, **kwargs,
24
25
  ):
25
- current_user_id = current_user.get("uuid")
26
+ current_user_id = request.state.user.uuid
26
27
  if not current_user_id:
27
28
  raise PermissionDeniedError(
28
29
  detail="User not found (missing 'uuid')."
@@ -43,6 +44,6 @@ def rbac_require_permission(permissions: Union[str, List[str]]):
43
44
  raise PermissionDeniedError(
44
45
  detail=f"Permission denied: {action} on {resource} in {module}"
45
46
  )
46
- return await func(*args, current_user=current_user,rbac_service=rbac_service, **kwargs)
47
+ return await func(*args,request=request,rbac_service=rbac_service, **kwargs)
47
48
  return wrapper
48
49
  return decorator
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: abs-auth-rbac-core
3
- Version: 0.1.2
3
+ Version: 0.1.4
4
4
  Summary: RBAC and Auth core utilities including JWT token management.
5
5
  License: MIT
6
6
  Author: AutoBridgeSystems
@@ -2,7 +2,7 @@ abs_auth_rbac_core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuF
2
2
  abs_auth_rbac_core/auth/__init__.py,sha256=Pvetd98VD9jsok1F9e82yS9kLZMFqTpbN51hkxZQHzw,67
3
3
  abs_auth_rbac_core/auth/auth_functions.py,sha256=fhfKRhtpE_J9MHu2jSsIA-cy77A3wCAQKbGGZeh4pe4,947
4
4
  abs_auth_rbac_core/auth/jwt_functions.py,sha256=9vhjWrxXdE8fVQ4FGrPj9y6PoSEsaeFohPhgI-3hToI,4111
5
- abs_auth_rbac_core/auth/middleware.py,sha256=1J0yE2aEgfMzTgkSz1Tz_8xs0Nl095k5S1wbygShkl0,1806
5
+ abs_auth_rbac_core/auth/middleware.py,sha256=c1HY2UHNAflo7cqSPE-_zYP27T-CGhaACO3cOWED8Lc,1896
6
6
  abs_auth_rbac_core/models/__init__.py,sha256=HHnXZ1wIq6Us3MP9YywjHVeCViXD_zyMWl8mBglqFBc,231
7
7
  abs_auth_rbac_core/models/base_model.py,sha256=AaWObslm8sTetv4H1Ia_gPpi_75uF5z1o7Et9WAvstU,612
8
8
  abs_auth_rbac_core/models/gov_casbin_rule.py,sha256=uWkzOgtG0_8CXR4YLBz_JINA8apcB1D4aWiCgSkuTCs,789
@@ -14,11 +14,11 @@ abs_auth_rbac_core/models/seeder/permission_seeder.py,sha256=j-aUy8uLHnUWpMmw1Dq
14
14
  abs_auth_rbac_core/models/user.py,sha256=t_ardJOsfBiyedPg6Z4WywLiZRTPmAGYkMealZcEqJc,833
15
15
  abs_auth_rbac_core/models/user_role.py,sha256=20pqmtJPzlUrI9ulHGouk8XlFgrGG7I6ikctb8sMUGs,706
16
16
  abs_auth_rbac_core/rbac/__init__.py,sha256=oYjtpmfrkEbwWCBAWuRoU1fM4fCpBxkF_lwQrelK1As,79
17
- abs_auth_rbac_core/rbac/decorator.py,sha256=y1TJqVQLWJeMqj7PxYqlAQZ5sOj1hZv9AvChGspl8A0,1794
17
+ abs_auth_rbac_core/rbac/decorator.py,sha256=B9bdXsQ2gUbIiR_8KgEqewdJQWH1S0LsxYpd4D66w-I,1818
18
18
  abs_auth_rbac_core/rbac/policy.conf,sha256=wghhhKxgZH0rPhh1QFrIpq9nevJT3s7OxxvXiU3zzuI,305
19
19
  abs_auth_rbac_core/rbac/service.py,sha256=C0LTqnyecePrLSh2bAAhO9xcwZ_UAfi4CREczgcQNWc,25206
20
20
  abs_auth_rbac_core/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
21
  abs_auth_rbac_core/util/permission_constants.py,sha256=JFavEKkAJ5mtltttCwRTTtpRlu_mJiVPB_MwsP-bIAg,65337
22
- abs_auth_rbac_core-0.1.2.dist-info/METADATA,sha256=D6M103gi3dbDuX-cJmBHEkochPUHrc96I6z0i6RcJrI,6586
23
- abs_auth_rbac_core-0.1.2.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
24
- abs_auth_rbac_core-0.1.2.dist-info/RECORD,,
22
+ abs_auth_rbac_core-0.1.4.dist-info/METADATA,sha256=XGNSbXug1fVojmnCDrK8GlY8MjnD8ofCkk7aa757Z9M,6586
23
+ abs_auth_rbac_core-0.1.4.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
24
+ abs_auth_rbac_core-0.1.4.dist-info/RECORD,,