Add "template" support for first-greet to put the nickname into the greeting instead of only at the end

This commit is contained in:
Context 77
2024-08-03 00:46:13 +02:00
parent 2e55e97492
commit 2c01a0b7cb

View File

@@ -2,6 +2,8 @@ from FaustBot.Communication.Connection import Connection
from FaustBot.Modules.JoinObserverPrototype import JoinObserverPrototype
from FaustBot.Model.UserProvider import UserProvider
from time import sleep
class First_Greeter(JoinObserverPrototype):
"""
A Class only reacting to pings
@@ -20,12 +22,15 @@ class First_Greeter(JoinObserverPrototype):
self.first_greeting = greeting
def update_on_join(self, data, connection: Connection):
if data['channel'] == connection.details.get_channel():
if data['nick'].find("Guest") != -1:
if data["channel"] == connection.details.get_channel():
new_nick = data["nick"]
if (
new_nick.startswith("Guest")
or UserProvider().get_characters(new_nick) < 100
):
sleep(20)
connection.send_back(self.first_greeting + " " + data['nick'], data)
return
UProvider= UserProvider()
if(UProvider.get_characters(data['nick'])) < 100:
sleep(20)
connection.send_back(self.first_greeting + " " + data['nick'], data)
if "{NICK}" in self.first_greeting:
greeting = self.first_greeting.replace("{NICK}", new_nick)
else:
greeting = f"{self.first_greeting} {new_nick}"
connection.send_back(greeting, data)