6b042f65ab
removed hardcoded from generic podcast medatadata
95 lines
3.5 KiB
Elixir
95 lines
3.5 KiB
Elixir
defmodule PodcastFeed.Provider.Archive.Parser do
|
|
alias PodcastFeed.Utility.Format
|
|
|
|
@extra_metadata_url "https://archive.org/download/{identifier}/metadata.json"
|
|
@metadata_url "http://archive.org/metadata/{identifier}"
|
|
@download_url "https://archive.org/download/{identifier}/{filename}"
|
|
|
|
def by_identifier(identifier) do
|
|
extra_metadata_json = fetch_extra_metadata(identifier)
|
|
metadata_json = fetch_metadata(identifier)
|
|
parse(identifier, metadata_json, extra_metadata_json)
|
|
end
|
|
|
|
defp fetch_extra_metadata(identifier) do
|
|
extra_metadata_url = Format.compile(@extra_metadata_url, identifier: identifier)
|
|
{:ok, 200, _headers, client_ref} = :hackney.get(extra_metadata_url, [], "", [follow_redirect: true])
|
|
{:ok, extra_metadata_json} = :hackney.body(client_ref)
|
|
extra_metadata_json |> String.split("\n") |> Enum.join() |> Poison.decode!()
|
|
end
|
|
|
|
defp fetch_metadata(identifier) do
|
|
metadata_url = Format.compile(@metadata_url, identifier: identifier)
|
|
metadata_url |> IO.inspect
|
|
{:ok, 200, _headers, client_ref} = :hackney.get(metadata_url, [], "", [follow_redirect: true, connect_timeout: 30000, recv_timeout: 30000])
|
|
{:ok, metadata_json} = :hackney.body(client_ref)
|
|
metadata_json |> Poison.decode!()
|
|
end
|
|
|
|
def parse(identifier, %{"metadata" => metadata, "files" => files}, extra) do
|
|
_image = files |> fetch_image(identifier)
|
|
|
|
%{podcast: podcast_data(metadata, extra), items: items_data(files, identifier)}
|
|
end
|
|
|
|
defp fetch_image(files, identifier) do
|
|
filename = files
|
|
|> Enum.filter(fn f -> f["source"] == "original" end)
|
|
|> Enum.filter(fn f -> f["format"] == "JPEG" end) #FIXME:! jpg, png, gif
|
|
|> List.first()
|
|
|> Map.get("name")
|
|
|
|
Format.compile(@download_url, identifier: identifier, filename: filename) |> URI.encode()
|
|
end
|
|
|
|
defp podcast_data(metadata, extra) do
|
|
%{
|
|
title: metadata["title"],
|
|
description: metadata["description"],
|
|
webmaster: metadata["uploader"],
|
|
managingEditor: metadata["uploader"],
|
|
owner: %{
|
|
name: metadata["creator"],
|
|
email: metadata["uploader"],
|
|
},
|
|
keywords: metadata["subject"],
|
|
pubDate: metadata["publicdate"] |> NaiveDateTime.from_iso8601!() |> DateTime.from_naive!("Etc/UTC"),
|
|
lastBuildDate: metadata["addeddate"] |> NaiveDateTime.from_iso8601!() |> DateTime.from_naive!("Etc/UTC"),
|
|
author: metadata["creator"],
|
|
language: metadata["language"],
|
|
image: %{
|
|
url: extra["image"]["url"],
|
|
title: extra["image"]["title"],
|
|
link: extra["image"]["link"],
|
|
},
|
|
link: extra["link"],
|
|
category: extra["category"],
|
|
explicit: extra["explicit"],
|
|
}
|
|
end
|
|
|
|
defp items_data(files, identifier) do
|
|
files
|
|
|> filter_audio_files()
|
|
|> Enum.map(fn f -> to_feed_item(f, identifier) end)
|
|
end
|
|
|
|
defp filter_audio_files(files) do
|
|
files |> Enum.filter(fn f -> Map.get(f, "format") =~ ~r/MP3/i end) #FIXME:! mp3, ogg, boh
|
|
end
|
|
|
|
defp to_feed_item(file, identifier) do
|
|
filename = Map.get(file, "name")
|
|
%{
|
|
title: file["title"],
|
|
description: "",
|
|
pubDate: file |> Map.get("mtime") |> Integer.parse() |> elem(0) |> DateTime.from_unix!(:second),
|
|
link: Format.compile(@download_url, identifier: identifier, filename: filename) |> URI.encode(),
|
|
length: (file |> Map.get("length") |> Float.parse() |> elem(0)) * 100 |> trunc(),
|
|
summary: "",
|
|
# image: "", #FIXME:! take the image from other files
|
|
keywords: file |> Map.take(["album", "artist", "genre"]) |> Map.values(),
|
|
explicit: "no",
|
|
}
|
|
end
|
|
end
|