mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 11:34:24 +03:00
8de691d575
no issue - `this.statusCode` was always undefined - see HTML error handler - it's hard to add a test for this case - manual test only
182 lines
6.6 KiB
JavaScript
182 lines
6.6 KiB
JavaScript
// # Ghost Head Helper
|
|
// Usage: `{{ghost_head}}`
|
|
//
|
|
// Outputs scripts and other assets at the top of a Ghost theme
|
|
//
|
|
// We use the name ghost_head to match the helper for consistency:
|
|
// jscs:disable requireCamelCaseOrUpperCaseIdentifiers
|
|
|
|
var proxy = require('./proxy'),
|
|
_ = require('lodash'),
|
|
Promise = require('bluebird'),
|
|
debug = require('ghost-ignition').debug('ghost_head'),
|
|
|
|
getMetaData = proxy.metaData.get,
|
|
getAssetUrl = proxy.metaData.getAssetUrl,
|
|
escapeExpression = proxy.escapeExpression,
|
|
SafeString = proxy.SafeString,
|
|
filters = proxy.filters,
|
|
labs = proxy.labs,
|
|
api = proxy.api,
|
|
logging = proxy.logging,
|
|
settingsCache = proxy.settingsCache,
|
|
config = proxy.config,
|
|
blogIconUtils = proxy.blogIcon;
|
|
|
|
function getClient() {
|
|
if (labs.isSet('publicAPI') === true) {
|
|
return api.clients
|
|
.read({slug: 'ghost-frontend'})
|
|
.then(function handleClient(client) {
|
|
client = client.clients[0];
|
|
|
|
if (client.status === 'enabled') {
|
|
return {
|
|
id: client.slug,
|
|
secret: client.secret
|
|
};
|
|
}
|
|
|
|
return {};
|
|
});
|
|
}
|
|
return Promise.resolve({});
|
|
}
|
|
|
|
function writeMetaTag(property, content, type) {
|
|
type = type || property.substring(0, 7) === 'twitter' ? 'name' : 'property';
|
|
return '<meta ' + type + '="' + property + '" content="' + content + '" />';
|
|
}
|
|
|
|
function finaliseStructuredData(metaData) {
|
|
var head = [];
|
|
|
|
_.each(metaData.structuredData, function (content, property) {
|
|
if (property === 'article:tag') {
|
|
_.each(metaData.keywords, function (keyword) {
|
|
if (keyword !== '') {
|
|
keyword = escapeExpression(keyword);
|
|
head.push(writeMetaTag(property,
|
|
escapeExpression(keyword)));
|
|
}
|
|
});
|
|
head.push('');
|
|
} else if (content !== null && content !== undefined) {
|
|
head.push(writeMetaTag(property,
|
|
escapeExpression(content)));
|
|
}
|
|
});
|
|
|
|
return head;
|
|
}
|
|
|
|
function getAjaxHelper(clientId, clientSecret) {
|
|
return '<script type="text/javascript" src="' +
|
|
getAssetUrl('public/ghost-sdk.js', true) +
|
|
'"></script>\n' +
|
|
'<script type="text/javascript">\n' +
|
|
'ghost.init({\n' +
|
|
'\tclientId: "' + clientId + '",\n' +
|
|
'\tclientSecret: "' + clientSecret + '"\n' +
|
|
'});\n' +
|
|
'</script>';
|
|
}
|
|
|
|
module.exports = function ghost_head(options) {
|
|
debug('begin');
|
|
|
|
// if server error page do nothing
|
|
if (this.statusCode >= 500) {
|
|
return;
|
|
}
|
|
|
|
var head = [],
|
|
globalCodeinjection = settingsCache.get('ghost_head'),
|
|
postCodeInjection = options.data.root && options.data.root.post ? options.data.root.post.codeinjection_head : null,
|
|
context = this.context ? this.context : null,
|
|
useStructuredData = !config.isPrivacyDisabled('useStructuredData'),
|
|
safeVersion = this.safeVersion,
|
|
referrerPolicy = config.get('referrerPolicy') ? config.get('referrerPolicy') : 'no-referrer-when-downgrade',
|
|
favicon = blogIconUtils.getIconUrl(),
|
|
iconType = blogIconUtils.getIconType(favicon);
|
|
|
|
debug('preparation complete, begin fetch');
|
|
return Promise
|
|
.join(getMetaData(this, options.data.root), getClient(), function handleData(metaData, client) {
|
|
debug('end fetch');
|
|
|
|
if (context) {
|
|
// head is our main array that holds our meta data
|
|
if (metaData.metaDescription && metaData.metaDescription.length > 0) {
|
|
head.push('<meta name="description" content="' + escapeExpression(metaData.metaDescription) + '" />');
|
|
}
|
|
|
|
head.push('<link rel="shortcut icon" href="' + favicon + '" type="image/' + iconType + '" />');
|
|
head.push('<link rel="canonical" href="' +
|
|
escapeExpression(metaData.canonicalUrl) + '" />');
|
|
head.push('<meta name="referrer" content="' + referrerPolicy + '" />');
|
|
|
|
// show amp link in post when 1. we are not on the amp page and 2. amp is enabled
|
|
if (_.includes(context, 'post') && !_.includes(context, 'amp') && settingsCache.get('amp')) {
|
|
head.push('<link rel="amphtml" href="' +
|
|
escapeExpression(metaData.ampUrl) + '" />');
|
|
}
|
|
|
|
if (metaData.previousUrl) {
|
|
head.push('<link rel="prev" href="' +
|
|
escapeExpression(metaData.previousUrl) + '" />');
|
|
}
|
|
|
|
if (metaData.nextUrl) {
|
|
head.push('<link rel="next" href="' +
|
|
escapeExpression(metaData.nextUrl) + '" />');
|
|
}
|
|
|
|
if (!_.includes(context, 'paged') && useStructuredData) {
|
|
head.push('');
|
|
head.push.apply(head, finaliseStructuredData(metaData));
|
|
head.push('');
|
|
|
|
if (metaData.schema) {
|
|
head.push('<script type="application/ld+json">\n' +
|
|
JSON.stringify(metaData.schema, null, ' ') +
|
|
'\n </script>\n');
|
|
}
|
|
}
|
|
|
|
if (client && client.id && client.secret && !_.includes(context, 'amp')) {
|
|
head.push(getAjaxHelper(client.id, client.secret));
|
|
}
|
|
}
|
|
|
|
head.push('<meta name="generator" content="Ghost ' +
|
|
escapeExpression(safeVersion) + '" />');
|
|
|
|
head.push('<link rel="alternate" type="application/rss+xml" title="' +
|
|
escapeExpression(metaData.blog.title) + '" href="' +
|
|
escapeExpression(metaData.rssUrl) + '" />');
|
|
|
|
// no code injection for amp context!!!
|
|
if (!_.includes(context, 'amp')) {
|
|
if (!_.isEmpty(globalCodeinjection)) {
|
|
head.push(globalCodeinjection);
|
|
}
|
|
|
|
if (!_.isEmpty(postCodeInjection)) {
|
|
head.push(postCodeInjection);
|
|
}
|
|
}
|
|
return filters.doFilter('ghost_head', head);
|
|
})
|
|
.then(function afterFilters(head) {
|
|
debug('end');
|
|
return new SafeString(head.join('\n ').trim());
|
|
})
|
|
.catch(function handleError(err) {
|
|
logging.error(err);
|
|
|
|
// Return what we have so far (currently nothing)
|
|
return new SafeString(head.join('\n ').trim());
|
|
});
|
|
};
|