mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-03 16:38:22 +03:00
51e04c75ad
refs https://github.com/TryGhost/Team/issues/1408 - switched from `@nexes/nql` to `@tryghost/nql` and bumped `@tryghost/bookshelf-plugins` to get access to the latest NQL version across the app - adds "contains" operator support - `:~'string'` - contains - `:-~'string'` - does not contain - `:~^'string'` - starts with - `:-~^'string'` - does not start with - `:~$'string'` - ends with - `:-~$'string'` - does not end with - enables `'` escaping in strings, eg `'O\'Nolan'`
65 lines
1.4 KiB
JavaScript
65 lines
1.4 KiB
JavaScript
const nql = require('@tryghost/nql');
|
|
|
|
// @ts-check
|
|
/** @typedef { boolean } AccessFlag */
|
|
|
|
const PERMIT_ACCESS = true;
|
|
const BLOCK_ACCESS = false;
|
|
|
|
// TODO: better place to store this?
|
|
const MEMBER_NQL_EXPANSIONS = [{
|
|
key: 'labels',
|
|
replacement: 'labels.slug'
|
|
}, {
|
|
key: 'label',
|
|
replacement: 'labels.slug'
|
|
}, {
|
|
key: 'products',
|
|
replacement: 'products.slug'
|
|
}, {
|
|
key: 'product',
|
|
replacement: 'products.slug'
|
|
}];
|
|
|
|
/**
|
|
* @param {object} post - A post object to check access to
|
|
* @param {object} member - The member whos access should be checked
|
|
*
|
|
* @returns {AccessFlag}
|
|
*/
|
|
function checkPostAccess(post, member) {
|
|
if (post.visibility === 'public') {
|
|
return PERMIT_ACCESS;
|
|
}
|
|
|
|
if (!member) {
|
|
return BLOCK_ACCESS;
|
|
}
|
|
|
|
if (post.visibility === 'members') {
|
|
return PERMIT_ACCESS;
|
|
}
|
|
|
|
let visibility = post.visibility === 'paid' ? 'status:-free' : post.visibility;
|
|
if (visibility === 'tiers') {
|
|
if (!post.tiers) {
|
|
return BLOCK_ACCESS;
|
|
}
|
|
visibility = post.tiers.map((product) => {
|
|
return `product:${product.slug}`;
|
|
}).join(',');
|
|
}
|
|
|
|
if (visibility && member.status && nql(visibility, {expansions: MEMBER_NQL_EXPANSIONS}).queryJSON(member)) {
|
|
return PERMIT_ACCESS;
|
|
}
|
|
|
|
return BLOCK_ACCESS;
|
|
}
|
|
|
|
module.exports = {
|
|
checkPostAccess,
|
|
PERMIT_ACCESS,
|
|
BLOCK_ACCESS
|
|
};
|