-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathkey_value_store.py
More file actions
861 lines (682 loc) · 28.6 KB
/
key_value_store.py
File metadata and controls
861 lines (682 loc) · 28.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
from __future__ import annotations
import re
from contextlib import asynccontextmanager, contextmanager
from http import HTTPStatus
from typing import TYPE_CHECKING, Any
from urllib.parse import urlencode, urlparse, urlunparse
from apify_client._consts import FAST_OPERATION_TIMEOUT, STANDARD_OPERATION_TIMEOUT
from apify_client._docs import docs_group
from apify_client._models import (
KeyValueStore,
KeyValueStoreKey,
KeyValueStoreResponse,
ListOfKeys,
ListOfKeysResponse,
)
from apify_client._resource_clients._resource_client import ResourceClient, ResourceClientAsync
from apify_client._utils import (
catch_not_found_or_throw,
create_hmac_signature,
create_storage_content_signature,
encode_key_value_store_record_value,
filter_none_values,
response_to_dict,
)
from apify_client.errors import ApifyApiError, InvalidResponseBodyError
if TYPE_CHECKING:
from collections.abc import AsyncIterator, Iterator
from datetime import timedelta
from apify_client._http_clients import HttpResponse
from apify_client._models import GeneralAccess
def _parse_get_record_response(response: HttpResponse) -> Any:
"""Parse an HTTP response based on its content type.
Args:
response: The HTTP response to parse.
Returns:
Parsed response data (JSON dict/list, text string, or raw bytes).
Raises:
InvalidResponseBodyError: If the response body cannot be parsed.
"""
if response.status_code == HTTPStatus.NO_CONTENT:
return None
content_type = ''
if 'content-type' in response.headers:
content_type = response.headers['content-type'].split(';')[0].strip()
try:
if re.search(r'^application/json', content_type, flags=re.IGNORECASE):
response_data = response.json()
elif re.search(r'^application/.*xml$', content_type, flags=re.IGNORECASE) or re.search(
r'^text/', content_type, flags=re.IGNORECASE
):
response_data = response.text
else:
response_data = response.content
except ValueError as err:
raise InvalidResponseBodyError(response) from err
else:
return response_data
@docs_group('Resource clients')
class KeyValueStoreClient(ResourceClient):
"""Sub-client for managing a specific key-value store.
Provides methods to manage a specific key-value store, e.g. get it, update it, or manage its records. Obtain an
instance via an appropriate method on the `ApifyClient` class.
"""
def __init__(
self,
*,
resource_id: str | None = None,
resource_path: str = 'key-value-stores',
**kwargs: Any,
) -> None:
super().__init__(
resource_id=resource_id,
resource_path=resource_path,
**kwargs,
)
def get(self) -> KeyValueStore | None:
"""Retrieve the key-value store.
https://docs.apify.com/api/v2#/reference/key-value-stores/store-object/get-store
Returns:
The retrieved key-value store, or None if it does not exist.
"""
result = self._get(timeout=FAST_OPERATION_TIMEOUT)
if result is None:
return None
return KeyValueStoreResponse.model_validate(result).data
def update(self, *, name: str | None = None, general_access: GeneralAccess | None = None) -> KeyValueStore:
"""Update the key-value store with specified fields.
https://docs.apify.com/api/v2#/reference/key-value-stores/store-object/update-store
Args:
name: The new name for key-value store.
general_access: Determines how others can access the key-value store.
Returns:
The updated key-value store.
"""
updated_fields = {
'name': name,
'generalAccess': general_access,
}
cleaned = filter_none_values(updated_fields)
result = self._update(cleaned, timeout=FAST_OPERATION_TIMEOUT)
return KeyValueStoreResponse.model_validate(result).data
def delete(self) -> None:
"""Delete the key-value store.
https://docs.apify.com/api/v2#/reference/key-value-stores/store-object/delete-store
"""
self._delete(timeout=FAST_OPERATION_TIMEOUT)
def list_keys(
self,
*,
limit: int | None = None,
exclusive_start_key: str | None = None,
collection: str | None = None,
prefix: str | None = None,
signature: str | None = None,
) -> ListOfKeys:
"""List the keys in the key-value store.
https://docs.apify.com/api/v2#/reference/key-value-stores/key-collection/get-list-of-keys
Args:
limit: Number of keys to be returned. Maximum value is 1000.
exclusive_start_key: All keys up to this one (including) are skipped from the result.
collection: The name of the collection in store schema to list keys from.
prefix: The prefix of the keys to be listed.
signature: Signature used to access the items.
Returns:
The list of keys in the key-value store matching the given arguments.
"""
request_params = self._build_params(
limit=limit,
exclusiveStartKey=exclusive_start_key,
collection=collection,
prefix=prefix,
signature=signature,
)
response = self._http_client.call(
url=self._build_url('keys'),
method='GET',
params=request_params,
timeout=STANDARD_OPERATION_TIMEOUT,
)
result = response_to_dict(response)
return ListOfKeysResponse.model_validate(result).data
def iterate_keys(
self,
*,
limit: int | None = None,
collection: str | None = None,
prefix: str | None = None,
signature: str | None = None,
) -> Iterator[KeyValueStoreKey]:
"""Iterate over the keys in the key-value store.
https://docs.apify.com/api/v2#/reference/key-value-stores/key-collection/get-list-of-keys
Args:
limit: Maximum number of keys to return. By default there is no limit.
collection: The name of the collection in store schema to list keys from.
prefix: The prefix of the keys to be listed.
signature: Signature used to access the items.
Yields:
A key from the key-value store.
"""
cache_size = 1000
read_keys = 0
exclusive_start_key: str | None = None
while True:
effective_limit = cache_size
if limit is not None:
if read_keys == limit:
break
effective_limit = min(cache_size, limit - read_keys)
current_keys_page = self.list_keys(
limit=effective_limit,
exclusive_start_key=exclusive_start_key,
collection=collection,
prefix=prefix,
signature=signature,
)
yield from current_keys_page.items
read_keys += len(current_keys_page.items)
if not current_keys_page.is_truncated:
break
exclusive_start_key = current_keys_page.next_exclusive_start_key
def get_record(self, key: str, signature: str | None = None) -> dict | None:
"""Retrieve the given record from the key-value store.
https://docs.apify.com/api/v2#/reference/key-value-stores/record/get-record
Args:
key: Key of the record to retrieve.
signature: Signature used to access the items.
Returns:
The requested record, or None, if the record does not exist.
"""
try:
response = self._http_client.call(
url=self._build_url(f'records/{key}'),
method='GET',
params=self._build_params(signature=signature, attachment=True),
)
return {
'key': key,
'value': _parse_get_record_response(response),
'content_type': response.headers['content-type'],
}
except ApifyApiError as exc:
catch_not_found_or_throw(exc)
return None
def record_exists(self, key: str) -> bool:
"""Check if given record is present in the key-value store.
https://docs.apify.com/api/v2/key-value-store-record-head
Args:
key: Key of the record to check.
Returns:
True if the record exists, False otherwise.
"""
try:
response = self._http_client.call(
url=self._build_url(f'records/{key}'),
method='HEAD',
params=self._build_params(),
)
except ApifyApiError as exc:
if exc.status_code == HTTPStatus.NOT_FOUND:
return False
raise
return response.status_code == HTTPStatus.OK
def get_record_as_bytes(self, key: str, signature: str | None = None) -> dict | None:
"""Retrieve the given record from the key-value store, without parsing it.
https://docs.apify.com/api/v2#/reference/key-value-stores/record/get-record
Args:
key: Key of the record to retrieve.
signature: Signature used to access the items.
Returns:
The requested record, or None, if the record does not exist.
"""
try:
response = self._http_client.call(
url=self._build_url(f'records/{key}'),
method='GET',
params=self._build_params(signature=signature, attachment=True),
)
return {
'key': key,
'value': response.content,
'content_type': response.headers['content-type'],
}
except ApifyApiError as exc:
catch_not_found_or_throw(exc)
return None
@contextmanager
def stream_record(self, key: str, signature: str | None = None) -> Iterator[dict | None]:
"""Retrieve the given record from the key-value store, as a stream.
https://docs.apify.com/api/v2#/reference/key-value-stores/record/get-record
Args:
key: Key of the record to retrieve.
signature: Signature used to access the items.
Returns:
The requested record as a context-managed streaming Response, or None, if the record does not exist.
"""
response = None
try:
response = self._http_client.call(
url=self._build_url(f'records/{key}'),
method='GET',
params=self._build_params(signature=signature, attachment=True),
stream=True,
)
yield {
'key': key,
'value': response,
'content_type': response.headers['content-type'],
}
except ApifyApiError as exc:
catch_not_found_or_throw(exc)
yield None
finally:
if response:
response.close()
def set_record(
self,
key: str,
value: Any,
content_type: str | None = None,
) -> None:
"""Set a value to the given record in the key-value store.
https://docs.apify.com/api/v2#/reference/key-value-stores/record/put-record
Args:
key: The key of the record to save the value to.
value: The value to save into the record.
content_type: The content type of the saved value.
"""
value, content_type = encode_key_value_store_record_value(value, content_type)
headers = {'content-type': content_type}
self._http_client.call(
url=self._build_url(f'records/{key}'),
method='PUT',
params=self._build_params(),
data=value,
headers=headers,
)
def delete_record(self, key: str) -> None:
"""Delete the specified record from the key-value store.
https://docs.apify.com/api/v2#/reference/key-value-stores/record/delete-record
Args:
key: The key of the record which to delete.
"""
self._http_client.call(
url=self._build_url(f'records/{key}'),
method='DELETE',
params=self._build_params(),
timeout=FAST_OPERATION_TIMEOUT,
)
def get_record_public_url(self, key: str) -> str:
"""Generate a URL that can be used to access key-value store record.
If the client has permission to access the key-value store's URL signing key, the URL will include a signature
to verify its authenticity.
Args:
key: The key for which the URL should be generated.
Returns:
A public URL that can be used to access the value of the given key in the KVS.
"""
if self._resource_id is None:
raise ValueError('resource_id cannot be None when generating a public URL')
metadata = self.get()
request_params = self._build_params()
if metadata and metadata.url_signing_secret_key:
request_params['signature'] = create_hmac_signature(metadata.url_signing_secret_key, key)
key_public_url = urlparse(self._build_url(f'records/{key}', public=True))
filtered_params = {k: v for k, v in request_params.items() if v is not None}
if filtered_params:
key_public_url = key_public_url._replace(query=urlencode(filtered_params))
return urlunparse(key_public_url)
def create_keys_public_url(
self,
*,
limit: int | None = None,
exclusive_start_key: str | None = None,
collection: str | None = None,
prefix: str | None = None,
expires_in: timedelta | None = None,
) -> str:
"""Generate a URL that can be used to access key-value store keys.
If the client has permission to access the key-value store's URL signing key,
the URL will include a signature to verify its authenticity.
You can optionally control how long the signed URL should be valid using the `expires_in` option.
This value sets the expiration duration from the time the URL is generated.
If not provided, the URL will not expire.
Any other options (like `limit` or `prefix`) will be included as query parameters in the URL.
Returns:
The public key-value store keys URL.
"""
metadata = self.get()
request_params = self._build_params(
limit=limit,
exclusiveStartKey=exclusive_start_key,
collection=collection,
prefix=prefix,
)
if metadata and metadata.url_signing_secret_key:
signature = create_storage_content_signature(
resource_id=metadata.id,
url_signing_secret_key=metadata.url_signing_secret_key,
expires_in=expires_in,
)
request_params['signature'] = signature
keys_public_url = urlparse(self._build_url('keys', public=True))
filtered_params = {k: v for k, v in request_params.items() if v is not None}
if filtered_params:
keys_public_url = keys_public_url._replace(query=urlencode(filtered_params))
return urlunparse(keys_public_url)
@docs_group('Resource clients')
class KeyValueStoreClientAsync(ResourceClientAsync):
"""Sub-client for managing a specific key-value store.
Provides methods to manage a specific key-value store, e.g. get it, update it, or manage its records. Obtain an
instance via an appropriate method on the `ApifyClientAsync` class.
"""
def __init__(
self,
*,
resource_id: str | None = None,
resource_path: str = 'key-value-stores',
**kwargs: Any,
) -> None:
super().__init__(
resource_id=resource_id,
resource_path=resource_path,
**kwargs,
)
async def get(self) -> KeyValueStore | None:
"""Retrieve the key-value store.
https://docs.apify.com/api/v2#/reference/key-value-stores/store-object/get-store
Returns:
The retrieved key-value store, or None if it does not exist.
"""
result = await self._get(timeout=FAST_OPERATION_TIMEOUT)
if result is None:
return None
return KeyValueStoreResponse.model_validate(result).data
async def update(
self,
*,
name: str | None = None,
general_access: GeneralAccess | None = None,
) -> KeyValueStore:
"""Update the key-value store with specified fields.
https://docs.apify.com/api/v2#/reference/key-value-stores/store-object/update-store
Args:
name: The new name for key-value store.
general_access: Determines how others can access the key-value store.
Returns:
The updated key-value store.
"""
updated_fields = {
'name': name,
'generalAccess': general_access,
}
cleaned = filter_none_values(updated_fields)
result = await self._update(cleaned, timeout=FAST_OPERATION_TIMEOUT)
return KeyValueStoreResponse.model_validate(result).data
async def delete(self) -> None:
"""Delete the key-value store.
https://docs.apify.com/api/v2#/reference/key-value-stores/store-object/delete-store
"""
await self._delete(timeout=FAST_OPERATION_TIMEOUT)
async def list_keys(
self,
*,
limit: int | None = None,
exclusive_start_key: str | None = None,
collection: str | None = None,
prefix: str | None = None,
signature: str | None = None,
) -> ListOfKeys:
"""List the keys in the key-value store.
https://docs.apify.com/api/v2#/reference/key-value-stores/key-collection/get-list-of-keys
Args:
limit: Number of keys to be returned. Maximum value is 1000.
exclusive_start_key: All keys up to this one (including) are skipped from the result.
collection: The name of the collection in store schema to list keys from.
prefix: The prefix of the keys to be listed.
signature: Signature used to access the items.
Returns:
The list of keys in the key-value store matching the given arguments.
"""
request_params = self._build_params(
limit=limit,
exclusiveStartKey=exclusive_start_key,
collection=collection,
prefix=prefix,
signature=signature,
)
response = await self._http_client.call(
url=self._build_url('keys'),
method='GET',
params=request_params,
timeout=STANDARD_OPERATION_TIMEOUT,
)
result = response_to_dict(response)
return ListOfKeysResponse.model_validate(result).data
async def iterate_keys(
self,
*,
limit: int | None = None,
collection: str | None = None,
prefix: str | None = None,
signature: str | None = None,
) -> AsyncIterator[KeyValueStoreKey]:
"""Iterate over the keys in the key-value store.
https://docs.apify.com/api/v2#/reference/key-value-stores/key-collection/get-list-of-keys
Args:
limit: Maximum number of keys to return. By default there is no limit.
collection: The name of the collection in store schema to list keys from.
prefix: The prefix of the keys to be listed.
signature: Signature used to access the items.
Yields:
A key from the key-value store.
"""
cache_size = 1000
read_keys = 0
exclusive_start_key: str | None = None
while True:
effective_limit = cache_size
if limit is not None:
if read_keys == limit:
break
effective_limit = min(cache_size, limit - read_keys)
current_keys_page = await self.list_keys(
limit=effective_limit,
exclusive_start_key=exclusive_start_key,
collection=collection,
prefix=prefix,
signature=signature,
)
for key in current_keys_page.items:
yield key
read_keys += len(current_keys_page.items)
if not current_keys_page.is_truncated:
break
exclusive_start_key = current_keys_page.next_exclusive_start_key
async def get_record(self, key: str, signature: str | None = None) -> dict | None:
"""Retrieve the given record from the key-value store.
https://docs.apify.com/api/v2#/reference/key-value-stores/record/get-record
Args:
key: Key of the record to retrieve.
signature: Signature used to access the items.
Returns:
The requested record, or None, if the record does not exist.
"""
try:
response = await self._http_client.call(
url=self._build_url(f'records/{key}'),
method='GET',
params=self._build_params(signature=signature, attachment=True),
)
return {
'key': key,
'value': _parse_get_record_response(response),
'content_type': response.headers['content-type'],
}
except ApifyApiError as exc:
catch_not_found_or_throw(exc)
return None
async def record_exists(self, key: str) -> bool:
"""Check if given record is present in the key-value store.
https://docs.apify.com/api/v2/key-value-store-record-head
Args:
key: Key of the record to check.
Returns:
True if the record exists, False otherwise.
"""
try:
response = await self._http_client.call(
url=self._build_url(f'records/{key}'),
method='HEAD',
params=self._build_params(),
)
except ApifyApiError as exc:
if exc.status_code == HTTPStatus.NOT_FOUND:
return False
raise
return response.status_code == HTTPStatus.OK
async def get_record_as_bytes(self, key: str, signature: str | None = None) -> dict | None:
"""Retrieve the given record from the key-value store, without parsing it.
https://docs.apify.com/api/v2#/reference/key-value-stores/record/get-record
Args:
key: Key of the record to retrieve.
signature: Signature used to access the items.
Returns:
The requested record, or None, if the record does not exist.
"""
try:
response = await self._http_client.call(
url=self._build_url(f'records/{key}'),
method='GET',
params=self._build_params(signature=signature, attachment=True),
)
return {
'key': key,
'value': response.content,
'content_type': response.headers['content-type'],
}
except ApifyApiError as exc:
catch_not_found_or_throw(exc)
return None
@asynccontextmanager
async def stream_record(self, key: str, signature: str | None = None) -> AsyncIterator[dict | None]:
"""Retrieve the given record from the key-value store, as a stream.
https://docs.apify.com/api/v2#/reference/key-value-stores/record/get-record
Args:
key: Key of the record to retrieve.
signature: Signature used to access the items.
Returns:
The requested record as a context-managed streaming Response, or None, if the record does not exist.
"""
response = None
try:
response = await self._http_client.call(
url=self._build_url(f'records/{key}'),
method='GET',
params=self._build_params(signature=signature, attachment=True),
stream=True,
)
yield {
'key': key,
'value': response,
'content_type': response.headers['content-type'],
}
except ApifyApiError as exc:
catch_not_found_or_throw(exc)
yield None
finally:
if response:
await response.aclose()
async def set_record(
self,
key: str,
value: Any,
content_type: str | None = None,
) -> None:
"""Set a value to the given record in the key-value store.
https://docs.apify.com/api/v2#/reference/key-value-stores/record/put-record
Args:
key: The key of the record to save the value to.
value: The value to save into the record.
content_type: The content type of the saved value.
"""
value, content_type = encode_key_value_store_record_value(value, content_type)
headers = {'content-type': content_type}
await self._http_client.call(
url=self._build_url(f'records/{key}'),
method='PUT',
params=self._build_params(),
data=value,
headers=headers,
)
async def delete_record(self, key: str) -> None:
"""Delete the specified record from the key-value store.
https://docs.apify.com/api/v2#/reference/key-value-stores/record/delete-record
Args:
key: The key of the record which to delete.
"""
await self._http_client.call(
url=self._build_url(f'records/{key}'),
method='DELETE',
params=self._build_params(),
timeout=FAST_OPERATION_TIMEOUT,
)
async def get_record_public_url(self, key: str) -> str:
"""Generate a URL that can be used to access key-value store record.
If the client has permission to access the key-value store's URL signing key, the URL will include a signature
to verify its authenticity.
Args:
key: The key for which the URL should be generated.
Returns:
A public URL that can be used to access the value of the given key in the KVS.
"""
if self._resource_id is None:
raise ValueError('resource_id cannot be None when generating a public URL')
metadata = await self.get()
request_params = self._build_params()
if metadata and metadata.url_signing_secret_key:
request_params['signature'] = create_hmac_signature(metadata.url_signing_secret_key, key)
key_public_url = urlparse(self._build_url(f'records/{key}', public=True))
filtered_params = {k: v for k, v in request_params.items() if v is not None}
if filtered_params:
key_public_url = key_public_url._replace(query=urlencode(filtered_params))
return urlunparse(key_public_url)
async def create_keys_public_url(
self,
*,
limit: int | None = None,
exclusive_start_key: str | None = None,
collection: str | None = None,
prefix: str | None = None,
expires_in: timedelta | None = None,
) -> str:
"""Generate a URL that can be used to access key-value store keys.
If the client has permission to access the key-value store's URL signing key,
the URL will include a signature to verify its authenticity.
You can optionally control how long the signed URL should be valid using the `expires_in` option.
This value sets the expiration duration from the time the URL is generated.
If not provided, the URL will not expire.
Any other options (like `limit` or `prefix`) will be included as query parameters in the URL.
Returns:
The public key-value store keys URL.
"""
metadata = await self.get()
keys_public_url = urlparse(self._build_url('keys'))
request_params = self._build_params(
limit=limit,
exclusiveStartKey=exclusive_start_key,
collection=collection,
prefix=prefix,
)
if metadata and metadata.url_signing_secret_key:
signature = create_storage_content_signature(
resource_id=metadata.id,
url_signing_secret_key=metadata.url_signing_secret_key,
expires_in=expires_in,
)
request_params['signature'] = signature
keys_public_url = urlparse(self._build_url('keys', public=True))
filtered_params = {k: v for k, v in request_params.items() if v is not None}
if filtered_params:
keys_public_url = keys_public_url._replace(query=urlencode(filtered_params))
return urlunparse(keys_public_url)