-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathclient.py
More file actions
1402 lines (1225 loc) · 40.9 KB
/
client.py
File metadata and controls
1402 lines (1225 loc) · 40.9 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
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import abc
import collections
import datetime
import hashlib
import hmac
import os
import sys
from typing import Any, Awaitable, Dict, Iterable, List, Optional, TypeVar, Union
from stream_chat.types.base import SortParam
from stream_chat.types.campaign import (
CampaignData,
QueryCampaignsOptions,
GetCampaignOptions,
)
from stream_chat.types.segment import (
QuerySegmentsOptions,
QuerySegmentTargetsOptions,
SegmentData,
SegmentType,
SegmentUpdatableFields,
)
if sys.version_info >= (3, 8):
from typing import Literal
else:
from typing_extensions import Literal
import jwt
from stream_chat.types.stream_response import StreamResponse
TChannel = TypeVar("TChannel")
TSegment = TypeVar("TSegment")
TCampaign = TypeVar("TCampaign")
class StreamChatInterface(abc.ABC):
def __init__(
self, api_key: str, api_secret: str, timeout: float = 6.0, **options: Any
):
self.api_key = api_key
self.api_secret = api_secret
self.timeout = timeout
if os.getenv("STREAM_CHAT_TIMEOUT"):
self.timeout = float(os.environ["STREAM_CHAT_TIMEOUT"])
self.options = options
self.base_url = "https://chat.stream-io-api.com"
if options.get("base_url"):
self.base_url = options["base_url"]
elif os.getenv("STREAM_CHAT_URL"):
self.base_url = os.environ["STREAM_CHAT_URL"]
self.auth_token = jwt.encode(
{"server": True}, self.api_secret, algorithm="HS256"
)
def get_default_params(self) -> Dict[str, str]:
return {"api_key": self.api_key}
def normalize_sort(self, sort: Union[Dict, List[Dict]] = None) -> List[Dict]:
sort_fields = []
if isinstance(sort, collections.abc.Mapping):
sort = [sort] # type: ignore
if isinstance(sort, list):
for item in sort:
if "field" in item and "direction" in item:
sort_fields.append(item)
else:
for k, v in item.items():
sort_fields.append({"field": k, "direction": v})
return sort_fields
def create_token(
self,
user_id: str,
exp: Optional[int] = None,
iat: Optional[int] = None,
**claims: Any,
) -> str:
"""
Creates a JWT for a user.
Stream uses JWT (JSON Web Tokens) to authenticate chat users, enabling them to login.
Knowing whether a user is authorized to perform certain actions is managed
separately via a role based permissions system.
By default, user tokens are valid indefinitely. You can set an `exp`
or issued at (`iat`) claim as well.
"""
payload: Dict[str, Any] = {**claims, "user_id": user_id}
if exp:
payload["exp"] = exp
if iat:
payload["iat"] = iat
return jwt.encode(payload, self.api_secret, algorithm="HS256")
def create_search_params(
self,
filter_conditions: Dict,
query: Union[str, Dict],
sort: List[Dict] = None,
**options: Any,
) -> Dict[str, Any]:
params = options.copy()
if isinstance(query, str):
params.update({"query": query})
else:
params.update({"message_filter_conditions": query})
params.update({"filter_conditions": filter_conditions})
if sort:
params.update({"sort": self.normalize_sort(sort)})
return params
def verify_webhook(
self, request_body: bytes, x_signature: Union[str, bytes]
) -> bool:
"""
Verify the signature added to a webhook event
:param request_body: the request body received from webhook
:param x_signature: the x-signature header included in the request
:return: bool
"""
if isinstance(x_signature, bytes):
x_signature = x_signature.decode()
signature = hmac.new(
key=self.api_secret.encode(), msg=request_body, digestmod=hashlib.sha256
).hexdigest()
return signature == x_signature
@abc.abstractmethod
def update_app_settings(
self, **settings: Any
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Update the app settings.
"""
pass
@abc.abstractmethod
def get_app_settings(self) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Get the app settings.
"""
pass
@abc.abstractmethod
def set_guest_user(
self, guest_user: Dict
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Sets up a new guest user
:param guest_user: the guest user data
:return:
"""
pass
@abc.abstractmethod
def update_users(
self, users: List[Dict]
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
DEPRECATED: Use upsert_users instead.
"""
pass
@abc.abstractmethod
def update_user(
self, user: Dict
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
DEPRECATED: Use upsert_user instead.
"""
pass
@abc.abstractmethod
def upsert_users(
self, users: List[Dict]
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Creates new or updates existing users.
"""
pass
@abc.abstractmethod
def upsert_user(
self, user: Dict
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Creates a new or updates an existing user.
"""
pass
@abc.abstractmethod
def update_users_partial(
self, updates: List[Dict]
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Updates multiple users partially.
"""
pass
@abc.abstractmethod
def update_user_partial(
self, update: Dict
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Updates a user partially.
"""
pass
@abc.abstractmethod
def delete_user(
self, user_id: str, **options: Any
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Deletes a user synchronously. Use delete_users for batch delete.
"""
pass
@abc.abstractmethod
def delete_users(
self, user_ids: Iterable[str], delete_type: str, **options: Any
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Delete users asynchronously. Use `get_task` to check the status of the task.
:param user_ids: a list of user IDs to delete
:param delete_type: type of user delete (hard|soft)
:param options: additional delete options
:return: task_id
"""
pass
@abc.abstractmethod
def restore_users(
self, user_ids: Iterable[str]
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Restores soft deleted users.
"""
pass
@abc.abstractmethod
def deactivate_user(
self, user_id: str, **options: Any
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Deactivates a user.
Deactivated users cannot connect to Stream Chat, and can't send or receive messages.
To reactivate a user, use `reactivate_user` method.
"""
pass
@abc.abstractmethod
def reactivate_user(
self, user_id: str, **options: Any
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Reactivates a deactivated user. Use `deactivate_user` to deactivate a user.
"""
pass
@abc.abstractmethod
def export_user(
self, user_id: str, **options: Any
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Exports a user. It exports a user and returns an object
containing all of it's data.
"""
pass
@abc.abstractmethod
def ban_user(
self, target_id: str, **options: Any
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Bans a user. Users can be banned from an app entirely or from a channel.
When a user is banned, they will not be allowed to post messages until the
ban is removed or expired but will be able to connect to Chat and to channels as before.
To unban a user, use `unban_user` method.
"""
pass
@abc.abstractmethod
def shadow_ban(
self, target_id: str, **options: Any
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Shadow ban a user.
When a user is shadow banned, they will still be allowed to post messages,
but any message sent during the will only be visible to the messages author
and invisible to other users of the App.
To remove a shadow ban, use `remove_shadow_ban` method.
"""
pass
@abc.abstractmethod
def remove_shadow_ban(
self, target_id: str, **options: Any
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Removes a shadow ban of a user.
When a user is shadow banned, they will still be allowed to post messages,
but any message sent during the will only be visible to the messages author
and invisible to other users of the App.
To shadow ban a user, use `shadow_ban` method.
"""
pass
@abc.abstractmethod
def unban_user(
self, target_id: str, **options: Any
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Unbans a user. Users can be banned from an app entirely or from a channel.
When a user is banned, they will not be allowed to post messages until the
ban is removed or expired but will be able to connect to Chat and to channels as before.
To ban a user, use `ban_user` method.
"""
pass
@abc.abstractmethod
def query_banned_users(
self, query_conditions: Dict
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Queries banned users.
Banned users can be retrieved in different ways:
1) Using the dedicated query bans endpoint
2) User Search: you can add the banned:true condition to your search. Please note that
this will only return users that were banned at the app-level and not the ones
that were banned only on channels.
"""
pass
@abc.abstractmethod
def run_message_action(
self, message_id: str, data: Dict
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Runs a message command action.
"""
pass
@abc.abstractmethod
def flag_message(
self, target_id: str, **options: Any
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Flags a message.
Any user is allowed to flag a message. This triggers the message.flagged
webhook event and adds the message to the inbox of your
Stream Dashboard Chat Moderation view.
"""
pass
@abc.abstractmethod
def unflag_message(
self, target_id: str, **options: Any
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Unflags a message.
Any user is allowed to flag a message. This triggers the message.flagged
webhook event and adds the message to the inbox of your
Stream Dashboard Chat Moderation view.
"""
pass
@abc.abstractmethod
def query_message_flags(
self, filter_conditions: Dict, **options: Any
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Queries message flags.
If you prefer to build your own in app moderation dashboard, rather than use the Stream
dashboard, then the query message flags endpoint lets you get flagged messages. Similar
to other queries in Stream Chat, you can filter the flags using query operators.
"""
pass
@abc.abstractmethod
def flag_user(
self, target_id: str, **options: Any
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Flags a user.
"""
pass
@abc.abstractmethod
def unflag_user(
self, target_id: str, **options: Any
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Unflags a user.
"""
pass
@abc.abstractmethod
def mute_users(
self, target_ids: List[str], user_id: str, **options: Any
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
pass
@abc.abstractmethod
def mute_user(
self, target_id: str, user_id: str, **options: Any
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Create a mute
:param target_id: the user getting muted
:param user_id: the user muting the target
:param options: additional mute options
:return:
"""
pass
@abc.abstractmethod
def unmute_user(
self, target_id: str, user_id: str
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Removes a mute
:param target_id: the user getting un-muted
:param user_id: the user muting the target
:return:
"""
pass
@abc.abstractmethod
def unmute_users(
self, target_ids: List[str], user_id: str
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
pass
@abc.abstractmethod
def mark_all_read(
self, user_id: str
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Marks all messages as read for a user.
"""
pass
@abc.abstractmethod
def translate_message(
self, message_id: str, language: str
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Translates a message
:param message_id: Id of the message to be translated
:param language: Target language of the translation
:return:
"""
pass
@abc.abstractmethod
def pin_message(
self, message_id: str, user_id: str, expiration: int = None
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Pins a message.
Pinned messages allow users to highlight important messages, make announcements, or temporarily
promote content. Pinning a message is, by default, restricted to certain user roles,
but this is flexible. Each channel can have multiple pinned messages and these can be created
or updated with or without an expiration.
"""
pass
@abc.abstractmethod
def unpin_message(
self, message_id: str, user_id: str
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Unpins a message.
Pinned messages allow users to highlight important messages, make announcements, or temporarily
promote content. Pinning a message is, by default, restricted to certain user roles,
but this is flexible. Each channel can have multiple pinned messages and these can be created
or updated with or without an expiration.
"""
pass
@abc.abstractmethod
def update_message(
self, message: Dict
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Updates a message. Fully overwrites a message.
For partial update, use `update_message_partial` method.
"""
pass
@abc.abstractmethod
def update_message_partial(
self, message_id: str, updates: Dict, user_id: str, **options: Any
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Updates a message partially.
A partial update can be used to set and unset specific fields when
it is necessary to retain additional data fields on the object. AKA a patch style update.
"""
pass
@abc.abstractmethod
def delete_message(
self, message_id: str, **options: Any
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Deletes a message.
"""
pass
@abc.abstractmethod
def undelete_message(
self, message_id: str, user_id: str
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Undeletes a message.
"""
pass
@abc.abstractmethod
def get_message(
self, message_id: str, **options: Any
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Returns a single message.
If the msg is deleted and you want to retrieve it, you can pass the show_deleted_message.
"""
pass
@abc.abstractmethod
def query_message_history(
self, filter: Dict = None, sort: List[Dict] = None, **options: Any
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Queries message history.
"""
pass
@abc.abstractmethod
def query_users(
self, filter_conditions: Dict, sort: List[Dict] = None, **options: Any
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Allows you to search for users and see if they are online/offline.
You can filter and sort on the custom fields you've set for your user, the user id, and when the user was last active.
"""
pass
@abc.abstractmethod
def query_channels(
self, filter_conditions: Dict, sort: List[Dict] = None, **options: Any
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Queries channels.
You can query channels based on built-in fields as well as any custom field you add to channels.
Multiple filters can be combined using AND, OR logical operators, each filter can use its
comparison (equality, inequality, greater than, greater or equal, etc.).
You can find the complete list of supported operators in the query syntax section of the docs.
"""
pass
@abc.abstractmethod
def create_channel_type(
self, data: Dict
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Creates a channel type.
"""
pass
@abc.abstractmethod
def get_channel_type(
self, channel_type: str
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Returns a channel type.
"""
pass
@abc.abstractmethod
def list_channel_types(self) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Returns a list of channel types.
"""
pass
@abc.abstractmethod
def update_channel_type(
self, channel_type: str, **settings: Any
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Updates a channel type.
"""
pass
@abc.abstractmethod
def delete_channel_type(
self, channel_type: str
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Delete a type of channel
:param channel_type: the channel type
:return:
"""
pass
@abc.abstractmethod
def channel(
self, channel_type: str, channel_id: str = None, data: Dict = None
) -> TChannel: # type: ignore[type-var]
"""
Creates a channel object
:param channel_type: the channel type
:param channel_id: the id of the channel
:param data: additional data, ie: {"members":[id1, id2, ...]}
:return: Channel
"""
pass
@abc.abstractmethod
def delete_channels(
self, cids: Iterable[str], **options: Any
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Deletes multiple channels. This is an asynchronous operation and the returned value is a task Id.
You can use `get_task` method to check the status of the task.
"""
pass
@abc.abstractmethod
def list_commands(self) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Returns a list of commands.
By using custom commands, you can receive all messages sent using a specific slash command,
eg. /ticket, in your application. When configured, every slash command message happening
in a Stream Chat application will propagate to an endpoint via an HTTP POST request.
"""
pass
@abc.abstractmethod
def create_command(
self, data: Dict
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Creates a command.
By using custom commands, you can receive all messages sent using a specific slash command,
eg. /ticket, in your application. When configured, every slash command message happening
in a Stream Chat application will propagate to an endpoint via an HTTP POST request.
"""
pass
@abc.abstractmethod
def delete_command(
self, name: str
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Deletes a command.
By using custom commands, you can receive all messages sent using a specific slash command,
eg. /ticket, in your application. When configured, every slash command message happening
in a Stream Chat application will propagate to an endpoint via an HTTP POST request.
"""
pass
@abc.abstractmethod
def get_command(
self, name: str
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Returns a command.
By using custom commands, you can receive all messages sent using a specific slash command,
eg. /ticket, in your application. When configured, every slash command message happening
in a Stream Chat application will propagate to an endpoint via an HTTP POST request.
"""
pass
@abc.abstractmethod
def update_command(
self, name: str, **settings: Any
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Updates a command.
By using custom commands, you can receive all messages sent using a specific slash command,
eg. /ticket, in your application. When configured, every slash command message happening
in a Stream Chat application will propagate to an endpoint via an HTTP POST request.
"""
pass
@abc.abstractmethod
def add_device(
self,
device_id: str,
push_provider: str,
user_id: str,
push_provider_name: str = None,
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Add a device to a user
:param device_id: the id of the device
:param push_provider: the push provider used (apn or firebase)
:param user_id: the id of the user
:return:
"""
pass
@abc.abstractmethod
def delete_device(
self, device_id: str, user_id: str
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Delete a device for a user
:param device_id: the id of the device
:param user_id: the id of the user
:return:
"""
pass
@abc.abstractmethod
def get_devices(
self, user_id: str
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Get the list of devices for a user
:param user_id: the id of the user
:return: list of devices
"""
pass
@abc.abstractmethod
def get_rate_limits(
self,
server_side: bool = False,
android: bool = False,
ios: bool = False,
web: bool = False,
endpoints: Iterable[str] = None,
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Get rate limit quotas and usage.
If no params are toggled, all limits for all endpoints are returned.
:param server_side: if true, show server_side limits.
:param android: if true, show android limits.
:param ios: if true, show ios limits.
:param web: if true, show web limits.
:param endpoints: restrict returned limits to the given list of endpoints.
"""
pass
@abc.abstractmethod
def search(
self,
filter_conditions: Dict,
query: Union[str, Dict],
sort: List[Dict] = None,
**options: Any,
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Searches for messages.
You can enable and/or disable the search indexing on a per channel
type through the Stream Dashboard.
"""
pass
@abc.abstractmethod
def send_file(
self, uri: str, url: str, name: str, user: Dict, content_type: str = None
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Uploads a file.
This functionality defaults to using the Stream CDN. If you would like, you can
easily change the logic to upload to your own CDN of choice.
"""
pass
@abc.abstractmethod
def create_blocklist(
self, name: str, words: Iterable[str], type: str = "word"
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Create a blocklist
:param name: the name of the blocklist
:param words: list of blocked words
:param type: blocklist type
:return:
"""
pass
@abc.abstractmethod
def list_blocklists(self) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
List blocklists
:return: list of blocklists
"""
pass
@abc.abstractmethod
def get_blocklist(
self, name: str
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""Get a blocklist by name
:param name: the name of the blocklist
:return: blocklist dict representation
"""
pass
@abc.abstractmethod
def update_blocklist(
self, name: str, words: Iterable[str]
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Update a blocklist
:param name: the name of the blocklist
:param words: the list of blocked words (replaces the current list)
:return:
"""
pass
@abc.abstractmethod
def delete_blocklist(
self, name: str
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""Delete a blocklist by name
:param: the name of the blocklist
:return:
"""
pass
@abc.abstractmethod
def check_push(
self, push_data: Dict
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Check push notification settings
:param push_data: Test data for testing push notification settings
:return:
"""
pass
@abc.abstractmethod
def check_sqs(
self, sqs_key: str = None, sqs_secret: str = None, sqs_url: str = None
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Check SQS Push settings
When no parameters are given, the current SQS app settings are used
:param sqs_key: AWS access key
:param sqs_secret: AWS secret key
:param sqs_url: URL to SQS queue
:return:
"""
pass
@abc.abstractmethod
def get_permission(
self, name: str
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Get the definition for a permission
:param name: Name of the permission
"""
pass
@abc.abstractmethod
def create_permission(
self, permission: Dict
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Create a custom permission
:param permission: Definition of the permission
"""
pass
@abc.abstractmethod
def update_permission(
self, name: str, permission: Dict
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Update a custom permission
:param name: Name of the permission
:param permission: New definition of the permission
"""
pass
@abc.abstractmethod
def delete_permission(
self, name: str
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Delete a custom permission
:param name: Name of the permission
"""
pass
@abc.abstractmethod
def list_permissions(self) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
List all permissions of the app
"""
pass
@abc.abstractmethod
def create_role(
self, name: str
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Create a custom role
:param name: Name of the role
"""
pass
@abc.abstractmethod
def delete_role(
self, name: str
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Delete a custom role
:param name: Name of the role
"""
pass
@abc.abstractmethod
def list_roles(self) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
List all roles of the app
"""
pass
@abc.abstractmethod
def segment(
self,
segment_type: SegmentType,
segment_id: Optional[str],
data: Optional[SegmentData],
) -> TSegment: # type: ignore[type-var]
"""
Creates a channel object
:param segment_type: the segment type
:param segment_id: the id of the segment
:param data: the segment data, ie: {"members":[id1, id2, ...]}
:return: Segment
"""
pass
@abc.abstractmethod
def create_segment(
self,
segment_type: SegmentType,
segment_id: Optional[str],
data: Optional[SegmentData] = None,
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Create a segment
"""
pass
@abc.abstractmethod
def get_segment(
self, segment_id: str
) -> Union[StreamResponse, Awaitable[StreamResponse]]:
"""
Query segments
"""
pass
@abc.abstractmethod
def query_segments(
self,