mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-23 20:18:00 +01:00
41 lines
1.1 KiB
Elixir
41 lines
1.1 KiB
Elixir
defmodule PhilomenaProxy.Scrapers.Twitter do
|
|
@moduledoc false
|
|
|
|
alias PhilomenaProxy.Scrapers.Scraper
|
|
alias PhilomenaProxy.Scrapers
|
|
|
|
@behaviour Scraper
|
|
|
|
@url_regex ~r|\Ahttps?://(?:mobile\.)?(?:twitter\|x).com/([A-Za-z\d_]+)/status/([\d]+)/?|
|
|
|
|
@spec can_handle?(URI.t(), String.t()) :: boolean()
|
|
def can_handle?(_uri, url) do
|
|
String.match?(url, @url_regex)
|
|
end
|
|
|
|
@spec scrape(URI.t(), Scrapers.url()) :: Scrapers.scrape_result()
|
|
def scrape(_uri, url) do
|
|
[user, status_id] = Regex.run(@url_regex, url, capture: :all_but_first)
|
|
|
|
api_url = "https://api.fxtwitter.com/#{user}/status/#{status_id}"
|
|
{:ok, %{status: 200, body: body}} = PhilomenaProxy.Http.get(api_url)
|
|
|
|
json = Jason.decode!(body)
|
|
tweet = json["tweet"]
|
|
|
|
images =
|
|
Enum.map(tweet["media"]["photos"], fn p ->
|
|
%{
|
|
url: "#{p["url"]}:orig",
|
|
camo_url: PhilomenaProxy.Camo.image_url(p["url"])
|
|
}
|
|
end)
|
|
|
|
%{
|
|
source_url: tweet["url"],
|
|
author_name: tweet["author"]["screen_name"],
|
|
description: tweet["text"],
|
|
images: images
|
|
}
|
|
end
|
|
end
|