mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-10 23:36:14 -05:00
refs #8703 - Always always call cb() even if we get an error! - Ensure the error is handled, and converted to a GhostError if not already - If we're in development mode, render the error. Else render nothing.
41 lines
1.5 KiB
JavaScript
41 lines
1.5 KiB
JavaScript
var hbs = require('../themes/engine'),
|
|
Promise = require('bluebird'),
|
|
config = require('../config'),
|
|
errors = require('../errors'),
|
|
logging = require('../logging');
|
|
|
|
// Register an async handlebars helper for a given handlebars instance
|
|
function asyncHelperWrapper(hbs, name, fn) {
|
|
hbs.registerAsyncHelper(name, function returnAsync(context, options, cb) {
|
|
// Handle the case where we only get context and cb
|
|
if (!cb) {
|
|
cb = options;
|
|
options = undefined;
|
|
}
|
|
|
|
// Wrap the function passed in with a when.resolve so it can return either a promise or a value
|
|
Promise.resolve(fn.call(this, context, options)).then(function asyncHelperSuccess(result) {
|
|
cb(result);
|
|
}).catch(function asyncHelperError(err) {
|
|
var wrappedErr = err instanceof errors.GhostError ? err : new errors.IncorrectUsageError({
|
|
err: err,
|
|
context: 'registerAsyncThemeHelper: ' + name
|
|
}),
|
|
result = config.get('env') === 'development' ? wrappedErr : '';
|
|
|
|
logging.error(wrappedErr);
|
|
|
|
cb(new hbs.SafeString(result));
|
|
});
|
|
});
|
|
}
|
|
|
|
// Register a handlebars helper for themes
|
|
module.exports.registerThemeHelper = function registerThemeHelper(name, fn) {
|
|
hbs.registerHelper(name, fn);
|
|
};
|
|
|
|
// Register an async handlebars helper for themes
|
|
module.exports.registerAsyncThemeHelper = function registerAsyncThemeHelper(name, fn) {
|
|
asyncHelperWrapper(hbs, name, fn);
|
|
};
|