summaryrefslogtreecommitdiff
path: root/lib/nola_plugins/correction.ex
diff options
context:
space:
mode:
authorJordan Bracco <href@random.sh>2022-12-20 02:13:47 +0000
committerJordan Bracco <href@random.sh>2022-12-20 19:29:41 +0100
commit70b9bba56f5319361ce5a7df5c489b9c0d6905ce (patch)
treef9b4438965f4c5e3e1f3a6129904cbb9a37047f2 /lib/nola_plugins/correction.ex
parentUpdate repo URL, refs T77. (diff)
Rename to Nola
Summary: Nola rename cont. pt. 2. Refs T77. `find lib -name "*.ex" -type f | xargs sed -i '' 's/LSG/Nola/g'` Nola rename, cont. pt. 3. Refs T77. `s/:lsg/:nola/g` Nola rename, cont. pt. 4. Refs T77. Nola rename, cont. pt. 5. Refs T77. Configs. find config -type f | xargs sed -i '' 's/LSG/Nola/g' find config -type f | xargs sed -i '' 's/lsg/nola/g' BREAKING CHANGE: Config keys switch from `:lsg` to `:nola` Nola rename, the end. pt 6. Refs T77. Nola rename: The Big Move, Refs T77 Update repo URL, refs T77. Nola rename: Nola.Plugins, refs T77 Maniphest Tasks: T77 Differential Revision: https://phab.random.sh/D3
Diffstat (limited to 'lib/nola_plugins/correction.ex')
-rw-r--r--lib/nola_plugins/correction.ex59
1 files changed, 59 insertions, 0 deletions
diff --git a/lib/nola_plugins/correction.ex b/lib/nola_plugins/correction.ex
new file mode 100644
index 0000000..03968c8
--- /dev/null
+++ b/lib/nola_plugins/correction.ex
@@ -0,0 +1,59 @@
+defmodule Nola.Plugins.Correction do
+ @moduledoc """
+ # correction
+
+ * `s/pattern/replace` replace `pattern` by `replace` in the last matching message
+ """
+
+ def irc_doc, do: @moduledoc
+ def start_link() do
+ GenServer.start_link(__MODULE__, [], name: __MODULE__)
+ end
+
+ def init(_) do
+ {:ok, _} = Registry.register(IRC.PubSub, "messages", [plugin: __MODULE__])
+ {:ok, _} = Registry.register(IRC.PubSub, "triggers", [plugin: __MODULE__])
+ {:ok, %{}}
+ end
+
+ # Trigger fallback
+ def handle_info({:irc, :trigger, _, m = %IRC.Message{}}, state) do
+ {:noreply, correction(m, state)}
+ end
+
+ def handle_info({:irc, :text, m = %IRC.Message{}}, state) do
+ {:noreply, correction(m, state)}
+ end
+
+ def correction(m, state) do
+ history = Map.get(state, key(m), [])
+ if String.starts_with?(m.text, "s/") do
+ case String.split(m.text, "/") do
+ ["s", match, replace | _] ->
+ case Regex.compile(match) do
+ {:ok, reg} ->
+ repl = Enum.find(history, fn(m) -> Regex.match?(reg, m.text) end)
+ if repl do
+ new_text = String.replace(repl.text, reg, replace)
+ m.replyfun.("correction: <#{repl.sender.nick}> #{new_text}")
+ end
+ _ ->
+ m.replyfun.("correction: invalid regex")
+ end
+ _ -> m.replyfun.("correction: invalid regex format")
+ end
+ state
+ else
+ history = if length(history) > 100 do
+ {_, history} = List.pop_at(history, 99)
+ [m | history]
+ else
+ [m | history]
+ end
+ Map.put(state, key(m), history)
+ end
+ end
+
+ defp key(%{network: net, channel: chan}), do: "#{net}/#{chan}"
+
+end