From 66ac61ef8278c4941500267bd213104843f1cdb1 Mon Sep 17 00:00:00 2001 From: href Date: Tue, 7 Sep 2021 05:28:50 +0200 Subject: alcoolog: fix ets --- lib/lsg_irc/link_plugin/redacted.ex | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 lib/lsg_irc/link_plugin/redacted.ex (limited to 'lib/lsg_irc/link_plugin') diff --git a/lib/lsg_irc/link_plugin/redacted.ex b/lib/lsg_irc/link_plugin/redacted.ex new file mode 100644 index 0000000..2e92b4a --- /dev/null +++ b/lib/lsg_irc/link_plugin/redacted.ex @@ -0,0 +1,18 @@ +defmodule LSG.IRC.LinkPlugin.Redacted do + @behaviour LSG.IRC.LinkPlugin + + @impl true + def match(uri = %URI{host: "redacted.ch", path: "/torrent.php", query: query = "id="<>id}, _opts) do + %{"id" => id} = URI.decode_query(id) + {true, %{torrent: id}} + end + + def match(_, _), do: false + + @impl true + def post_match(_, _, _, _), do: false + + def expand(_uri, %{torrent: id}, _opts) do + end + +end -- cgit v1.2.3