2020-09-08 07:15:47 +03:00
|
|
|
const _ = require('lodash');
|
|
|
|
|
|
|
|
const order = function order(Bookshelf) {
|
|
|
|
Bookshelf.Model = Bookshelf.Model.extend({
|
|
|
|
orderAttributes() {},
|
|
|
|
|
|
|
|
parseOrderOption: function (orderQueryString, withRelated) {
|
|
|
|
let orderAttributes;
|
|
|
|
let result;
|
2020-11-02 14:15:24 +03:00
|
|
|
let rules = [];
|
2020-09-08 07:15:47 +03:00
|
|
|
|
|
|
|
orderAttributes = this.orderAttributes();
|
|
|
|
if (withRelated && withRelated.indexOf('count.posts') > -1) {
|
|
|
|
orderAttributes.push('count.posts');
|
|
|
|
}
|
|
|
|
result = {};
|
2020-11-02 14:15:24 +03:00
|
|
|
|
|
|
|
// CASE: repeat order query parameter keys are present
|
|
|
|
if (_.isArray(orderQueryString)) {
|
|
|
|
orderQueryString.forEach((qs) => {
|
|
|
|
rules.push(...qs.split(','));
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
rules = orderQueryString.split(',');
|
|
|
|
}
|
2020-09-08 07:15:47 +03:00
|
|
|
|
|
|
|
_.each(rules, function (rule) {
|
|
|
|
let match;
|
|
|
|
let field;
|
|
|
|
let direction;
|
|
|
|
|
|
|
|
match = /^([a-z0-9_.]+)\s+(asc|desc)$/i.exec(rule.trim());
|
|
|
|
|
|
|
|
// invalid order syntax
|
|
|
|
if (!match) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
field = match[1].toLowerCase();
|
|
|
|
direction = match[2].toUpperCase();
|
|
|
|
|
2020-09-24 04:32:40 +03:00
|
|
|
const matchingOrderAttribute = orderAttributes.find((orderAttribute) => {
|
|
|
|
// NOTE: this logic assumes we use different field names for "parent" and "child" relations.
|
|
|
|
// E.g.: ['parent.title', 'child.title'] and ['child.title', 'parent.title'] - would not
|
|
|
|
// distinguish on which relation to sort neither which order to pick the fields on.
|
|
|
|
// For more context see: https://github.com/TryGhost/Ghost/pull/12226#discussion_r493085098
|
|
|
|
return orderAttribute.endsWith(field);
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!matchingOrderAttribute) {
|
2020-09-08 07:15:47 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-09-24 04:32:40 +03:00
|
|
|
result[matchingOrderAttribute] = direction;
|
2020-09-08 07:15:47 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = order;
|