2020-12-15 16:17:42 +00:00
|
|
|
defmodule Mobilizon.Service.HTTP.RemoteMediaDownloaderClient do
|
|
|
|
@moduledoc """
|
|
|
|
Tesla HTTP Basic Client that fetches HTML to extract metadata preview
|
|
|
|
"""
|
|
|
|
|
|
|
|
use Tesla
|
|
|
|
alias Mobilizon.Config
|
|
|
|
|
|
|
|
@default_opts [
|
|
|
|
recv_timeout: 20_000
|
|
|
|
]
|
|
|
|
|
|
|
|
adapter(Tesla.Adapter.Hackney, @default_opts)
|
|
|
|
|
|
|
|
plug(Tesla.Middleware.FollowRedirects)
|
|
|
|
|
|
|
|
plug(Tesla.Middleware.Timeout, timeout: 10_000)
|
|
|
|
|
2021-04-09 08:43:45 +00:00
|
|
|
plug(Tesla.Middleware.Headers, [{"User-Agent", Config.instance_user_agent()}])
|
2020-12-15 16:17:42 +00:00
|
|
|
end
|