mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
1882278b5b
- 🛠 add bunyan and prettyjson, remove morgan - ✨ add logging module - GhostLogger class that handles setup of bunyan - PrettyStream for stdout - ✨ config for logging - @TODO: testing level fatal? - ✨ log each request via GhostLogger (express middleware) - @TODO: add errors to output - 🔥 remove errors.updateActiveTheme - we can read the value from config - 🔥 remove 15 helper functions in core/server/errors/index.js - all these functions get replaced by modules: 1. logging 2. error middleware handling for html/json 3. error creation (which will be part of PR #7477) - ✨ add express error handler for html/json - one true error handler for express responses - contains still some TODO's, but they are not high priority for first implementation/integration - this middleware only takes responsibility of either rendering html responses or return json error responses - 🎨 use new express error handler in middleware/index - 404 and 500 handling - 🎨 return error instead of error message in permissions/index.js - the rule for error handling should be: if you call a unit, this unit should return a custom Ghost error - 🎨 wrap serve static module - rule: if you call a module/unit, you should always wrap this error - it's always the same rule - so the caller never has to worry about what comes back - it's always a clear error instance - in this case: we return our notfounderror if serve static does not find the resource - this avoid having checks everywhere - 🎨 replace usages of errors/index.js functions and adapt tests - use logging.error, logging.warn - make tests green - remove some usages of logging and throwing api errors -> because when a request is involved, logging happens automatically - 🐛 return errorDetails to Ghost-Admin - errorDetails is used for Theme error handling - 🎨 use 500er error for theme is missing error in theme-handler - 🎨 extend file rotation to 1w
127 lines
4.0 KiB
JavaScript
127 lines
4.0 KiB
JavaScript
// # Foreach Helper
|
|
// Usage: `{{#foreach data}}{{/foreach}}`
|
|
//
|
|
// Block helper designed for looping through posts
|
|
var hbs = require('express-hbs'),
|
|
_ = require('lodash'),
|
|
logging = require('../logging'),
|
|
i18n = require('../i18n'),
|
|
labs = require('../utils/labs'),
|
|
utils = require('./utils'),
|
|
|
|
hbsUtils = hbs.handlebars.Utils,
|
|
foreach;
|
|
|
|
function filterItemsByVisibility(items, options) {
|
|
var visibility = utils.parseVisibility(options);
|
|
|
|
if (!labs.isSet('internalTags') || _.includes(visibility, 'all')) {
|
|
return items;
|
|
}
|
|
|
|
function visibilityFilter(item) {
|
|
// If the item doesn't have a visibility property && options.hash.visibility wasn't set
|
|
// We return the item, else we need to be sure that this item has the property
|
|
if (!item.visibility && !options.hash.visibility || _.includes(visibility, item.visibility)) {
|
|
return item;
|
|
}
|
|
}
|
|
|
|
// We don't want to change the structure of what is returned
|
|
return _.isArray(items) ? _.filter(items, visibilityFilter) : _.pickBy(items, visibilityFilter);
|
|
}
|
|
|
|
foreach = function (items, options) {
|
|
if (!options) {
|
|
logging.warn(i18n.t('warnings.helpers.foreach.iteratorNeeded'));
|
|
}
|
|
|
|
if (hbsUtils.isFunction(items)) {
|
|
items = items.call(this);
|
|
}
|
|
|
|
// Exclude items which should not be visible in the theme
|
|
items = filterItemsByVisibility(items, options);
|
|
|
|
// Initial values set based on parameters sent through. If nothing sent, set to defaults
|
|
var fn = options.fn,
|
|
inverse = options.inverse,
|
|
columns = options.hash.columns,
|
|
length = _.size(items),
|
|
limit = parseInt(options.hash.limit, 10) || length,
|
|
from = parseInt(options.hash.from, 10) || 1,
|
|
to = parseInt(options.hash.to, 10) || length,
|
|
output = '',
|
|
data,
|
|
contextPath;
|
|
|
|
// If a limit option was sent through (aka not equal to default (length))
|
|
// and from plus limit is less than the length, set to to the from + limit
|
|
if ((limit < length) && ((from + limit) <= length)) {
|
|
to = (from - 1) + limit;
|
|
}
|
|
|
|
if (options.data && options.ids) {
|
|
contextPath = hbsUtils.appendContextPath(options.data.contextPath, options.ids[0]) + '.';
|
|
}
|
|
|
|
if (options.data) {
|
|
data = hbs.handlebars.createFrame(options.data);
|
|
}
|
|
|
|
function execIteration(field, index, last) {
|
|
if (data) {
|
|
data.key = field;
|
|
data.index = index;
|
|
data.number = index + 1;
|
|
data.first = index === from - 1; // From uses 1-indexed, but array uses 0-indexed
|
|
data.last = !!last;
|
|
data.even = index % 2 === 1;
|
|
data.odd = !data.even;
|
|
data.rowStart = index % columns === 0;
|
|
data.rowEnd = index % columns === (columns - 1);
|
|
if (contextPath) {
|
|
data.contextPath = contextPath + field;
|
|
}
|
|
}
|
|
|
|
output = output + fn(items[field], {
|
|
data: data,
|
|
blockParams: hbsUtils.blockParams([items[field], field], [contextPath + field, null])
|
|
});
|
|
}
|
|
|
|
function iterateCollection(context) {
|
|
// Context is all posts on the blog
|
|
var count = 1,
|
|
current = 1;
|
|
|
|
// For each post, if it is a post number that fits within the from and to
|
|
// send the key to execIteration to set to be added to the page
|
|
_.each(context, function (item, key) {
|
|
if (current < from) {
|
|
current += 1;
|
|
return;
|
|
}
|
|
|
|
if (current <= to) {
|
|
execIteration(key, current - 1, current === to);
|
|
}
|
|
count += 1;
|
|
current += 1;
|
|
});
|
|
}
|
|
|
|
if (items && typeof items === 'object') {
|
|
iterateCollection(items);
|
|
}
|
|
|
|
if (length === 0) {
|
|
output = inverse(this);
|
|
}
|
|
|
|
return output;
|
|
};
|
|
|
|
module.exports = foreach;
|