-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebhook.py
72 lines (59 loc) · 1.96 KB
/
webhook.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
import argparse
import logging
import requests
import telegram
logging.basicConfig(
level=logging.INFO,
format="[%(asctime)s] %(levelname)s - %(message)s",
)
logger = logging.getLogger(__name__)
def get_webhook(token):
current_url = telegram.Bot(token=token).get_webhook_info()["url"]
logging.info(f'Current webhook url: {current_url or "is not set up"}')
return current_url
def set_webhook(token, url):
bot = telegram.Bot(token=token)
if url:
if not url.startswith("https://"):
return logger.error(f"URL '{url}' is not https!")
url = f"{url}/webhook/{token}"
logger.info(f"Setting up custom URL : {url}")
bot.set_webhook(url)
return bot.get_webhook_info()
try:
json = requests.get("http://localhost:4040/api/tunnels").json()
except requests.exceptions.ConnectionError:
logging.info("Failed to get ngrok tunnels. Is ngrok running?")
return
tunnel_url = ""
for tunnel in json["tunnels"]:
if tunnel["public_url"].startswith("https://"):
tunnel_url = tunnel["public_url"]
assert tunnel_url, "No HTTPS URL found!"
url = f"{tunnel_url}/webhook/{token}"
logger.info(f"Setting up local ngrok url: {url}")
bot.set_webhook(url)
return get_webhook(token)
if __name__ == "__main__":
parser = argparse.ArgumentParser(
description="Simple script to set the telegram bot webhook url"
)
parser.add_argument(
"--token", required=True, type=str, help="Telegram bot TOKEN"
)
parser.add_argument(
"--set",
const="local",
help="Set HTTPS Host. Defaults to running ngrok tunnel",
nargs="?",
type=str,
)
args = parser.parse_args()
if args.set:
set_webhook(
token=args.token, url=args.set if args.set != "local" else None
)
else:
logger.info("Getting webhook url...")
get_webhook(args.token)
logging.info("Done")