summaryrefslogtreecommitdiff
path: root/lib/nola_plugins/admin_handler.ex
diff options
context:
space:
mode:
Diffstat (limited to 'lib/nola_plugins/admin_handler.ex')
-rw-r--r--lib/nola_plugins/admin_handler.ex41
1 files changed, 0 insertions, 41 deletions
diff --git a/lib/nola_plugins/admin_handler.ex b/lib/nola_plugins/admin_handler.ex
deleted file mode 100644
index 9a5d557..0000000
--- a/lib/nola_plugins/admin_handler.ex
+++ /dev/null
@@ -1,41 +0,0 @@
-defmodule Nola.IRC.AdminHandler do
- @moduledoc """
- # admin
-
- !op
- op; requiert admin
- """
-
- def irc_doc, do: nil
-
- def start_link(client) do
- GenServer.start_link(__MODULE__, [client])
- end
-
- def init([client]) do
- ExIRC.Client.add_handler client, self
- :ok = IRC.register("op")
- {:ok, client}
- end
-
- def handle_info({:irc, :trigger, "op", m = %IRC.Message{trigger: %IRC.Trigger{type: :bang}, sender: sender}}, client) do
- if IRC.admin?(sender) do
- m.replyfun.({:mode, "+o"})
- else
- m.replyfun.({:kick, "non"})
- end
- {:noreply, client}
- end
-
- def handle_info({:joined, chan, sender}, client) do
- if IRC.admin?(sender) do
- ExIRC.Client.mode(client, chan, "+o", sender.nick)
- end
- {:noreply, client}
- end
-
- def handle_info(msg, client) do
- {:noreply, client}
- end
-
-end