-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
timerbot.py
105 lines (81 loc) · 3.08 KB
/
timerbot.py
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
#!/usr/bin/env python
#
# Semaphore: A simple (rule-based) bot library for Signal Private Messenger.
# Copyright (C) 2020-2022 Lazlo Westerhof <[email protected]>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
Signal Bot example, sends an alert after a specified time.
"""
import contextlib
import io
import os
import re
from heapq import heappop, heappush
from time import time
from semaphore import Bot, ChatContext, StopPropagation
async def alarm(ctx: ChatContext) -> None:
with contextlib.suppress(IndexError):
del ctx.data['jobs'][0]
await ctx.message.reply("Beep! Beep! Beep!")
async def set_timer(ctx: ChatContext) -> None:
try:
delta = int(ctx.match.group(1))
except ValueError:
await ctx.message.reply("Usage: !timer <seconds>")
return
alarm_time = time() + delta
job = await ctx.job_queue.run_once(alarm_time, alarm, ctx)
heap = ctx.data.setdefault("jobs", [])
heappush(heap, (alarm_time, job))
await ctx.message.reply("Timer set!")
async def list_timers(ctx: ChatContext) -> None:
jobs = ctx.data.setdefault("jobs", [])
if not jobs:
await ctx.message.reply("No timers scheduled.")
raise StopPropagation
menu = io.StringIO()
now = time()
for job_id, (timestamp, _job) in enumerate(jobs, 1):
menu.write(f"{job_id}: In {timestamp - now:.0f} seconds\n")
menu.write("\nUse !timer unset <id> to unset a specific timer.")
await ctx.message.reply(menu.getvalue())
raise StopPropagation
async def unset_timer(ctx: ChatContext) -> None:
jobs = ctx.data.setdefault("jobs", [])
try:
job_id = int(ctx.match.group(1)) - 1
if job_id not in range(len(jobs)):
raise ValueError
except ValueError:
await ctx.message.reply(
"Usage: !timer unset <timer id>. "
"Get a list of them using !timer list."
)
raise StopPropagation
del jobs[job_id]
await ctx.message.reply("Timer unset!")
raise StopPropagation
async def main() -> None:
"""Start the bot."""
# Connect the bot to number.
async with Bot(os.environ["SIGNAL_PHONE_NUMBER"]) as bot:
bot.register_handler(re.compile("!timer unset (.*)"), unset_timer)
bot.register_handler(re.compile("!timer list"), list_timers)
bot.register_handler(re.compile("!timer (.*)"), set_timer)
# Run the bot until you press Ctrl-C.
await bot.start()
if __name__ == '__main__':
import anyio
anyio.run(main)