summaryrefslogtreecommitdiff
path: root/lib/lsg_irc/connection_handler.ex
blob: f3bb1d4ed98e0019d4060498690881493a2466f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
defmodule LSG.IRC.ConnectionHandler do
  defmodule State do
    defstruct host: "irc.quakenet.org",
              port: 6667,
              pass: "",
              nick: "bot115ans",
              user: "115ans",
              name: "115ans.net",
              client: nil
  end

  def start_link(client) do
    GenServer.start_link(__MODULE__, [%State{client: client}])
  end

  def init([state]) do
    ExIRC.Client.add_handler state.client, self
    ExIRC.Client.connect! state.client, state.host, state.port
    {:ok, state}
  end

  def handle_info({:connected, server, port}, state) do
    debug "Connected to #{server}:#{port}"
    ExIRC.Client.logon state.client, state.pass, state.nick, state.user, state.name
    {:noreply, state}
  end

  # Catch-all for messages you don't care about
  def handle_info(msg, state) do
    {:noreply, state}
  end

  defp debug(msg) do
    IO.puts IO.ANSI.yellow() <> msg <> IO.ANSI.reset()
  end
end