2020-05-22 22:04:15 +02:00
|
|
|
defmodule PodcastFeedWeb.FeedController do
|
|
|
|
use PodcastFeedWeb, :controller
|
|
|
|
|
2020-05-23 23:56:20 +02:00
|
|
|
def by_identifier(conn, %{"identifier" => identifier}) do
|
|
|
|
%{podcast: podcast, items: items} = PodcastFeed.archive(identifier)
|
|
|
|
conn
|
|
|
|
|> put_resp_content_type("text/xml")
|
|
|
|
|> render("feed.xml", podcast: podcast, items: items)
|
|
|
|
end
|
2020-05-22 22:04:15 +02:00
|
|
|
end
|