add a channel, and override nicklen limits for bridges

This commit is contained in:
Firepup Sixfifty 2023-11-17 20:48:30 -06:00
parent 81931e5d2b
commit 9bf199bb48
Signed by: Firepup650
GPG key ID: 7C92E2ABBBFAB9BA
2 changed files with 10 additions and 2 deletions

View file

@ -34,7 +34,7 @@ servers: dict[str, dict[str, Any]] = {
},
"backupbox": {
"address": "172.23.11.5",
"channels": {"#default": 0, "#botrebellion": 0},
"channels": {"#default": 0, "#botrebellion": 0, "#main/replirc": 0},
"admins": [],
"hosts": ["172.20.171.225", "169.254.253.107"],
},

View file

@ -45,15 +45,20 @@ def PRIVMSG(bot: bare.bot, msg: str) -> tuple[Union[None, str], Union[None, str]
# Format of ":[Nick]![ident]@[host|vhost] PRIVMSG [channel] :[message]”
name = msg.split("!", 1)[0][1:]
host = msg.split("@", 1)[1].split(" ", 1)[0]
bridge = False
if (
(name.startswith("saxjax") and bot.server == "efnet")
or (name == "ReplIRC" and bot.server == "replirc")
or (name == "FirePyLink_" and bot.server == "ircnow")
or (name == "FirePyLink" and bot.server == "backupbox")
):
if "<" in msg and ">" in msg:
bridge = True
Nname = msg.split("<", 1)[1].split(">", 1)[0].strip()
if name == "ReplIRC":
name = Nname[4:]
elif name in ["FirePyLink_", "FirePyLink"]:
name = Nname.lstrip("@%~+")[3:-1]
else:
name = Nname
message = msg.split(">", 1)[1].strip()
@ -69,7 +74,10 @@ def PRIVMSG(bot: bare.bot, msg: str) -> tuple[Union[None, str], Union[None, str]
)
if len(name) > bot.nicklen:
bot.log(f"Name too long ({len(name)} > {bot.nicklen})")
return None, None
if not bridge:
return None, None
else:
bot.log("This user is a bridge, overriding")
elif chan not in bot.channels:
if not chan == bot.nick:
bot.log(