mirror of
https://github.com/house-of-vanity/fesmoo_perdoliq.git
synced 2025-07-07 06:04:06 +00:00
95 lines
2.4 KiB
Python
95 lines
2.4 KiB
Python
![]() |
#!/usr/bin/env python3
|
||
|
# -*- coding: utf-8 -*-
|
||
|
"""Simple Bot to reply to Telegram messages.
|
||
|
This is built on the API wrapper, see echobot2.py to see the same example built
|
||
|
on the telegram.ext bot framework.
|
||
|
This program is dedicated to the public domain under the CC0 license.
|
||
|
"""
|
||
|
import os
|
||
|
import logging
|
||
|
import threading
|
||
|
import telegram
|
||
|
from telegram.error import NetworkError, Unauthorized
|
||
|
from time import sleep
|
||
|
try:
|
||
|
import tg_settings
|
||
|
except:
|
||
|
print("You have to create tg_settings.py. See tg_settings.py.example.")
|
||
|
os.exit(1)
|
||
|
try:
|
||
|
if os.environ["DRYRUN"]:
|
||
|
from dryrun import Perdoliq
|
||
|
except:
|
||
|
from main import Perdoliq
|
||
|
|
||
|
update_id = None
|
||
|
|
||
|
|
||
|
def main():
|
||
|
"""Run the bot."""
|
||
|
global update_id
|
||
|
# Telegram Bot Authorization Token
|
||
|
TOKEN = tg_settings.TG_TOKEN
|
||
|
bot = telegram.Bot(TOKEN)
|
||
|
|
||
|
# get the first pending update_id,
|
||
|
# this is so we can skip over it in case
|
||
|
# we get an "Unauthorized" exception.
|
||
|
try:
|
||
|
update_id = bot.get_updates()[0].update_id
|
||
|
except IndexError:
|
||
|
update_id = None
|
||
|
|
||
|
logging.basicConfig(level=logging.DEBUG)
|
||
|
while True:
|
||
|
try:
|
||
|
handle_update(bot)
|
||
|
except NetworkError:
|
||
|
sleep(1)
|
||
|
except Unauthorized:
|
||
|
# The user has removed or blocked the bot.
|
||
|
update_id += 1
|
||
|
|
||
|
|
||
|
def perdoliq(username, password, subj, test, acc, is_delayed):
|
||
|
try:
|
||
|
app = Perdoliq(username, password)
|
||
|
app.auth()
|
||
|
app.resolve(subj, test, acc, is_delayed=int(is_delayed))
|
||
|
except Exception as e:
|
||
|
return "Exception: " + str(e)
|
||
|
|
||
|
|
||
|
def list_test(username, password):
|
||
|
try:
|
||
|
app = Perdoliq(username, password)
|
||
|
app.auth()
|
||
|
return (app.get_tests())
|
||
|
except Exception as e:
|
||
|
return "Exception: " + str(e)
|
||
|
|
||
|
|
||
|
def handle_update(bot):
|
||
|
"""Echo the message the user sent."""
|
||
|
global update_id
|
||
|
# Request updates after the last update_id
|
||
|
for update in bot.get_updates(offset=update_id, timeout=10):
|
||
|
update_id = update.update_id + 1
|
||
|
|
||
|
if update.message:
|
||
|
# if there is and update, process it in threads
|
||
|
t = threading.Thread(target=do_action, args=(update,))
|
||
|
t.start()
|
||
|
|
||
|
def do_action(update):
|
||
|
try:
|
||
|
s = update.message.text.split()
|
||
|
except:
|
||
|
return 1
|
||
|
# if s[0] == '/resolve':
|
||
|
# return 0
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
main()
|
||
|
|