kisa-utils 0.42.1__py3-none-any.whl → 0.42.3__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.
@@ -11,6 +11,8 @@ from kisa_utils import dates
11
11
  from kisa_utils.db import Handle
12
12
  from kisa_utils.encryption import decrypt, encrypt
13
13
  from kisa_utils.storage import encodeJSON, decodeJSON
14
+ import kisa_utils as kutils; kutils.db.RETURN_KISA_RESPONSES = True
15
+
14
16
 
15
17
  from . import __config__
16
18
 
@@ -204,12 +206,12 @@ class Permissions:
204
206
  self.__lastModified = dates.currentTimestamp()
205
207
  data = encrypt(encodeJSON(self.export()), password=self.__id)
206
208
  with Handle(self.__dbFilePath, tables=Permissions.__dbTables, readonly=False, useWALMode=True) as handle:
207
- if not (response := handle.insert(self.__dbTableName, [
209
+ if not (resp := handle.insert(self.__dbTableName, [
208
210
  dates.currentTimestamp(),
209
211
  data
210
212
  ])):
211
- print(f'permissions save error: {response["log"]}')
212
- Error(response['log'])
213
+ print(f'permissions save error: {resp.log}')
214
+ return resp
213
215
 
214
216
  return Ok()
215
217
 
@@ -218,11 +220,14 @@ class Permissions:
218
220
  load the permissions instance from disk
219
221
  '''
220
222
  with Handle(self.__dbFilePath, tables=Permissions.__dbTables, readonly=True) as handle:
221
- data = handle.fetch(Permissions.__dbTableName, ['details'],'1 order by rowid desc',[], limit=1)
222
- if not data:
223
+ resp = handle.fetch(Permissions.__dbTableName, ['details'],'1 order by rowid desc',[], limit=1)
224
+ if not resp:
225
+ return resp
226
+
227
+ if not resp.data:
223
228
  return Error('no-saved-data')
224
229
 
225
- data = data[0][0]
230
+ data = resp.data[0][0]
226
231
 
227
232
  try:
228
233
  data = decrypt(data, password=self.__id)
@@ -180,7 +180,7 @@ class PersistentQueue(metaclass=__PersistentQueueSingleton):
180
180
 
181
181
  return Ok(data)
182
182
 
183
- def pop(self, /, *, index:int = 0) -> Response:
183
+ def pop(self, index:int = 0, /) -> Response:
184
184
  '''
185
185
  get data at `index` and remove it from the queue
186
186
  '''
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: kisa-utils
3
- Version: 0.42.1
3
+ Version: 0.42.3
4
4
  Summary: Utility functions and modules for KISA Developers
5
5
  Author: Tom Bukenya
6
6
  Author-email: glayn2bukman@gmail.com
@@ -16,9 +16,9 @@ kisa_utils/storage.py,sha256=6NdEVrHMS7WB_vmCwiGigIinu-EjxalFJhk1kj-_vWs,5990
16
16
  kisa_utils/threads.py,sha256=qQqsf64YHMyLpboq5AEXKxYqf3iXUhxiJe6Ymg-vlxI,12840
17
17
  kisa_utils/token.py,sha256=Y2qglWYWpmHxoXBh-TH0r1as0uPV5LLqMNcunLvM4vM,7850
18
18
  kisa_utils/permissions/__config__.py,sha256=i3ELkOydDnjKx2ozQTxLZdZ8DXSeUncnl2kRxANjFmM,613
19
- kisa_utils/permissions/__init__.py,sha256=q7LGl26f-MPXkLS6nxBKDotW3xdB8y7pI5S_Oo5fPOw,47976
19
+ kisa_utils/permissions/__init__.py,sha256=4FgB46BBGYZPRr_oZvF9SD1HsUgnKeIUyyqyn4Ruj9A,48087
20
20
  kisa_utils/queues/__init__.py,sha256=VvhceyN5qeiMel1JFQwLRuVk48oBXaWvDtriCubDOms,48
21
- kisa_utils/queues/persistent.py,sha256=XTXMu7Q7DMizHIgB3PKrW9iq0PA0ftQa7080j3tCwN0,6668
21
+ kisa_utils/queues/persistent.py,sha256=e4s2SK0Wvqq8wVcqPm1Gr_4ip0-0l25WKcMUNTSK_QY,6665
22
22
  kisa_utils/queues/callables/__init__.py,sha256=OJL3AQnaAS1Eek4H6WBH3WefA2wf-x03cwFmRSK8hoU,141
23
23
  kisa_utils/queues/callables/enqueueFunctionCalls.py,sha256=VIliaMvw4MUdOqts0dXdZCYNxs-QrOVjIRAR3scGrRM,11786
24
24
  kisa_utils/queues/callables/executorQueues.py,sha256=x6bAqxBSZRZ_kL8CK1lSN6JYAYFLxzM84LC1RmwaOLw,6626
@@ -27,7 +27,7 @@ kisa_utils/servers/flask.py,sha256=XZYY1pWnP1mSvaS5Uv8G3EFJV5BJBQtU2gDbO8suvLc,4
27
27
  kisa_utils/structures/__init__.py,sha256=JBU1j3A42jQ62ALKnsS1Hav9YXcYwjDw1wQJtohXPbU,83
28
28
  kisa_utils/structures/utils.py,sha256=665rXIapGwFqejizeJwy3DryeskCQOdgP25BCdLkGvk,2898
29
29
  kisa_utils/structures/validator.py,sha256=JhD9jcfbjTwBr_7OfuNaJd_cYr7wR2emFhsCEo5MCHQ,4323
30
- kisa_utils-0.42.1.dist-info/METADATA,sha256=PmeuHNl4KeA7DIqDWMUe40jTqtxO-yTUxzSDlqxp1pU,477
31
- kisa_utils-0.42.1.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
32
- kisa_utils-0.42.1.dist-info/top_level.txt,sha256=GFOLXZYqpBG9xtscGa2uGJAEiZ5NwsqHBH9NylnB29M,11
33
- kisa_utils-0.42.1.dist-info/RECORD,,
30
+ kisa_utils-0.42.3.dist-info/METADATA,sha256=TLYDHxF2UmDWdmxLXlrBBBVxSk1_60AQyhqJgRoUdkg,477
31
+ kisa_utils-0.42.3.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
32
+ kisa_utils-0.42.3.dist-info/top_level.txt,sha256=GFOLXZYqpBG9xtscGa2uGJAEiZ5NwsqHBH9NylnB29M,11
33
+ kisa_utils-0.42.3.dist-info/RECORD,,