maleo-foundation 0.2.30__py3-none-any.whl → 0.2.32__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.
@@ -6,8 +6,13 @@ from maleo_foundation.enums import BaseEnums
6
6
  class RedisCacheNamespaces(BaseModel):
7
7
  base:str = Field(..., description="Base's redis namespace")
8
8
 
9
- def create(self, type:BaseEnums.CacheType, *ext:str) -> str:
10
- return ":".join([self.base, type, *ext])
9
+ def create(
10
+ self,
11
+ type:BaseEnums.CacheType,
12
+ base_override:BaseTypes.OptionalString = None,
13
+ *ext:str
14
+ ) -> str:
15
+ return ":".join([self.base if base_override is None else base_override, type, *ext])
11
16
 
12
17
  class RedisCacheConfigurations(BaseModel):
13
18
  ttl:Union[int, float] = Field(BaseEnums.CacheTTL.TTL_5MN, description="Default TTL")
@@ -33,12 +33,18 @@ class MaleoClientServiceControllers(ClientServiceControllers):
33
33
  class MaleoClientService(ClientService):
34
34
  def __init__(
35
35
  self,
36
+ key:str,
36
37
  logger:ClientLogger,
37
38
  service_manager:ServiceManager
38
39
  ):
39
40
  super().__init__(logger)
41
+ self._key = key
40
42
  self._service_manager = service_manager
41
43
 
44
+ @property
45
+ def key(self) -> str:
46
+ return self._key
47
+
42
48
  @property
43
49
  def service_manager(self) -> ServiceManager:
44
50
  return self._service_manager
@@ -0,0 +1,61 @@
1
+ import asyncio
2
+ from functools import wraps
3
+ from pydantic import ValidationError
4
+ from typing import Optional, Type, Union
5
+ from maleo_foundation.types import BaseTypes
6
+ from maleo_foundation.models.transfers.results.client.service import \
7
+ BaseClientServiceResultsTransfers
8
+
9
+ class BaseClientUtils:
10
+ @staticmethod
11
+ def result_processor(
12
+ fail_class:Type[BaseClientServiceResultsTransfers.Fail],
13
+ data_found_class:Union[
14
+ Type[BaseClientServiceResultsTransfers.SingleData],
15
+ Type[BaseClientServiceResultsTransfers.UnpaginatedMultipleData],
16
+ Type[BaseClientServiceResultsTransfers.PaginatedMultipleData]
17
+ ],
18
+ no_data_class:Optional[Type[BaseClientServiceResultsTransfers.NoData]] = None,
19
+ ):
20
+ """Decorator to handle repository-related exceptions consistently."""
21
+ def decorator(func):
22
+ def _processor(result:BaseTypes.StringToAnyDict):
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
+ return validated_result
30
+ else:
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
39
+ if asyncio.iscoroutinefunction(func):
40
+ @wraps(func)
41
+ async def async_wrapper(*args, **kwargs):
42
+ try:
43
+ result:BaseTypes.StringToAnyDict = await func(*args, **kwargs)
44
+ return _processor(result=result)
45
+ except ValidationError as e:
46
+ raise
47
+ except Exception as e:
48
+ raise
49
+ return async_wrapper
50
+ else:
51
+ @wraps(func)
52
+ def sync_wrapper(*args, **kwargs):
53
+ try:
54
+ result:BaseTypes.StringToAnyDict = func(*args, **kwargs)
55
+ return _processor(result=result)
56
+ except ValidationError as e:
57
+ raise
58
+ except Exception as e:
59
+ raise
60
+ return sync_wrapper
61
+ return decorator
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: maleo_foundation
3
- Version: 0.2.30
3
+ Version: 0.2.32
4
4
  Summary: Foundation package for Maleo
5
5
  Author-email: Agra Bima Yuda <agra@nexmedis.com>
6
6
  License: MIT
@@ -36,10 +36,10 @@ maleo_foundation/managers/middleware.py,sha256=ODIQU1Hpu-Xempjjo_VRbVtxiD5oi74mN
36
36
  maleo_foundation/managers/service.py,sha256=i__-ISJ9YQi08nMRl6_j8jOVJB--A-tpGwWPF3FvoqM,18991
37
37
  maleo_foundation/managers/cache/__init__.py,sha256=CeY0oof2bVl_v5WS-FKXNwn2gf3xrEMfUsHK9cHo59s,471
38
38
  maleo_foundation/managers/cache/base.py,sha256=YyPjde4KTsp2IHV6NdFMysa0ev-1GX1rtX-0jQPuIBU,837
39
- maleo_foundation/managers/cache/redis.py,sha256=vUpQUAKP_wZb_Fr1wEzICDCPQyBW8jnZ-pktl6AIdmY,1021
39
+ maleo_foundation/managers/cache/redis.py,sha256=Th2DOV2Oa9FtDe1UxjBNxjyFxRv2yiiaB-7NqkpfHQw,1150
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=BtLITPO-DTuj_TjBPCrdDDnpm0vz7fV6Kdl4H49BhM0,2546
42
+ maleo_foundation/managers/client/maleo.py,sha256=5vDKXObH0qlCaY0-t4FJJdgXYFklnZw3Cyxk3kmAO8k,2653
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
@@ -97,6 +97,7 @@ maleo_foundation/models/transfers/results/service/repository.py,sha256=xz9RakOBE
97
97
  maleo_foundation/models/transfers/results/service/controllers/__init__.py,sha256=HZJWMy2dskzOCzLmp_UaL9rjbQ-sDMI7sd2bXb-4QOU,175
98
98
  maleo_foundation/models/transfers/results/service/controllers/rest.py,sha256=wCuFyOTQkuBs2cqjPsWnPy0XIsCfMqGByhrSy57qp7Y,1107
99
99
  maleo_foundation/utils/__init__.py,sha256=SRPEVoqjZoO6W8rtF_Ti8VIangg6Auwm6eHbZMdOthY,520
100
+ maleo_foundation/utils/client.py,sha256=F5X9TUxWQgeOHjwsMpPoSRhZANQYZ_iFv0RJDTUVhrw,2820
100
101
  maleo_foundation/utils/controller.py,sha256=3n9HcWHqywLhfpgTkzd_NrjWNJgTwGBSokqGgJKeBAU,4132
101
102
  maleo_foundation/utils/exceptions.py,sha256=kDLTWiUauvc-fSKrEyxlGvIi2NtZIAhJ9bV3OXnpTyo,6253
102
103
  maleo_foundation/utils/extractor.py,sha256=SZXVYDHWGaA-Dd1BUydwF2HHdZqexEielS4CjL0Ceng,814
@@ -115,7 +116,7 @@ maleo_foundation/utils/loaders/credential/__init__.py,sha256=qopTKvcMVoTFwyRijeg
115
116
  maleo_foundation/utils/loaders/credential/google.py,sha256=SKsqPuFnAiCcYLf24CxKnMybhVHpgqnq1gGSlThqjts,994
116
117
  maleo_foundation/utils/loaders/key/__init__.py,sha256=hVygcC2ImHc_aVrSrOmyedR8tMUZokWUKCKOSh5ctbo,106
117
118
  maleo_foundation/utils/loaders/key/rsa.py,sha256=gDhyX6iTFtHiluuhFCozaZ3pOLKU2Y9TlrNMK_GVyGU,3796
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,,
119
+ maleo_foundation-0.2.32.dist-info/METADATA,sha256=9HHq7-RTatAgGiJusDbtqUrGblhClmLUU_4gZx7R0rA,3598
120
+ maleo_foundation-0.2.32.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
121
+ maleo_foundation-0.2.32.dist-info/top_level.txt,sha256=_iBos3F_bhEOdjOnzeiEYSrCucasc810xXtLBXI8cQc,17
122
+ maleo_foundation-0.2.32.dist-info/RECORD,,