Commit e97266c5 authored by Yassine Doghri's avatar Yassine Doghri
Browse files

fix(json-ld): add missing properties to PodcastSeries object

rename episode activity cache
parent cfb3da65
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -112,7 +112,7 @@ class EpisodeController extends BaseController
        $locale = service('request')
            ->getLocale();
        $cacheName =
            "page_podcast#{$this->podcast->id}_episode#{$this->episode->id}_{$locale}" .
            "page_podcast#{$this->podcast->id}_episode#{$this->episode->id}_activity_{$locale}" .
            (can_user_interact() ? '_authenticated' : '');

        if (! ($cachedView = cache($cacheName))) {
+17 −4
Original line number Diff line number Diff line
@@ -21,16 +21,28 @@ use Melbahja\Seo\Schema\Thing;
if (! function_exists('get_podcast_metatags')) {
    function get_podcast_metatags(Podcast $podcast, string $page): string
    {
        $category = '';
        if ($podcast->category->parent_id !== null) {
            $category .= $podcast->category->parent->apple_category . ' > ';
        }
        $category .= $podcast->category->apple_category;

        $schema = new Schema(
            new Thing('PodcastSeries', [
                'name' => $podcast->title,
                'url' => $podcast->link,
                'headline' => $podcast->title,
                'url' => current_url(),
                'sameAs' => $podcast->link,
                'identifier' => $podcast->guid,
                'image' => $podcast->cover->feed_url,
                'description' => $podcast->description,
                'webFeed' => $podcast->feed_url,
                'author' => new Thing('Person', [
                    'name' => $podcast->publisher,
                ]),
                'accessMode' => 'auditory',
                'author' => $podcast->owner_name,
                'creator' => $podcast->owner_name,
                'publisher' => $podcast->publisher,
                'inLanguage' => $podcast->language_code,
                'genre' => $category,
            ])
        );

@@ -70,6 +82,7 @@ if (! function_exists('get_episode_metatags')) {
                'description' => $episode->description,
                'datePublished' => $episode->published_at->format(DATE_ISO8601),
                'timeRequired' => iso8601_duration($episode->audio->duration),
                'duration' => iso8601_duration($episode->audio->duration),
                'associatedMedia' => new Thing('MediaObject', [
                    'contentUrl' => $episode->audio->file_url,
                ]),