Add Omnibot.Plugin.Base.on_connect/1 callback

This new callback gets called immediately upon connecting to the server.
It is automatically implemented as a no-op by default.

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
This commit is contained in:
2020-08-12 15:31:40 -07:00
parent 0f3edb52bc
commit a3e4a088b3
2 changed files with 14 additions and 1 deletions

View File

@@ -29,9 +29,16 @@ defmodule Omnibot.Irc do
def cfg(irc), do: GenServer.call(irc, :cfg)
defp route_msg(irc, cfg, :connect) do
handle_msg(irc, cfg.plugins, :connect)
end
defp route_msg(irc, cfg, msg) do
plugins = Config.channel_plugins(cfg, Msg.channel(msg))
handle_msg(irc, plugins, msg)
end
defp handle_msg(irc, plugins, msg) do
Task.Supervisor.async_stream_nolink(
Omnibot.RouterSupervisor,
plugins,
@@ -40,7 +47,6 @@ defmodule Omnibot.Irc do
timeout: 30_000,
on_timeout: :kill_task
) |> Stream.run()
end
## Server callbacks
@@ -57,6 +63,7 @@ defmodule Omnibot.Irc do
send_msg(self(), "USER", [cfg.user, "0", "*", cfg.real])
:inet.setopts(socket, active: true)
route_msg(self(), cfg, :connect)
{:ok, {socket, cfg}}
end