summaryrefslogblamecommitdiff
path: root/lib/lsg_irc/connection_handler.ex
blob: f3bb1d4ed98e0019d4060498690881493a2466f9 (plain) (tree)



































                                                                                   
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