-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathUsing Filters.xml
85 lines (83 loc) · 4.14 KB
/
Using Filters.xml
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
<page>
<h1>Using Filters</h1>
<text>
So far we’ve seen <docs-ref link="/PyTgCalls/Decorators">how to register a decorator</docs-ref> function that executes every time an update comes from the server,
but there’s much more than that to come.
Here we’ll discuss <docs-ref link="/PyTgCalls/Filters">filters</docs-ref>. Filters enable a fine-grain control over what kind of updates are allowed or
not to be passed in your callback functions, based on their inner details.
</text>
<separator/>
<h2>Single Filters</h2>
<text>Let’s start right away with a simple example:</text>
<list>
<item>
<text>
This example will show you how to only handle updates that are an Incoming Call
and ignore any other update. Filters are passed as the first argument of the decorator:
<syntax-highlight>
from pytgcalls import filters
from pytgcalls.types import ChatUpdate
...
@pytgcalls.on_update(filters.chat_update(ChatUpdate.Status.INCOMING_CALL))
def on_incoming_call(client, update):
print("Incoming call!", update)
</syntax-highlight>
</text>
</item>
<item>
<text>
or, without decorators. Here filters are passed as the second argument of the add_handler function;
the first is the callback function itself:
<syntax-highlight>
from pytgcalls import filters
from pytgcalls.types import ChatUpdate
...
def on_incoming_call(client, update):
print("Incoming call!", update)
pytgcalls.add_handler(on_incoming_call, filters.chat_update(ChatUpdate.Status.INCOMING_CALL))
</syntax-highlight>
</text>
</item>
</list>
<h2>Combining Filters</h2>
<text>
Filters can be used in a more advanced way by inverting and combining more filters together using bitwise operators <code>~</code>, <code>&</code> and <code>|</code>:
<list>
<item>
<item>Use <code>~</code> to invert a filter (behaves like the <code>not</code> operator).</item>
</item>
<item>
<item>Use <code>&</code> and <code>|</code> to combine filters together (behaves like the <code>and</code> and <code>or</code> operators).</item>
</item>
</list>
Here are some examples:
<list>
<item>
<text>
This example will show you how to only handle updates that are <b>left</b> updates from a specific <b>chat</b> and ignore any other update:
<syntax-highlight>
from pytgcalls import filters
from pytgcalls.types import ChatUpdate
...
@pytgcalls.on_update(~filters.chat_update(ChatUpdate.Status.LEFT_GROUP) & filters.chat(1234567890))
def on_incoming_voice_call(client, update):
print("Left chat!", update)
</syntax-highlight>
</text>
</item>
<item>
<text>
This example will show you how to only handle updates that are <b>left</b> updates or <b>incoming call</b> updates and from a specific <b>chat</b>:
<syntax-highlight>
from pytgcalls import filters
from pytgcalls.types import ChatUpdate
...
@pytgcalls.on_update(filters.chat(1234567890) & (filters.chat_update(ChatUpdate.Status.LEFT_GROUP) | filters.chat_update(ChatUpdate.Status.INCOMING_CALL)))
def on_incoming_voice_call(client, update):
print("Incoming voice call or left chat!", update)
</syntax-highlight>
</text>
</item>
</list>
</text>
</page>