maleo-foundation 0.2.28__py3-none-any.whl → 0.2.30__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.
@@ -5,9 +5,11 @@ from maleo_foundation.managers.client.base import (
5
5
  ClientControllerManagers,
6
6
  ClientHTTPController,
7
7
  ClientServiceControllers,
8
+ ClientService,
8
9
  ClientControllers
9
10
  )
10
11
  from maleo_foundation.managers.service import ServiceManager
12
+ from maleo_foundation.utils.logging import ClientLogger
11
13
 
12
14
  class MaleoClientHTTPController(ClientHTTPController):
13
15
  def __init__(
@@ -15,8 +17,8 @@ class MaleoClientHTTPController(ClientHTTPController):
15
17
  service_manager:ServiceManager,
16
18
  manager:ClientHTTPControllerManager
17
19
  ):
18
- self._service_manager = service_manager
19
20
  super().__init__(manager)
21
+ self._service_manager = service_manager
20
22
 
21
23
  @property
22
24
  def service_manager(self) -> ServiceManager:
@@ -28,6 +30,19 @@ class MaleoClientServiceControllers(ClientServiceControllers):
28
30
  class Config:
29
31
  arbitrary_types_allowed=True
30
32
 
33
+ class MaleoClientService(ClientService):
34
+ def __init__(
35
+ self,
36
+ logger:ClientLogger,
37
+ service_manager:ServiceManager
38
+ ):
39
+ super().__init__(logger)
40
+ self._service_manager = service_manager
41
+
42
+ @property
43
+ def service_manager(self) -> ServiceManager:
44
+ return self._service_manager
45
+
31
46
  class MaleoClientManager(ClientManager):
32
47
  def __init__(
33
48
  self,
@@ -9,6 +9,7 @@ from maleo_foundation.models.transfers.results.service.repository import \
9
9
  class BaseRepositoryUtils:
10
10
  @staticmethod
11
11
  def result_processor(
12
+ fail_class:Type[BaseServiceRepositoryResultsTransfers.Fail],
12
13
  data_found_class:Union[
13
14
  Type[BaseServiceRepositoryResultsTransfers.SingleData],
14
15
  Type[BaseServiceRepositoryResultsTransfers.UnpaginatedMultipleData],
@@ -19,17 +20,22 @@ class BaseRepositoryUtils:
19
20
  """Decorator to handle repository-related exceptions consistently."""
20
21
  def decorator(func):
21
22
  def _processor(result:BaseTypes.StringToAnyDict):
22
- if "data" not in result:
23
- raise ValueError("Result did not have 'data' field")
24
- data = result.get("data")
25
- if data is None:
26
- if no_data_class is None:
27
- raise ValueError("'no_data_class' must be given to validate No Data")
28
- validated_result = no_data_class.model_validate(result)
23
+ if "success" not in result and "data" not in result:
24
+ raise ValueError("Result did not have both 'success' and 'data' field")
25
+ success:bool = result.get("success")
26
+ data:BaseTypes.StringToAnyDict = result.get("data")
27
+ if not success:
28
+ validated_result = fail_class.model_validate(result)
29
29
  return validated_result
30
30
  else:
31
- validated_result = data_found_class.model_validate(result)
32
- return validated_result
31
+ if data is None:
32
+ if no_data_class is None:
33
+ raise ValueError("'no_data_class' must be given to validate No Data")
34
+ validated_result = no_data_class.model_validate(result)
35
+ return validated_result
36
+ else:
37
+ validated_result = data_found_class.model_validate(result)
38
+ return validated_result
33
39
  if asyncio.iscoroutinefunction(func):
34
40
  @wraps(func)
35
41
  async def async_wrapper(*args, **kwargs):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: maleo_foundation
3
- Version: 0.2.28
3
+ Version: 0.2.30
4
4
  Summary: Foundation package for Maleo
5
5
  Author-email: Agra Bima Yuda <agra@nexmedis.com>
6
6
  License: MIT
@@ -39,7 +39,7 @@ maleo_foundation/managers/cache/base.py,sha256=YyPjde4KTsp2IHV6NdFMysa0ev-1GX1rt
39
39
  maleo_foundation/managers/cache/redis.py,sha256=vUpQUAKP_wZb_Fr1wEzICDCPQyBW8jnZ-pktl6AIdmY,1021
40
40
  maleo_foundation/managers/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
41
  maleo_foundation/managers/client/base.py,sha256=AlMsdxIsu2U8BLT2SyEXC7YQXDZjVPZfEmHvV_IUv18,4430
42
- maleo_foundation/managers/client/maleo.py,sha256=pY3285ZjFttte0uN3x3AmqaoCTeFOhXvuI4GbuPbDkQ,2140
42
+ maleo_foundation/managers/client/maleo.py,sha256=BtLITPO-DTuj_TjBPCrdDDnpm0vz7fV6Kdl4H49BhM0,2546
43
43
  maleo_foundation/managers/client/google/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
44
44
  maleo_foundation/managers/client/google/base.py,sha256=eIdd6C2BFIu4EyZ1j017VZaJn_nSTPGFftBwQmVAUDA,1366
45
45
  maleo_foundation/managers/client/google/parameter.py,sha256=Lnj7mQgxWQpsQwbmDRK5_bF01M1QpM5PS0eZP2q17yQ,1337
@@ -103,7 +103,7 @@ maleo_foundation/utils/extractor.py,sha256=SZXVYDHWGaA-Dd1BUydwF2HHdZqexEielS4Cj
103
103
  maleo_foundation/utils/logging.py,sha256=W5Fhk_xAXVqSujaY8mv3hRH4wlQSpUn4ReuMoiKcQa4,7759
104
104
  maleo_foundation/utils/mergers.py,sha256=DniUu3Ot4qkYH_YSw4uD1cn9cfirum4S_Opp8fMkQwA,702
105
105
  maleo_foundation/utils/query.py,sha256=OQJNf42XeIh-J6tBa_f8iX-UoAib1vg_z8LsVE3zfGk,4739
106
- maleo_foundation/utils/repository.py,sha256=n9eGpFybisXb0LVmNDZi2JJ61Urma5QqK6MhDOHcqfI,2454
106
+ maleo_foundation/utils/repository.py,sha256=knBi3xOLlhBIEtChvqbZh4wXmgrFCB3rDwQXy41d7_c,2852
107
107
  maleo_foundation/utils/dependencies/__init__.py,sha256=0KKGrdfj8Cc5A4SRk_ZBAxzOP795Mizdb4zIBh07KC4,122
108
108
  maleo_foundation/utils/dependencies/auth.py,sha256=wS9qnmd1n2WsFhiSfyq_3Io3wwZKTENVPv4rMwxJslE,727
109
109
  maleo_foundation/utils/formatter/__init__.py,sha256=iKf5YCbEdg1qKnFHyKqqcQbqAqEeRUf8mhI3v3dQoj8,78
@@ -115,7 +115,7 @@ maleo_foundation/utils/loaders/credential/__init__.py,sha256=qopTKvcMVoTFwyRijeg
115
115
  maleo_foundation/utils/loaders/credential/google.py,sha256=SKsqPuFnAiCcYLf24CxKnMybhVHpgqnq1gGSlThqjts,994
116
116
  maleo_foundation/utils/loaders/key/__init__.py,sha256=hVygcC2ImHc_aVrSrOmyedR8tMUZokWUKCKOSh5ctbo,106
117
117
  maleo_foundation/utils/loaders/key/rsa.py,sha256=gDhyX6iTFtHiluuhFCozaZ3pOLKU2Y9TlrNMK_GVyGU,3796
118
- maleo_foundation-0.2.28.dist-info/METADATA,sha256=IDvJyZhnLaue3MHhdff2_aGyyVLvBDEbDEl0iOn9gIk,3598
119
- maleo_foundation-0.2.28.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
120
- maleo_foundation-0.2.28.dist-info/top_level.txt,sha256=_iBos3F_bhEOdjOnzeiEYSrCucasc810xXtLBXI8cQc,17
121
- maleo_foundation-0.2.28.dist-info/RECORD,,
118
+ maleo_foundation-0.2.30.dist-info/METADATA,sha256=4vzd8oLmEHLdC7C9fNuRfYBPFfKRalLzOncVtPZ7p3Y,3598
119
+ maleo_foundation-0.2.30.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
120
+ maleo_foundation-0.2.30.dist-info/top_level.txt,sha256=_iBos3F_bhEOdjOnzeiEYSrCucasc810xXtLBXI8cQc,17
121
+ maleo_foundation-0.2.30.dist-info/RECORD,,