TryGhost/Ghost

View on GitHub
ghost/core/core/frontend/meta/context-object.js

Summary

Maintainability
A
1 hr
Test Coverage
const settingsCache = require('../../shared/settings-cache');
const _ = require('lodash');

function getContextObject(data, context) {
    let chosenContext;

    // @TODO: meta layer is very broken, it's really hard to understand what it's doing
    // The problem is that handlebars root object is structured differently. Sometimes the object is flat on data
    // and sometimes the object is part of a key e.g. data.post. This needs to be prepared at the very first stage and not in each helper.
    if ((_.includes(context, 'page') || _.includes(context, 'amp')) && data.post) {
        chosenContext = data.post;
    } else if (_.includes(context, 'post') && data.post) {
        chosenContext = data.post;
    } else if (_.includes(context, 'page') && data.page) {
        chosenContext = data.page;
    } else if (_.includes(context, 'tag') && data.tag) {
        chosenContext = data.tag;
    } else if (_.includes(context, 'author') && data.author) {
        chosenContext = data.author;
    } else if (data[context]) {
        // @NOTE: This is confusing as hell. It tries to get data[['author']], which works, but coincidence?
        chosenContext = data[context];
    }

    // If the data object does not contain the requested context, we return the fallback object.
    if (!chosenContext) {
        chosenContext = {
            cover_image: settingsCache.get('cover_image'),
            twitter: settingsCache.get('twitter'),
            facebook: settingsCache.get('facebook')
        };
    }

    return chosenContext;
}

module.exports = getContextObject;