min/bot.py

158 lines
4.2 KiB
Python
Raw Normal View History

2020-04-05 11:39:50 -04:00
#!/usr/bin/env python3
import asyncio, os, importlib, inspect
2020-04-05 11:39:50 -04:00
2021-01-30 21:05:34 -05:00
from irctokens import build, Line
from ircrobots import Bot as BaseBot
from ircrobots import Server as BaseServer
from ircrobots import ConnectionParams, SASLUserPass, SASLSCRAM
2021-05-22 16:51:55 -04:00
from auth import username, password, channel
2021-01-30 21:05:34 -05:00
import shared
2022-01-26 21:26:57 -05:00
2021-01-30 21:05:34 -05:00
def is_admin(func):
2022-01-26 21:26:57 -05:00
async def decorator(self, channel, nick, msg):
if (
nick.lower() in self.users
and self.users[nick.lower()].account in self.admins
):
await func(self, channel, nick, msg)
2021-01-30 21:05:34 -05:00
else:
2022-01-26 21:26:57 -05:00
await message(
self, "core", channel, "you do not have permission to do that"
)
2021-01-30 21:05:34 -05:00
return decorator
2022-01-26 21:26:57 -05:00
# def is_chanop(func):
2021-01-30 21:05:34 -05:00
def command(commandname):
def decorator(func):
shared.commands[commandname] = func
return func
2022-01-26 21:26:57 -05:00
2021-01-30 21:05:34 -05:00
return decorator
2022-01-26 21:26:57 -05:00
2021-01-30 21:05:34 -05:00
def listener(listenername):
def decorator(func):
shared.listeners.append((listenername, func))
return func
2022-01-26 21:26:57 -05:00
2021-01-30 21:05:34 -05:00
return decorator
2022-01-26 21:26:57 -05:00
2021-01-30 21:05:34 -05:00
def rawm(rname):
def decorator(func):
shared.rawm[rname] = func
return func
2022-01-26 21:26:57 -05:00
return decorator
2021-01-30 21:05:34 -05:00
2022-01-26 21:26:57 -05:00
async def message(self, channel, msg):
modname = os.path.splittext(os.path.basename(inspect.stack()[1].filename))[0]
2022-01-26 21:26:57 -05:00
await self.send(build("PRIVMSG", [channel, f"[\x036{modname}\x0f] {msg}"]))
2021-01-30 21:05:34 -05:00
class Server(BaseServer):
async def line_read(self, line: Line):
2022-01-26 21:26:57 -05:00
if "on_" + line.command.lower() in dir(self):
asyncio.create_task(
self.__getattribute__("on_" + line.command.lower())(line)
)
2021-01-30 21:05:34 -05:00
for listener in shared.listeners:
if listener[0] == line.command:
2022-01-26 21:26:57 -05:00
asyncio.create_task(listener[1](self, line))
2021-05-22 16:51:55 -04:00
def line_preread(self, line: Line):
print(f"{self.name} < {line.format()}")
2022-01-26 21:26:57 -05:00
2021-05-22 16:51:55 -04:00
def line_presend(self, line: Line):
2021-01-30 21:05:34 -05:00
print(f"{self.name} > {line.format()}")
2020-04-19 19:25:07 -04:00
2021-01-30 21:05:34 -05:00
async def on_001(self, line):
asyncio.create_task(self.load_modules())
2020-04-22 22:14:17 -04:00
2021-01-30 21:05:34 -05:00
async def load_modules(self):
2022-01-26 21:26:57 -05:00
for i in [s for s in os.listdir("modules") if ".py" in s and ".swp" not in s]:
2021-01-30 21:05:34 -05:00
i = i[:-3]
2022-01-26 21:26:57 -05:00
m = importlib.import_module("modules." + i)
2021-01-30 21:05:34 -05:00
asyncio.create_task(m.init(self))
shared.modules[i] = m
2020-04-05 18:25:19 -04:00
2021-01-30 21:05:34 -05:00
# depricated, to support old modules
2022-01-26 21:26:57 -05:00
async def message(self, channel, msg):
await self.send(build("PRIVMSG", [channel, msg]))
2020-04-05 11:39:50 -04:00
2021-01-30 21:05:34 -05:00
async def on_privmsg(self, line):
2022-01-26 21:26:57 -05:00
if line.tags and "batch" in line.tags and line.tags["batch"] == "1":
2021-01-30 21:05:34 -05:00
return
channel = line.params[0]
2022-01-26 21:26:57 -05:00
nick = line.source.split("!")[0]
2021-01-30 21:05:34 -05:00
msg = line.params[1]
if nick == self.nickname:
return
2021-01-30 21:05:34 -05:00
if channel == self.nickname:
channel = nick
2022-01-26 21:26:57 -05:00
await self.handle_rawm(channel, nick, msg)
await self.handle_command(channel, nick, msg)
async def handle_rawm(self, channel, nick, msg):
2021-01-30 21:05:34 -05:00
for i in shared.rawm:
2022-01-26 21:26:57 -05:00
await shared.rawm[i](self, channel, nick, msg)
async def handle_command(self, channel, nick, msg):
if msg[: len(shared.prefix)] == shared.prefix:
msg = msg[len(shared.prefix) :]
cmd = msg.split(" ")[0]
msg = msg[len(cmd) + 1 :]
2021-01-30 21:05:34 -05:00
if len(cmd) < 1:
return
if cmd in shared.commands:
2022-01-26 21:26:57 -05:00
await shared.commands[cmd](self, channel, nick, msg)
2021-01-30 21:05:34 -05:00
return
results = [i for i in shared.commands if i.startswith(cmd)]
if len(results) == 1:
2022-01-26 21:26:57 -05:00
await shared.commands[results[0]](self, channel, nick, msg)
2021-01-30 21:05:34 -05:00
class Bot(BaseBot):
def create_server(self, name: str):
return Server(self, name)
async def main():
bot = Bot()
sasl_params = SASLUserPass(username, password)
2022-01-26 21:26:57 -05:00
params = ConnectionParams(
"min",
2022-01-26 21:26:57 -05:00
host="irc.libera.chat",
port=6697,
tls=True,
sasl=sasl_params,
autojoin=channel,
)
2021-01-30 21:05:34 -05:00
await bot.add_server("libera", params)
2022-01-26 21:26:57 -05:00
params = ConnectionParams(
"min", host="manonet.lumey.dev", port=6697, tls=True, autojoin=["#manonet"]
)
2021-05-22 16:51:55 -04:00
2021-07-12 11:52:09 -04:00
await bot.add_server("manonet", params)
2021-01-30 21:05:34 -05:00
await bot.run()
2020-04-05 11:39:50 -04:00
2022-01-26 21:26:57 -05:00
2020-04-05 11:39:50 -04:00
if __name__ == "__main__":
2021-01-30 21:05:34 -05:00
asyncio.run(main())