2015-10-06 13:06:23 +03:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# This is a simple echo bot using decorators and webhook with CherryPy
|
|
|
|
# It echoes any incoming text messages and does not use the polling method.
|
|
|
|
|
|
|
|
import logging
|
|
|
|
|
2018-08-17 12:54:26 +03:00
|
|
|
import cherrypy
|
|
|
|
|
|
|
|
import telebot
|
2015-10-06 13:06:23 +03:00
|
|
|
|
|
|
|
API_TOKEN = '<api_token>'
|
|
|
|
|
|
|
|
WEBHOOK_HOST = '<ip/host where the bot is running>'
|
|
|
|
WEBHOOK_PORT = 8443 # 443, 80, 88 or 8443 (port need to be 'open')
|
|
|
|
WEBHOOK_LISTEN = '0.0.0.0' # In some VPS you may need to put here the IP addr
|
|
|
|
|
|
|
|
WEBHOOK_SSL_CERT = './webhook_cert.pem' # Path to the ssl certificate
|
|
|
|
WEBHOOK_SSL_PRIV = './webhook_pkey.pem' # Path to the ssl private key
|
|
|
|
|
|
|
|
# Quick'n'dirty SSL certificate generation:
|
|
|
|
#
|
|
|
|
# openssl genrsa -out webhook_pkey.pem 2048
|
|
|
|
# openssl req -new -x509 -days 3650 -key webhook_pkey.pem -out webhook_cert.pem
|
|
|
|
#
|
|
|
|
# When asked for "Common Name (e.g. server FQDN or YOUR name)" you should reply
|
|
|
|
# with the same value in you put in WEBHOOK_HOST
|
|
|
|
|
|
|
|
WEBHOOK_URL_BASE = "https://%s:%s" % (WEBHOOK_HOST, WEBHOOK_PORT)
|
|
|
|
WEBHOOK_URL_PATH = "/%s/" % (API_TOKEN)
|
|
|
|
|
|
|
|
logger = telebot.logger
|
|
|
|
telebot.logger.setLevel(logging.INFO)
|
|
|
|
|
|
|
|
bot = telebot.TeleBot(API_TOKEN)
|
|
|
|
|
|
|
|
|
|
|
|
# WebhookServer, process webhook calls
|
|
|
|
class WebhookServer(object):
|
|
|
|
@cherrypy.expose
|
|
|
|
def index(self):
|
|
|
|
if 'content-length' in cherrypy.request.headers and \
|
|
|
|
'content-type' in cherrypy.request.headers and \
|
|
|
|
cherrypy.request.headers['content-type'] == 'application/json':
|
|
|
|
length = int(cherrypy.request.headers['content-length'])
|
2015-10-18 17:03:29 +03:00
|
|
|
json_string = cherrypy.request.body.read(length).decode("utf-8")
|
2015-10-06 13:06:23 +03:00
|
|
|
update = telebot.types.Update.de_json(json_string)
|
2016-05-20 17:40:22 +03:00
|
|
|
bot.process_new_updates([update])
|
2015-10-06 13:06:23 +03:00
|
|
|
return ''
|
|
|
|
else:
|
|
|
|
raise cherrypy.HTTPError(403)
|
|
|
|
|
|
|
|
|
|
|
|
# Handle '/start' and '/help'
|
|
|
|
@bot.message_handler(commands=['help', 'start'])
|
|
|
|
def send_welcome(message):
|
|
|
|
bot.reply_to(message,
|
|
|
|
("Hi there, I am EchoBot.\n"
|
|
|
|
"I am here to echo your kind words back to you."))
|
|
|
|
|
|
|
|
|
|
|
|
# Handle all other messages
|
|
|
|
@bot.message_handler(func=lambda message: True, content_types=['text'])
|
|
|
|
def echo_message(message):
|
|
|
|
bot.reply_to(message, message.text)
|
|
|
|
|
|
|
|
|
|
|
|
# Remove webhook, it fails sometimes the set if there is a previous webhook
|
|
|
|
bot.remove_webhook()
|
|
|
|
|
|
|
|
# Set webhook
|
2018-08-17 13:01:03 +03:00
|
|
|
bot.set_webhook(url=WEBHOOK_URL_BASE + WEBHOOK_URL_PATH,
|
2015-10-06 13:06:23 +03:00
|
|
|
certificate=open(WEBHOOK_SSL_CERT, 'r'))
|
|
|
|
|
2017-03-07 21:43:14 +03:00
|
|
|
# Disable CherryPy requests log
|
|
|
|
access_log = cherrypy.log.access_log
|
|
|
|
for handler in tuple(access_log.handlers):
|
|
|
|
access_log.removeHandler(handler)
|
|
|
|
|
2015-10-06 13:06:23 +03:00
|
|
|
# Start cherrypy server
|
|
|
|
cherrypy.config.update({
|
2018-08-17 13:01:03 +03:00
|
|
|
'server.socket_host' : WEBHOOK_LISTEN,
|
|
|
|
'server.socket_port' : WEBHOOK_PORT,
|
|
|
|
'server.ssl_module' : 'builtin',
|
2015-10-06 13:06:23 +03:00
|
|
|
'server.ssl_certificate': WEBHOOK_SSL_CERT,
|
|
|
|
'server.ssl_private_key': WEBHOOK_SSL_PRIV
|
|
|
|
})
|
|
|
|
|
|
|
|
cherrypy.quickstart(WebhookServer(), WEBHOOK_URL_PATH, {'/': {}})
|