From 093237cf79ea62207b51dd632a4c4fd1f74d71fd Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Tue, 23 Jan 2018 17:09:06 +0100 Subject: Add schema.org tags to videos --- server/controllers/client.ts | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'server/controllers') diff --git a/server/controllers/client.ts b/server/controllers/client.ts index 39e046727..bb02f5075 100644 --- a/server/controllers/client.ts +++ b/server/controllers/client.ts @@ -84,6 +84,16 @@ function addOpenGraphAndOEmbedTags (htmlStringPage: string, video: VideoModel) { } ] + const schemaTags = { + name: videoNameEscaped, + description: videoDescriptionEscaped, + duration: video.getActivityStreamDuration(), + thumbnailURL: previewUrl, + contentURL: videoUrl, + embedURL: embedUrl, + uploadDate: video.createdAt + } + let tagsString = '' Object.keys(openGraphMetaTags).forEach(tagName => { const tagValue = openGraphMetaTags[tagName] @@ -95,6 +105,16 @@ function addOpenGraphAndOEmbedTags (htmlStringPage: string, video: VideoModel) { tagsString += `` } + tagsString += '
' + tagsString += '

Video: ' + schemaTags.name + '

' + + Object.keys(schemaTags).forEach(tagName => { + const tagValue = schemaTags[tagName] + tagsString += `` + }) + + tagsString += '
' + return htmlStringPage.replace(OPENGRAPH_AND_OEMBED_COMMENT, tagsString) } -- cgit v1.2.3