91 lines
2.8 KiB
TypeScript
91 lines
2.8 KiB
TypeScript
import { declaration, serialize, tag } from "serialize-xml";
|
|
import { getHostName } from "../utils.ts";
|
|
import { Episode, Series } from "./storage.ts";
|
|
|
|
function assembleFeed(series: Series) {
|
|
// Originally adapted from https://raw.githubusercontent.com/olaven/paperpod/1cde9abd3174b26e126aa74fc5a3b63fd078c0fd/packages/converter/src/rss.ts
|
|
return serialize(
|
|
declaration([
|
|
["version", "1.0"],
|
|
["encoding", "UTF-8"],
|
|
]),
|
|
tag(
|
|
"rss",
|
|
[
|
|
tag("channel", [
|
|
tag("title", series.title),
|
|
tag("link", series.link),
|
|
tag("itunes:author", "NRK"),
|
|
/**
|
|
* serie.category.id does not overlap with Apple's supported categories..
|
|
* These podcast feeds are not going to be indexed in itunes anyways, so
|
|
* a static, valid category is fine. The point is simply to pass third party
|
|
* podcast feed validation.
|
|
*/
|
|
tag("itunes:category", "", [["text", "Government"]]),
|
|
tag("itunes:owner", [
|
|
tag("itunes:name", "NRK"),
|
|
tag("itunes:email", "nrkpodcast@nrk.no"),
|
|
]),
|
|
tag(
|
|
"description",
|
|
series.subtitle || "",
|
|
),
|
|
tag("ttl", "60"), //60 minutes
|
|
...(series.imageUrl
|
|
? [
|
|
tag("itunes:image", "", [
|
|
["href", series.imageUrl],
|
|
]),
|
|
tag("image", [
|
|
tag("url", series.imageUrl),
|
|
tag("title", series.title),
|
|
tag("link", series.link),
|
|
]),
|
|
]
|
|
: []),
|
|
...series.episodes.map((episode) => assembleEpisode({ series, episode })),
|
|
]),
|
|
],
|
|
[
|
|
["version", "2.0"],
|
|
["xmlns:itunes", "http://www.itunes.com/dtds/podcast-1.0.dtd"],
|
|
["xmlns:content", "http://purl.org/rss/1.0/modules/content/"],
|
|
["xmlns:podcast", "https://podcastindex.org/namespace/1.0"],
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
function assembleEpisode(options: { series: Series; episode: Episode }) {
|
|
const { series, episode } = options;
|
|
|
|
const description = episode.subtitle || "";
|
|
|
|
return tag("item", [
|
|
tag("title", episode.title),
|
|
tag("link", episode.link),
|
|
tag("description", description),
|
|
tag("itunes:summary", description),
|
|
tag("guid", episode.id, [["isPermaLink", "false"]]),
|
|
tag("pubDate", new Date(episode.date).toUTCString()),
|
|
tag("itunes:duration", episode.durationInSeconds.toString()),
|
|
tag("podcast:chapters", "", [
|
|
[
|
|
"url",
|
|
`${getHostName()}/api/feeds/${series.id}/${episode.id}/chapters`,
|
|
],
|
|
["type", "application/json+chapters"],
|
|
]),
|
|
tag("enclosure", "", [
|
|
["url", episode.link],
|
|
["length", episode.durationInSeconds.toString()],
|
|
["type", "audio/mpeg3"],
|
|
]),
|
|
]);
|
|
}
|
|
|
|
export const rss = {
|
|
assembleFeed,
|
|
};
|