feat(rss): add podcast:comments tag to link to episode comments

This commit is contained in:
Yassine Doghri 2021-07-24 08:49:16 +00:00
parent ed8dc0052c
commit 32e8c7c16a
No known key found for this signature in database
GPG Key ID: 3E7F89498B960C9F
3 changed files with 17 additions and 8 deletions

View File

@ -6,7 +6,7 @@
"service": "app",
"workspaceFolder": "/castopod-host",
"postCreateCommand": "composer install && npm install && npm run build:static",
"postStartCommand": "crontab ./crontab && cron && php spark serve --host 0.0.0.0 & npm run dev",
"postStartCommand": "crontab ./crontab && cron && php spark serve --host 0.0.0.0",
"postAttachCommand": "crontab ./crontab && service cron reload",
"shutdownAction": "stopCompose",
"settings": {

View File

@ -249,6 +249,11 @@ if (! function_exists('get_rss_feed')) {
$item->addChild('season', $episode->season_number, $itunesNamespace);
$item->addChild('episodeType', $episode->type, $itunesNamespace);
// add link to episode comments as podcast-activity format
$comments = $item->addChild('comments', null, $podcastNamespace);
$comments->addAttribute('uri', url_to('episode-comments', $podcast->name, $episode->slug));
$comments->addAttribute('contentType', 'application/podcast-activity+json');
if ($episode->transcript_file_url) {
$transcriptElement = $item->addChild('transcript', null, $podcastNamespace);
$transcriptElement->addAttribute('url', $episode->transcript_file_url);

View File

@ -90,17 +90,21 @@ required services will be loaded automagically!
> The VSCode window will reload inside the dev container. Expect several
> minutes during first load as it is building all necessary services.
**Note**: The dev container will start by running both the Castopod Host
server and [Vite](https://vitejs.dev)'s dev server (for compiling the
typescript code and styles). If there is any issue with the servers not
running, you can restart them using the following commands:
**Note**: The dev container will start by running Castopod Host's php server.
During development, you will have to start [Vite](https://vitejs.dev)'s dev
server for compiling the typescript code and styles:
```bash
# run Vite dev server
npm run dev
```
If there is any issue with the php server not running, you can restart them
using the following commands:
```bash
# run Castopod host server
php spark serve --host 0.0.0.0
# run Vite dev server
npm run dev
```
3. You're all set! 🎉