helpers: use AutoLinker to validate URIs as well as the other tests
This commit is contained in:
parent
d7a278a733
commit
9f3cb38012
2 changed files with 24 additions and 1 deletions
|
|
@ -12,7 +12,10 @@ defmodule Pleroma.Web.RichMedia.Helpers do
|
|||
defp validate_page_url(%URI{authority: nil}), do: :error
|
||||
defp validate_page_url(%URI{scheme: nil}), do: :error
|
||||
defp validate_page_url(%URI{}), do: :ok
|
||||
defp validate_page_url(page_url), do: URI.parse(page_url) |> validate_page_url
|
||||
|
||||
defp validate_page_url(page_url) do
|
||||
AutoLinker.Parser.is_url?(page_url, true) && URI.parse(page_url) |> validate_page_url
|
||||
end
|
||||
|
||||
def fetch_data_for_activity(%Activity{} = activity) do
|
||||
with true <- Pleroma.Config.get([:rich_media, :enabled]),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue