remove trace

This commit is contained in:
Hemna 2022-12-02 14:00:17 -05:00
parent 547c326a09
commit 108ea07f60
2 changed files with 34 additions and 18 deletions

View File

@ -4,6 +4,7 @@ CHANGES
v0.1.2 v0.1.2
------ ------
* for v0.1.2
* for v0.1.1 * for v0.1.1
* Use the pbr version of the package as plugin version * Use the pbr version of the package as plugin version

View File

@ -3,7 +3,7 @@ import logging
import threading import threading
import time import time
from aprsd import messaging, objectstore, plugin, threads, trace from aprsd import messaging, objectstore, plugin, threads
from telegram.ext import Filters, MessageHandler, Updater from telegram.ext import Filters, MessageHandler, Updater
import aprsd_telegram_plugin import aprsd_telegram_plugin
@ -101,18 +101,29 @@ class TelegramChatPlugin(plugin.APRSDRegexCommandPluginBase):
# self.bot = telegram.Bot(token=token) # self.bot = telegram.Bot(token=token)
# LOG.info(self.bot.get_me()) # LOG.info(self.bot.get_me())
self.updater = Updater( LOG.info("Starting up Updater")
token=token, try:
use_context=True, self.updater = Updater(
persistence=False, token=token,
) use_context=True,
self.dispatcher = self.updater.dispatcher persistence=False,
self.dispatcher.add_handler( )
MessageHandler( except Exception as ex:
Filters.text & (~Filters.command), self.enabled = False
self.message_handler, LOG.exception(ex)
), LOG.info("Starting up Dispatcher")
)
try:
self.dispatcher = self.updater.dispatcher
self.dispatcher.add_handler(
MessageHandler(
Filters.text & (~Filters.command),
self.message_handler,
),
)
except Exception as ex:
self.enabled = False
LOG.exception(ex)
def message_handler(self, update, context): def message_handler(self, update, context):
"""This is called when a telegram users texts the bot.""" """This is called when a telegram users texts the bot."""
@ -145,9 +156,9 @@ class TelegramChatPlugin(plugin.APRSDRegexCommandPluginBase):
def create_threads(self): def create_threads(self):
if self.enabled: if self.enabled:
LOG.info("Starting TelegramThread")
return TelegramThread(self.config, self.updater) return TelegramThread(self.config, self.updater)
@trace.trace
def process(self, packet): def process(self, packet):
"""This is called when a received packet matches self.command_regex.""" """This is called when a received packet matches self.command_regex."""
LOG.info("TelegramChatPlugin Plugin") LOG.info("TelegramChatPlugin Plugin")
@ -205,10 +216,14 @@ class TelegramThread(threads.APRSDThread):
def loop(self): def loop(self):
"""We have to loop, so we can stop the thread upon CTRL-C""" """We have to loop, so we can stop the thread upon CTRL-C"""
self.updater.start_polling( try:
timeout=2, self.updater.start_polling(
drop_pending_updates=True, timeout=2,
) drop_pending_updates=True,
)
except Exception as ex:
LOG.exception(ex)
return False
# So we don't eat 100% CPU # So we don't eat 100% CPU
time.sleep(1) time.sleep(1)
# so we can continue looping # so we can continue looping