Compare commits
2 Commits
a1d76d3bad
...
4a65d8d07d
Author | SHA1 | Date |
---|---|---|
dymik739 | 4a65d8d07d | |
dymik739 | eb51a5d2ee |
9
main.py
9
main.py
|
@ -155,6 +155,7 @@ class ModuleControlUnit:
|
||||||
# synchronous message processor
|
# synchronous message processor
|
||||||
def queue_processor():
|
def queue_processor():
|
||||||
while True:
|
while True:
|
||||||
|
try:
|
||||||
if len(message_queue) > 0:
|
if len(message_queue) > 0:
|
||||||
msg = message_queue[0]
|
msg = message_queue[0]
|
||||||
print("[DEBUG] queue_processor: {}".format(msg)) # debug
|
print("[DEBUG] queue_processor: {}".format(msg)) # debug
|
||||||
|
@ -189,6 +190,14 @@ def queue_processor():
|
||||||
break
|
break
|
||||||
else:
|
else:
|
||||||
time.sleep(1)
|
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