mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 11:34:24 +03:00
a018b1bbd2
no issue - minor optical fix for schema.org metadata - sameAs property was showing `null` value in array, if no data was provided - instead of showing `null`, it will be empty, if no data (author website, facebook or twitter) it will be an empty array
142 lines
4.2 KiB
JavaScript
142 lines
4.2 KiB
JavaScript
var config = require('../../config'),
|
|
hbs = require('express-hbs'),
|
|
escapeExpression = hbs.handlebars.Utils.escapeExpression,
|
|
_ = require('lodash');
|
|
|
|
// Creates the final schema object with values that are not null
|
|
function trimSchema(schema) {
|
|
var schemaObject = {};
|
|
|
|
_.each(schema, function (value, key) {
|
|
if (value !== null && typeof value !== 'undefined') {
|
|
schemaObject[key] = value;
|
|
}
|
|
});
|
|
return schemaObject;
|
|
}
|
|
|
|
function trimSameAs(data, context) {
|
|
var sameAs = [];
|
|
|
|
if (context === 'post') {
|
|
if (data.post.author.website) {
|
|
sameAs.push(data.post.author.website);
|
|
}
|
|
if (data.post.author.facebook) {
|
|
sameAs.push(data.post.author.facebook);
|
|
}
|
|
if (data.post.author.twitter) {
|
|
sameAs.push(data.post.author.twitter);
|
|
}
|
|
} else if (context === 'author') {
|
|
if (data.author.website) {
|
|
sameAs.push(data.author.website);
|
|
}
|
|
if (data.author.facebook) {
|
|
sameAs.push(data.author.facebook);
|
|
}
|
|
if (data.author.twitter) {
|
|
sameAs.push(data.author.twitter);
|
|
}
|
|
}
|
|
|
|
return sameAs;
|
|
}
|
|
|
|
function getPostSchema(metaData, data) {
|
|
var description = metaData.metaDescription ? escapeExpression(metaData.metaDescription) :
|
|
(metaData.excerpt ? escapeExpression(metaData.excerpt) : null),
|
|
schema;
|
|
|
|
schema = {
|
|
'@context': 'http://schema.org',
|
|
'@type': 'Article',
|
|
publisher: metaData.blog.title,
|
|
author: {
|
|
'@type': 'Person',
|
|
name: escapeExpression(data.post.author.name),
|
|
image: metaData.authorImage,
|
|
url: metaData.authorUrl,
|
|
sameAs: trimSameAs(data, 'post'),
|
|
description: data.post.author.bio ?
|
|
escapeExpression(data.post.author.bio) :
|
|
null
|
|
},
|
|
headline: escapeExpression(metaData.metaTitle),
|
|
url: metaData.url,
|
|
datePublished: metaData.publishedDate,
|
|
dateModified: metaData.modifiedDate,
|
|
image: metaData.coverImage,
|
|
keywords: metaData.keywords && metaData.keywords.length > 0 ?
|
|
metaData.keywords.join(', ') : null,
|
|
description: description
|
|
};
|
|
schema.author = trimSchema(schema.author);
|
|
return trimSchema(schema);
|
|
}
|
|
|
|
function getHomeSchema(metaData) {
|
|
var schema = {
|
|
'@context': 'http://schema.org',
|
|
'@type': 'Website',
|
|
publisher: escapeExpression(metaData.blog.title),
|
|
url: metaData.url,
|
|
image: metaData.coverImage,
|
|
description: metaData.metaDescription ?
|
|
escapeExpression(metaData.metaDescription) :
|
|
null
|
|
};
|
|
return trimSchema(schema);
|
|
}
|
|
|
|
function getTagSchema(metaData, data) {
|
|
var schema = {
|
|
'@context': 'http://schema.org',
|
|
'@type': 'Series',
|
|
publisher: escapeExpression(metaData.blog.title),
|
|
url: metaData.url,
|
|
image: metaData.coverImage,
|
|
name: data.tag.name,
|
|
description: metaData.metaDescription ?
|
|
escapeExpression(metaData.metaDescription) :
|
|
null
|
|
};
|
|
|
|
return trimSchema(schema);
|
|
}
|
|
|
|
function getAuthorSchema(metaData, data) {
|
|
var schema = {
|
|
'@context': 'http://schema.org',
|
|
'@type': 'Person',
|
|
sameAs: trimSameAs(data, 'author'),
|
|
publisher: escapeExpression(metaData.blog.title),
|
|
name: escapeExpression(data.author.name),
|
|
url: metaData.authorUrl,
|
|
image: metaData.coverImage,
|
|
description: metaData.metaDescription ?
|
|
escapeExpression(metaData.metaDescription) :
|
|
null
|
|
};
|
|
|
|
return trimSchema(schema);
|
|
}
|
|
|
|
function getSchema(metaData, data) {
|
|
if (!config.isPrivacyDisabled('useStructuredData')) {
|
|
var context = data.context ? data.context[0] : null;
|
|
if (context === 'post' || context === 'page') {
|
|
return getPostSchema(metaData, data);
|
|
} else if (context === 'home') {
|
|
return getHomeSchema(metaData);
|
|
} else if (context === 'tag') {
|
|
return getTagSchema(metaData, data);
|
|
} else if (context === 'author') {
|
|
return getAuthorSchema(metaData, data);
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
|
|
module.exports = getSchema;
|