summaryrefslogtreecommitdiff
path: root/lib/plugins/say.ex
blob: 9bfe1bdc0846428de7ea42c422ed23580b64ef09 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
defmodule Nola.Plugins.Say do

  def irc_doc do
    """
    # say

    Say something...

    * **!say `<channel>` `<text>`** say something on `channel`
    * **!asay `<channel>` `<text>`** same but anonymously

    You must be a member of the channel.
    """
  end

  def start_link() do
    GenServer.start_link(__MODULE__, [], name: __MODULE__)
  end

  def init([]) do
    regopts = [type: __MODULE__]
    {:ok, _} = Registry.register(Nola.PubSub, "trigger:say", regopts)
    {:ok, _} = Registry.register(Nola.PubSub, "trigger:asay", regopts)
    {:ok, _} = Registry.register(Nola.PubSub, "messages:private", regopts)
    {:ok, nil}
  end

  def handle_info({:irc, :trigger, "say", m = %{trigger: %{type: :bang, args: [target | text]}}}, state) do
    text = Enum.join(text, " ")
    say_for(m.account, target, text, true)
    {:noreply, state}
   end

  def handle_info({:irc, :trigger, "asay", m = %{trigger: %{type: :bang, args: [target | text]}}}, state) do
    text = Enum.join(text, " ")
    say_for(m.account, target, text, false)
    {:noreply, state}
   end

  def handle_info({:irc, :text, m = %{text: "say "<>rest}}, state) do
    case String.split(rest, " ", parts: 2) do
      [target, text] -> say_for(m.account, target, text, true)
      _ -> nil
    end
    {:noreply, state}
  end

  def handle_info({:irc, :text, m = %{text: "asay "<>rest}}, state) do
    case String.split(rest, " ", parts: 2) do
      [target, text] -> say_for(m.account, target, text, false)
      _ -> nil
    end
    {:noreply, state}
  end

  def handle_info(_, state) do
    {:noreply, state}
  end

  defp say_for(account, target, text, with_nick?) do
    for {net, chan} <- Nola.Membership.of_account(account) do
      chan2 = String.replace(chan, "#", "")
      if (target == "#{net}/#{chan}" || target == "#{net}/#{chan2}" || target == chan || target == chan2) do
        if with_nick? do
          IRC.send_message_as(account, net, chan, text)
        else
          IRC.Connection.broadcast_message(net, chan, text)
        end
      end
    end
  end

end