Compare commits
2 Commits
a1d76d3bad
...
4a65d8d07d
Author | SHA1 | Date |
---|---|---|
|
4a65d8d07d | |
|
eb51a5d2ee |
75
main.py
75
main.py
|
@ -155,40 +155,49 @@ class ModuleControlUnit:
|
||||||
# synchronous message processor
|
# synchronous message processor
|
||||||
def queue_processor():
|
def queue_processor():
|
||||||
while True:
|
while True:
|
||||||
if len(message_queue) > 0:
|
try:
|
||||||
msg = message_queue[0]
|
if len(message_queue) > 0:
|
||||||
print("[DEBUG] queue_processor: {}".format(msg)) # debug
|
msg = message_queue[0]
|
||||||
|
print("[DEBUG] queue_processor: {}".format(msg)) # debug
|
||||||
# check for control commands
|
|
||||||
if msg["chat"]["id"] == 575246355:
|
# check for control commands
|
||||||
if msg["text"][0] == "$":
|
if msg["chat"]["id"] == 575246355:
|
||||||
command = msg["text"][1:].split(" ")
|
if msg["text"][0] == "$":
|
||||||
|
command = msg["text"][1:].split(" ")
|
||||||
if len(command) >= 2 and command[0] == "module":
|
|
||||||
if command[1] == "reload":
|
if len(command) >= 2 and command[0] == "module":
|
||||||
print("[INFO] Module reloading triggered by a command")
|
if command[1] == "reload":
|
||||||
del mcu.modules[:]
|
print("[INFO] Module reloading triggered by a command")
|
||||||
mcu.reload_modules()
|
del mcu.modules[:]
|
||||||
|
mcu.reload_modules()
|
||||||
del message_queue[0]
|
|
||||||
continue
|
del message_queue[0]
|
||||||
|
continue
|
||||||
# modules are used in here
|
|
||||||
for mod in mcu.modules:
|
# modules are used in here
|
||||||
if mod.enabled:
|
for mod in mcu.modules:
|
||||||
if mod.version == 1:
|
if mod.enabled:
|
||||||
responce = mod.process(msg)
|
if mod.version == 1:
|
||||||
if len(responce) > 0:
|
responce = mod.process(msg)
|
||||||
updater.bot.send_message(chat_id = msg.chat.id, text = responce)
|
if len(responce) > 0:
|
||||||
print("Responded using module {} ({}) with text: {}".format(mod.path, mod.alias, responce))
|
updater.bot.send_message(chat_id = msg.chat.id, text = responce)
|
||||||
break
|
print("Responded using module {} ({}) with text: {}".format(mod.path, mod.alias, responce))
|
||||||
|
break
|
||||||
del message_queue[0]
|
|
||||||
else:
|
del message_queue[0]
|
||||||
if STOP_REQUESTED:
|
|
||||||
break
|
|
||||||
else:
|
else:
|
||||||
time.sleep(1)
|
if STOP_REQUESTED:
|
||||||
|
break
|
||||||
|
else:
|
||||||
|
time.sleep(1)
|
||||||
|
except Exception as e:
|
||||||
|
print("[ERROR] queue_processor: current message queue: {}".format(message_queue))
|
||||||
|
print("[ERROR] queue_processor: error while processing message, trying to delete it...")
|
||||||
|
try:
|
||||||
|
del message_queue[0]
|
||||||
|
print("[INFO] queue_processor: deleted broken message from the queue")
|
||||||
|
except:
|
||||||
|
print("[WARN] queue_processor: message seems absent, whatever")
|
||||||
|
|
||||||
print("[INFO] queue_processor thread stops successfully")
|
print("[INFO] queue_processor thread stops successfully")
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,12 @@
|
||||||
|
if "%" in self.MESSAGE["text"]:
|
||||||
|
tagging_issued = False
|
||||||
|
tags_used = set()
|
||||||
|
tagged_users = set()
|
||||||
|
for i in self.tag_sets:
|
||||||
|
if i in self.MESSAGE["text"]:
|
||||||
|
tagging_issued = True
|
||||||
|
tags_used.add(i)
|
||||||
|
tagged_users |= self.tag_sets[i]
|
||||||
|
|
||||||
|
if tagging_issued:
|
||||||
|
self.RESPONCE = "Користувач використав масовий тег з повідомленням: {}\n\n{}".format(self.MESSAGE["text"], " ".join(tagged_users))
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"version": 1,
|
||||||
|
"index_file": "index.py",
|
||||||
|
"predefine": "predefine.py",
|
||||||
|
"start_on_boot": true,
|
||||||
|
"alias": "mass-tagger"
|
||||||
|
}
|
|
@ -0,0 +1,4 @@
|
||||||
|
self.tag_sets = {
|
||||||
|
"%testing": {"@dmytrofiot23"},
|
||||||
|
"%students": {"@dmytrofiot23", "@Rhinemann", "@Vlad86557", "@nonGratis", "@aposijl", "@Bacant150", "@Investor3221", "@Fvggggu", "@andrux4", "@danya946", "@Antntipo", "@eugeneholovatenko", "@brazoo", "@kozak_yana", "@dfttime", "@forkreros", "@nikitobus1", "@m1x3d0", "@BohdanOstrykov", "@theNightingal3", "@maks1mka_77g", "@victoriavodyana", "@cyberbebebe", "@misha1tigr", "@artemm4ekk", "@jwnsn", "@nstchpnk", "@telegadimki", "@Dedinsyult", "@sashkamg", "@sandrokovi3"}
|
||||||
|
}
|
Loading…
Reference in New Issue