Use json for schema.org instead of tags
This commit is contained in:
parent
d0e848b77e
commit
c7b1b92b11
|
@ -53,7 +53,7 @@ zip -r "PeerTube/$zip_name" "$directory_name/CREDITS.md" "$directory_name/FAQ.md
|
|||
"$directory_name/dist" "$directory_name/package.json" \
|
||||
"$directory_name/scripts" "$directory_name/support" \
|
||||
"$directory_name/tsconfig.json" "$directory_name/yarn.lock" \
|
||||
"$directory_name/server/" \
|
||||
"$directory_name/server/" "$directory_name/shared/" \
|
||||
|| exit -1
|
||||
rm "$directory_name" || exit -1
|
||||
|
||||
|
|
|
@ -85,6 +85,8 @@ function addOpenGraphAndOEmbedTags (htmlStringPage: string, video: VideoModel) {
|
|||
]
|
||||
|
||||
const schemaTags = {
|
||||
'@context': 'http://schema.org',
|
||||
'@type': 'VideoObject',
|
||||
name: videoNameEscaped,
|
||||
description: videoDescriptionEscaped,
|
||||
duration: video.getActivityStreamDuration(),
|
||||
|
@ -95,25 +97,21 @@ function addOpenGraphAndOEmbedTags (htmlStringPage: string, video: VideoModel) {
|
|||
}
|
||||
|
||||
let tagsString = ''
|
||||
|
||||
// Opengraph
|
||||
Object.keys(openGraphMetaTags).forEach(tagName => {
|
||||
const tagValue = openGraphMetaTags[tagName]
|
||||
|
||||
tagsString += `<meta property="${tagName}" content="${tagValue}" />`
|
||||
})
|
||||
|
||||
// OEmbed
|
||||
for (const oembedLinkTag of oembedLinkTags) {
|
||||
tagsString += `<link rel="alternate" type="${oembedLinkTag.type}" href="${oembedLinkTag.href}" title="${oembedLinkTag.title}" />`
|
||||
}
|
||||
|
||||
tagsString += '<div itemprop="video" itemscope itemtype="http://schema.org/VideoObject">'
|
||||
tagsString += '<h2>Video: <span itemprop="name">' + schemaTags.name + '</span></h2>'
|
||||
|
||||
Object.keys(schemaTags).forEach(tagName => {
|
||||
const tagValue = schemaTags[tagName]
|
||||
tagsString += `<meta itemprop="${tagName}" content="${tagValue}" />`
|
||||
})
|
||||
|
||||
tagsString += '</div>'
|
||||
// Schema.org
|
||||
tagsString += `<script type="application/ld+json">${JSON.stringify(schemaTags)}</script>`
|
||||
|
||||
return htmlStringPage.replace(OPENGRAPH_AND_OEMBED_COMMENT, tagsString)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue