maleo-foundation 0.2.42__py3-none-any.whl → 0.2.44__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.
@@ -137,15 +137,15 @@ class BaseMiddleware(BaseHTTPMiddleware):
137
137
  if sign_result.success:
138
138
  response.headers["X-Signature"] = sign_result.data.signature
139
139
  if (authentication.user.is_authenticated
140
- and authentication.credentials.token_type == BaseEnums.TokenType.REFRESH
141
- and authentication.credentials.payload is not None
140
+ and authentication.credentials.token.type == BaseEnums.TokenType.REFRESH
141
+ and authentication.credentials.token.payload is not None
142
142
  and (response.status_code >= 200 and response.status_code < 300)
143
143
  ):
144
144
  #* Regenerate new authorization
145
145
  payload = (
146
146
  MaleoFoundationTokenGeneralTransfers
147
147
  .BaseEncodePayload
148
- .model_validate(authentication.credentials.payload.model_dump())
148
+ .model_validate(authentication.credentials.token.payload.model_dump())
149
149
  )
150
150
  parameters = (
151
151
  MaleoFoundationTokenParametersTransfers
@@ -1,3 +1,4 @@
1
+ import inspect
1
2
  from fastapi import status
2
3
  from functools import wraps
3
4
  from typing import Awaitable, Callable, Dict, List
@@ -24,7 +25,12 @@ class BaseControllerUtils:
24
25
  """
25
26
  def decorator(func:Callable[..., Awaitable[BaseServiceRESTControllerResults]]):
26
27
  @wraps(func)
27
- async def wrapper(parameters, *args, **kwargs):
28
+ async def wrapper(*args, **kwargs):
29
+ sig = inspect.signature(func)
30
+ bound = sig.bind(*args, **kwargs)
31
+ bound.apply_defaults()
32
+
33
+ parameters = bound.arguments.get("parameters")
28
34
  expand:BaseTypes.OptionalListOfStrings = getattr(parameters, 'expand', None)
29
35
 
30
36
  #* Validate expandable fields dependencies
@@ -42,7 +48,7 @@ class BaseControllerUtils:
42
48
  )
43
49
 
44
50
  #* Call the original function
45
- result = await func(parameters, *args, **kwargs)
51
+ result = await func(*args, **kwargs)
46
52
 
47
53
  if not isinstance(result.content, Dict):
48
54
  return result
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: maleo_foundation
3
- Version: 0.2.42
3
+ Version: 0.2.44
4
4
  Summary: Foundation package for Maleo
5
5
  Author-email: Agra Bima Yuda <agra@nexmedis.com>
6
6
  License: MIT
@@ -47,7 +47,7 @@ maleo_foundation/managers/client/google/parameter.py,sha256=Lnj7mQgxWQpsQwbmDRK5
47
47
  maleo_foundation/managers/client/google/secret.py,sha256=Ski1CHYeA8vjSk2Oc2Pf4CfFrzT_RcA6NEZwza7gM7Y,4464
48
48
  maleo_foundation/managers/client/google/storage.py,sha256=ECyEBgEvvbTDVfqXey-meGnoU4qvIRU32BxbCuzcaHU,2576
49
49
  maleo_foundation/middlewares/authentication.py,sha256=P75FrLlbq5kDV9uMwXAwdAFM7DNo1k7WX6LM9dHNrcA,4820
50
- maleo_foundation/middlewares/base.py,sha256=8_ENtyB2iKejCOQofESzlAaq_zxDWtHNaq3f10dA020,14554
50
+ maleo_foundation/middlewares/base.py,sha256=zLlqL_sGVmQrOCIGEUnctkNgSHnXa0TjE7RveyF-o0g,14566
51
51
  maleo_foundation/middlewares/cors.py,sha256=9uvBvY2N6Vxa9RP_YtESxcWo6Doi6uS0lzAG9iLY7Uc,2288
52
52
  maleo_foundation/models/__init__.py,sha256=AaKehO7c1HyKhoTGRmNHDddSeBXkW-_YNrpOGBu8Ms8,246
53
53
  maleo_foundation/models/responses.py,sha256=nszxzni_Q_42bzjrKvUVGeB3GSn4Ba9g-Nqj1dfdJvk,5223
@@ -99,7 +99,7 @@ maleo_foundation/models/transfers/results/service/controllers/__init__.py,sha256
99
99
  maleo_foundation/models/transfers/results/service/controllers/rest.py,sha256=wCuFyOTQkuBs2cqjPsWnPy0XIsCfMqGByhrSy57qp7Y,1107
100
100
  maleo_foundation/utils/__init__.py,sha256=SRPEVoqjZoO6W8rtF_Ti8VIangg6Auwm6eHbZMdOthY,520
101
101
  maleo_foundation/utils/client.py,sha256=F5X9TUxWQgeOHjwsMpPoSRhZANQYZ_iFv0RJDTUVhrw,2820
102
- maleo_foundation/utils/controller.py,sha256=3n9HcWHqywLhfpgTkzd_NrjWNJgTwGBSokqGgJKeBAU,4132
102
+ maleo_foundation/utils/controller.py,sha256=JppDEjXu4Ktlwr-0N497AEyihlRQbbn_ttOcQVGVwXw,4322
103
103
  maleo_foundation/utils/exceptions.py,sha256=kDLTWiUauvc-fSKrEyxlGvIi2NtZIAhJ9bV3OXnpTyo,6253
104
104
  maleo_foundation/utils/extractor.py,sha256=SZXVYDHWGaA-Dd1BUydwF2HHdZqexEielS4CjL0Ceng,814
105
105
  maleo_foundation/utils/logging.py,sha256=W5Fhk_xAXVqSujaY8mv3hRH4wlQSpUn4ReuMoiKcQa4,7759
@@ -117,7 +117,7 @@ maleo_foundation/utils/loaders/credential/__init__.py,sha256=qopTKvcMVoTFwyRijeg
117
117
  maleo_foundation/utils/loaders/credential/google.py,sha256=SKsqPuFnAiCcYLf24CxKnMybhVHpgqnq1gGSlThqjts,994
118
118
  maleo_foundation/utils/loaders/key/__init__.py,sha256=hVygcC2ImHc_aVrSrOmyedR8tMUZokWUKCKOSh5ctbo,106
119
119
  maleo_foundation/utils/loaders/key/rsa.py,sha256=gDhyX6iTFtHiluuhFCozaZ3pOLKU2Y9TlrNMK_GVyGU,3796
120
- maleo_foundation-0.2.42.dist-info/METADATA,sha256=E0lF0ln1J-CsuDUMkgrx7nGgYUsaWG5iNiueE8sN8eo,3598
121
- maleo_foundation-0.2.42.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
122
- maleo_foundation-0.2.42.dist-info/top_level.txt,sha256=_iBos3F_bhEOdjOnzeiEYSrCucasc810xXtLBXI8cQc,17
123
- maleo_foundation-0.2.42.dist-info/RECORD,,
120
+ maleo_foundation-0.2.44.dist-info/METADATA,sha256=EA9P6-rGLLEbfq4Nri1Y1h14e_zIUmLmush98xoFH6I,3598
121
+ maleo_foundation-0.2.44.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
122
+ maleo_foundation-0.2.44.dist-info/top_level.txt,sha256=_iBos3F_bhEOdjOnzeiEYSrCucasc810xXtLBXI8cQc,17
123
+ maleo_foundation-0.2.44.dist-info/RECORD,,