diff options
author | Jordan Bracco <href@random.sh> | 2022-12-20 02:19:42 +0000 |
---|---|---|
committer | Jordan Bracco <href@random.sh> | 2022-12-20 19:29:41 +0100 |
commit | 9958e90eb5eb5a2cc171c40860745e95a96bd429 (patch) | |
tree | b49cdb1d0041b9c0a81a14950d38c0203896f527 /lib/plugins/link/redacted.ex | |
parent | Rename to Nola (diff) |
Actually do not prefix folders with nola_ refs T77
Diffstat (limited to 'lib/plugins/link/redacted.ex')
-rw-r--r-- | lib/plugins/link/redacted.ex | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/plugins/link/redacted.ex b/lib/plugins/link/redacted.ex new file mode 100644 index 0000000..a7cfe74 --- /dev/null +++ b/lib/plugins/link/redacted.ex @@ -0,0 +1,18 @@ +defmodule Nola.Plugins.Link.Redacted do + @behaviour Nola.Plugins.Link + + @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 |