diff --git a/src/feeds/base.mts b/src/feeds/base.mts
index 92a955b..a0c8804 100644
--- a/src/feeds/base.mts
+++ b/src/feeds/base.mts
@@ -13,6 +13,7 @@ export interface FeedAttributes {
items: FeedItem[];
link: string;
title: string;
+ description: string;
}
interface FeedGenerateOptions {
@@ -25,14 +26,16 @@ export abstract class FeedBase {
readonly items: FeedItem[];
readonly link: string;
readonly title: string;
+ readonly description: string;
constructor(attrs: FeedAttributes) {
- const { copyright, id, items, link, title } = attrs;
+ const { copyright, id, items, link, title, description } = attrs;
this.copyright = copyright;
this.id = id;
this.items = items;
this.link = link;
this.title = title;
+ this.description = description;
}
toRss(options?: FeedGenerateOptions): string {
@@ -41,6 +44,7 @@ export abstract class FeedBase {
id: this.link,
link: this.link,
title: this.title,
+ description: this.description,
updated: new Date(this.latestFeedItemDate()),
};
diff --git a/src/feeds/news.mts b/src/feeds/news.mts
index d1c06bb..8010def 100644
--- a/src/feeds/news.mts
+++ b/src/feeds/news.mts
@@ -53,6 +53,7 @@ export class NewsFeed extends FeedBase {
items,
link: NEWS_URL,
title: "ZUTOMAYO News",
+ description: "This is unofficial RSS feed for ZUTOMAYO news",
});
}
}
diff --git a/src/feeds/voice.mts b/src/feeds/voice.mts
index 231e631..a6b13a2 100644
--- a/src/feeds/voice.mts
+++ b/src/feeds/voice.mts
@@ -53,6 +53,7 @@ export class VoiceFeed extends FeedBase {
items,
link: VOICE_URL,
title: "ZUTOMAYO Voice",
+ description: "This is unofficial RSS feed for ZUTOMAYO voice",
});
}
}
diff --git a/src/test/__snapshots__/news-feed-to-rss-with-atom-self-link.snap b/src/test/__snapshots__/news-feed-to-rss-with-atom-self-link.snap
index 02b6f02..c6b4c6b 100644
--- a/src/test/__snapshots__/news-feed-to-rss-with-atom-self-link.snap
+++ b/src/test/__snapshots__/news-feed-to-rss-with-atom-self-link.snap
@@ -1 +1 @@
-"\n\n \n ZUTOMAYO News\n https://zutomayo.net/news\n undefined\n Thu, 21 Dec 2023 15:00:00 GMT\n https://validator.w3.org/feed/docs/rss2.html\n https://github.com/jpmonette/feed\n ZUTOMAYO\n \n - \n \n https://zutomayo.net/news/381\n https://zutomayo.net/news/381\n Thu, 21 Dec 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/380\n https://zutomayo.net/news/380\n Mon, 18 Dec 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/379\n https://zutomayo.net/news/379\n Sat, 16 Dec 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/378\n https://zutomayo.net/news/378\n Fri, 15 Dec 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/376\n https://zutomayo.net/news/376\n Thu, 14 Dec 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/371\n https://zutomayo.net/news/371\n Thu, 14 Dec 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/373\n https://zutomayo.net/news/373\n Wed, 13 Dec 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/375\n https://zutomayo.net/news/375\n Mon, 11 Dec 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/374\n https://zutomayo.net/news/374\n Thu, 07 Dec 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/372\n https://zutomayo.net/news/372\n Sun, 03 Dec 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/370\n https://zutomayo.net/news/370\n Wed, 29 Nov 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/369\n https://zutomayo.net/news/369\n Mon, 27 Nov 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/368\n https://zutomayo.net/news/368\n Sun, 26 Nov 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/367\n https://zutomayo.net/news/367\n Thu, 16 Nov 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/366\n https://zutomayo.net/news/366\n Fri, 10 Nov 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/365\n https://zutomayo.net/news/365\n Thu, 09 Nov 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/364\n https://zutomayo.net/news/364\n Mon, 06 Nov 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/363\n https://zutomayo.net/news/363\n Sun, 05 Nov 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/362\n https://zutomayo.net/news/362\n Sun, 05 Nov 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/361\n https://zutomayo.net/news/361\n Sat, 04 Nov 2023 15:00:00 GMT\n
\n \n"
\ No newline at end of file
+"\n\n \n ZUTOMAYO News\n https://zutomayo.net/news\n This is unofficial RSS feed for ZUTOMAYO news\n Thu, 21 Dec 2023 15:00:00 GMT\n https://validator.w3.org/feed/docs/rss2.html\n https://github.com/jpmonette/feed\n ZUTOMAYO\n \n - \n \n https://zutomayo.net/news/381\n https://zutomayo.net/news/381\n Thu, 21 Dec 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/380\n https://zutomayo.net/news/380\n Mon, 18 Dec 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/379\n https://zutomayo.net/news/379\n Sat, 16 Dec 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/378\n https://zutomayo.net/news/378\n Fri, 15 Dec 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/376\n https://zutomayo.net/news/376\n Thu, 14 Dec 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/371\n https://zutomayo.net/news/371\n Thu, 14 Dec 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/373\n https://zutomayo.net/news/373\n Wed, 13 Dec 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/375\n https://zutomayo.net/news/375\n Mon, 11 Dec 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/374\n https://zutomayo.net/news/374\n Thu, 07 Dec 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/372\n https://zutomayo.net/news/372\n Sun, 03 Dec 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/370\n https://zutomayo.net/news/370\n Wed, 29 Nov 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/369\n https://zutomayo.net/news/369\n Mon, 27 Nov 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/368\n https://zutomayo.net/news/368\n Sun, 26 Nov 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/367\n https://zutomayo.net/news/367\n Thu, 16 Nov 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/366\n https://zutomayo.net/news/366\n Fri, 10 Nov 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/365\n https://zutomayo.net/news/365\n Thu, 09 Nov 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/364\n https://zutomayo.net/news/364\n Mon, 06 Nov 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/363\n https://zutomayo.net/news/363\n Sun, 05 Nov 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/362\n https://zutomayo.net/news/362\n Sun, 05 Nov 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/361\n https://zutomayo.net/news/361\n Sat, 04 Nov 2023 15:00:00 GMT\n
\n \n"
\ No newline at end of file
diff --git a/src/test/__snapshots__/news-feed-to-rss.snap b/src/test/__snapshots__/news-feed-to-rss.snap
index f2b9e8f..71446f4 100644
--- a/src/test/__snapshots__/news-feed-to-rss.snap
+++ b/src/test/__snapshots__/news-feed-to-rss.snap
@@ -1 +1 @@
-"\n\n \n ZUTOMAYO News\n https://zutomayo.net/news\n undefined\n Thu, 21 Dec 2023 15:00:00 GMT\n https://validator.w3.org/feed/docs/rss2.html\n https://github.com/jpmonette/feed\n ZUTOMAYO\n - \n \n https://zutomayo.net/news/381\n https://zutomayo.net/news/381\n Thu, 21 Dec 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/380\n https://zutomayo.net/news/380\n Mon, 18 Dec 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/379\n https://zutomayo.net/news/379\n Sat, 16 Dec 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/378\n https://zutomayo.net/news/378\n Fri, 15 Dec 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/376\n https://zutomayo.net/news/376\n Thu, 14 Dec 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/371\n https://zutomayo.net/news/371\n Thu, 14 Dec 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/373\n https://zutomayo.net/news/373\n Wed, 13 Dec 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/375\n https://zutomayo.net/news/375\n Mon, 11 Dec 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/374\n https://zutomayo.net/news/374\n Thu, 07 Dec 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/372\n https://zutomayo.net/news/372\n Sun, 03 Dec 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/370\n https://zutomayo.net/news/370\n Wed, 29 Nov 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/369\n https://zutomayo.net/news/369\n Mon, 27 Nov 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/368\n https://zutomayo.net/news/368\n Sun, 26 Nov 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/367\n https://zutomayo.net/news/367\n Thu, 16 Nov 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/366\n https://zutomayo.net/news/366\n Fri, 10 Nov 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/365\n https://zutomayo.net/news/365\n Thu, 09 Nov 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/364\n https://zutomayo.net/news/364\n Mon, 06 Nov 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/363\n https://zutomayo.net/news/363\n Sun, 05 Nov 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/362\n https://zutomayo.net/news/362\n Sun, 05 Nov 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/361\n https://zutomayo.net/news/361\n Sat, 04 Nov 2023 15:00:00 GMT\n
\n \n"
\ No newline at end of file
+"\n\n \n ZUTOMAYO News\n https://zutomayo.net/news\n This is unofficial RSS feed for ZUTOMAYO news\n Thu, 21 Dec 2023 15:00:00 GMT\n https://validator.w3.org/feed/docs/rss2.html\n https://github.com/jpmonette/feed\n ZUTOMAYO\n - \n \n https://zutomayo.net/news/381\n https://zutomayo.net/news/381\n Thu, 21 Dec 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/380\n https://zutomayo.net/news/380\n Mon, 18 Dec 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/379\n https://zutomayo.net/news/379\n Sat, 16 Dec 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/378\n https://zutomayo.net/news/378\n Fri, 15 Dec 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/376\n https://zutomayo.net/news/376\n Thu, 14 Dec 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/371\n https://zutomayo.net/news/371\n Thu, 14 Dec 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/373\n https://zutomayo.net/news/373\n Wed, 13 Dec 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/375\n https://zutomayo.net/news/375\n Mon, 11 Dec 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/374\n https://zutomayo.net/news/374\n Thu, 07 Dec 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/372\n https://zutomayo.net/news/372\n Sun, 03 Dec 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/370\n https://zutomayo.net/news/370\n Wed, 29 Nov 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/369\n https://zutomayo.net/news/369\n Mon, 27 Nov 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/368\n https://zutomayo.net/news/368\n Sun, 26 Nov 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/367\n https://zutomayo.net/news/367\n Thu, 16 Nov 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/366\n https://zutomayo.net/news/366\n Fri, 10 Nov 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/365\n https://zutomayo.net/news/365\n Thu, 09 Nov 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/364\n https://zutomayo.net/news/364\n Mon, 06 Nov 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/363\n https://zutomayo.net/news/363\n Sun, 05 Nov 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/362\n https://zutomayo.net/news/362\n Sun, 05 Nov 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/news/361\n https://zutomayo.net/news/361\n Sat, 04 Nov 2023 15:00:00 GMT\n
\n \n"
\ No newline at end of file
diff --git a/src/test/__snapshots__/voice-feed-to-rss-with-atom-self-link.snap b/src/test/__snapshots__/voice-feed-to-rss-with-atom-self-link.snap
index d5b0b3d..219f9c1 100644
--- a/src/test/__snapshots__/voice-feed-to-rss-with-atom-self-link.snap
+++ b/src/test/__snapshots__/voice-feed-to-rss-with-atom-self-link.snap
@@ -1 +1 @@
-"\n\n \n ZUTOMAYO Voice\n https://zutomayo.net/voice\n undefined\n Thu, 30 Nov 2023 15:00:00 GMT\n https://validator.w3.org/feed/docs/rss2.html\n https://github.com/jpmonette/feed\n ZUTOMAYO\n \n - \n \n https://zutomayo.net/voice/shinjin_mc\n https://zutomayo.net/voice/shinjin_mc\n Thu, 30 Nov 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/voice/denwa2\n https://zutomayo.net/voice/denwa2\n Tue, 31 Oct 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/voice/ohau\n https://zutomayo.net/voice/ohau\n Sat, 30 Sep 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/voice/kissade\n https://zutomayo.net/voice/kissade\n Thu, 31 Aug 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/voice/shoga_ohenji\n https://zutomayo.net/voice/shoga_ohenji\n Mon, 31 Jul 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/voice/internet\n https://zutomayo.net/voice/internet\n Fri, 30 Jun 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/voice/premium\n https://zutomayo.net/voice/premium\n Fri, 07 Jan 2022 15:00:00 GMT\n
\n \n"
\ No newline at end of file
+"\n\n \n ZUTOMAYO Voice\n https://zutomayo.net/voice\n This is unofficial RSS feed for ZUTOMAYO voice\n Thu, 30 Nov 2023 15:00:00 GMT\n https://validator.w3.org/feed/docs/rss2.html\n https://github.com/jpmonette/feed\n ZUTOMAYO\n \n - \n \n https://zutomayo.net/voice/shinjin_mc\n https://zutomayo.net/voice/shinjin_mc\n Thu, 30 Nov 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/voice/denwa2\n https://zutomayo.net/voice/denwa2\n Tue, 31 Oct 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/voice/ohau\n https://zutomayo.net/voice/ohau\n Sat, 30 Sep 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/voice/kissade\n https://zutomayo.net/voice/kissade\n Thu, 31 Aug 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/voice/shoga_ohenji\n https://zutomayo.net/voice/shoga_ohenji\n Mon, 31 Jul 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/voice/internet\n https://zutomayo.net/voice/internet\n Fri, 30 Jun 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/voice/premium\n https://zutomayo.net/voice/premium\n Fri, 07 Jan 2022 15:00:00 GMT\n
\n \n"
\ No newline at end of file
diff --git a/src/test/__snapshots__/voice-feed-to-rss.snap b/src/test/__snapshots__/voice-feed-to-rss.snap
index f16805a..9879261 100644
--- a/src/test/__snapshots__/voice-feed-to-rss.snap
+++ b/src/test/__snapshots__/voice-feed-to-rss.snap
@@ -1 +1 @@
-"\n\n \n ZUTOMAYO Voice\n https://zutomayo.net/voice\n undefined\n Thu, 30 Nov 2023 15:00:00 GMT\n https://validator.w3.org/feed/docs/rss2.html\n https://github.com/jpmonette/feed\n ZUTOMAYO\n - \n \n https://zutomayo.net/voice/shinjin_mc\n https://zutomayo.net/voice/shinjin_mc\n Thu, 30 Nov 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/voice/denwa2\n https://zutomayo.net/voice/denwa2\n Tue, 31 Oct 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/voice/ohau\n https://zutomayo.net/voice/ohau\n Sat, 30 Sep 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/voice/kissade\n https://zutomayo.net/voice/kissade\n Thu, 31 Aug 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/voice/shoga_ohenji\n https://zutomayo.net/voice/shoga_ohenji\n Mon, 31 Jul 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/voice/internet\n https://zutomayo.net/voice/internet\n Fri, 30 Jun 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/voice/premium\n https://zutomayo.net/voice/premium\n Fri, 07 Jan 2022 15:00:00 GMT\n
\n \n"
\ No newline at end of file
+"\n\n \n ZUTOMAYO Voice\n https://zutomayo.net/voice\n This is unofficial RSS feed for ZUTOMAYO voice\n Thu, 30 Nov 2023 15:00:00 GMT\n https://validator.w3.org/feed/docs/rss2.html\n https://github.com/jpmonette/feed\n ZUTOMAYO\n - \n \n https://zutomayo.net/voice/shinjin_mc\n https://zutomayo.net/voice/shinjin_mc\n Thu, 30 Nov 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/voice/denwa2\n https://zutomayo.net/voice/denwa2\n Tue, 31 Oct 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/voice/ohau\n https://zutomayo.net/voice/ohau\n Sat, 30 Sep 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/voice/kissade\n https://zutomayo.net/voice/kissade\n Thu, 31 Aug 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/voice/shoga_ohenji\n https://zutomayo.net/voice/shoga_ohenji\n Mon, 31 Jul 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/voice/internet\n https://zutomayo.net/voice/internet\n Fri, 30 Jun 2023 15:00:00 GMT\n
\n - \n \n https://zutomayo.net/voice/premium\n https://zutomayo.net/voice/premium\n Fri, 07 Jan 2022 15:00:00 GMT\n
\n \n"
\ No newline at end of file