forked from AkkomaGang/akkoma
rich media: disable cachex in test mode
This commit is contained in:
parent
0964c207eb
commit
487c00d36d
1 changed files with 9 additions and 6 deletions
|
@ -1,14 +1,17 @@
|
||||||
defmodule Pleroma.Web.RichMedia.Parser do
|
defmodule Pleroma.Web.RichMedia.Parser do
|
||||||
@parsers [Pleroma.Web.RichMedia.Parsers.OGP]
|
@parsers [Pleroma.Web.RichMedia.Parsers.OGP]
|
||||||
|
|
||||||
def parse(url) do
|
if Mix.env() == :test do
|
||||||
Cachex.fetch!(:rich_media_cache, url, fn _ ->
|
def parse(url), do: parse_url(url)
|
||||||
{:ok, %Tesla.Env{body: html}} = Pleroma.HTTP.get(url)
|
else
|
||||||
|
def parse(url),
|
||||||
|
do: {:commit, Cachex.fetch!(:rich_media_cache, url, fn _ -> parse_url(url) end)}
|
||||||
|
end
|
||||||
|
|
||||||
result = html |> maybe_parse() |> get_parsed_data()
|
defp parse_url(url) do
|
||||||
|
{:ok, %Tesla.Env{body: html}} = Pleroma.HTTP.get(url)
|
||||||
|
|
||||||
{:commit, result}
|
html |> maybe_parse() |> get_parsed_data()
|
||||||
end)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
defp maybe_parse(html) do
|
defp maybe_parse(html) do
|
||||||
|
|
Loading…
Reference in a new issue