diff --git a/core/frontend/services/routing/controllers/entry.js b/core/frontend/services/routing/controllers/entry.js index 0e8520c015..5eb7a5ec3e 100644 --- a/core/frontend/services/routing/controllers/entry.js +++ b/core/frontend/services/routing/controllers/entry.js @@ -83,12 +83,6 @@ module.exports = function entryController(req, res, next) { })); } - // CASE: Add access property to entry for v3+ api - // @TODO: reconsider the location of this - it's part of members - if (res.locals.apiVersion !== 'v0.1' && res.locals.apiVersion !== 'v2') { - entry.access = !!entry.html; - } - helpers.secure(req, entry); const renderer = helpers.renderEntry(req, res); diff --git a/core/server/api/canary/utils/serializers/output/utils/post-gating.js b/core/server/api/canary/utils/serializers/output/utils/post-gating.js index 0511856d40..d73f41e5e3 100644 --- a/core/server/api/canary/utils/serializers/output/utils/post-gating.js +++ b/core/server/api/canary/utils/serializers/output/utils/post-gating.js @@ -1,6 +1,7 @@ const membersService = require('../../../../../../services/members'); const labs = require('../../../../../../services/labs'); +// @TODO: reconsider the location of this - it's part of members and adds a property to the API const forPost = (attrs, frame) => { if (labs.isSet('members')) { const memberHasAccess = membersService.contentGating.checkPostAccess(attrs, frame.original.context.member); @@ -12,8 +13,11 @@ const forPost = (attrs, frame) => { } }); } - } + if (!Object.prototype.hasOwnProperty.call(frame.options, 'columns') || (frame.options.columns.includes('access'))) { + attrs.access = memberHasAccess; + } + } return attrs; }; diff --git a/test/regression/api/canary/content/posts_spec.js b/test/regression/api/canary/content/posts_spec.js index 4364ffd06a..dd7bf5a371 100644 --- a/test/regression/api/canary/content/posts_spec.js +++ b/test/regression/api/canary/content/posts_spec.js @@ -227,6 +227,7 @@ describe('api/canary/content/posts', function () { let publicPost; let membersPost; let paidPost; + let contentGatingFields = ['access']; before(function () { // NOTE: ideally this would be set through Admin API request not a stub @@ -290,7 +291,7 @@ describe('api/canary/content/posts', function () { should.exist(jsonResponse.posts); const post = jsonResponse.posts[0]; - localUtils.API.checkResponse(post, 'post', null, null); + localUtils.API.checkResponse(post, 'post', contentGatingFields, null); post.slug.should.eql('thou-shalt-not-be-seen'); post.html.should.eql(''); }); @@ -308,7 +309,7 @@ describe('api/canary/content/posts', function () { should.exist(jsonResponse.posts); const post = jsonResponse.posts[0]; - localUtils.API.checkResponse(post, 'post', null, null); + localUtils.API.checkResponse(post, 'post', contentGatingFields, null); post.slug.should.eql('thou-shalt-be-paid-for'); post.html.should.eql(''); }); @@ -347,7 +348,7 @@ describe('api/canary/content/posts', function () { should.exist(jsonResponse.posts); localUtils.API.checkResponse(jsonResponse, 'posts'); jsonResponse.posts.should.have.length(14); - localUtils.API.checkResponse(jsonResponse.posts[0], 'post'); + localUtils.API.checkResponse(jsonResponse.posts[0], 'post', contentGatingFields, null); localUtils.API.checkResponse(jsonResponse.meta.pagination, 'pagination'); _.isBoolean(jsonResponse.posts[0].featured).should.eql(true); diff --git a/test/regression/api/v3/content/posts_spec.js b/test/regression/api/v3/content/posts_spec.js index 2e7fab73e9..ba333e4b81 100644 --- a/test/regression/api/v3/content/posts_spec.js +++ b/test/regression/api/v3/content/posts_spec.js @@ -227,6 +227,7 @@ describe('api/v3/content/posts', function () { let publicPost; let membersPost; let paidPost; + let contentGatingFields = ['access']; before(function () { // NOTE: ideally this would be set through Admin API request not a stub @@ -290,7 +291,7 @@ describe('api/v3/content/posts', function () { should.exist(jsonResponse.posts); const post = jsonResponse.posts[0]; - localUtils.API.checkResponse(post, 'post', null, null); + localUtils.API.checkResponse(post, 'post', contentGatingFields, null); post.slug.should.eql('thou-shalt-not-be-seen'); post.html.should.eql(''); }); @@ -308,7 +309,7 @@ describe('api/v3/content/posts', function () { should.exist(jsonResponse.posts); const post = jsonResponse.posts[0]; - localUtils.API.checkResponse(post, 'post', null, null); + localUtils.API.checkResponse(post, 'post', contentGatingFields, null); post.slug.should.eql('thou-shalt-be-paid-for'); post.html.should.eql(''); }); @@ -347,7 +348,7 @@ describe('api/v3/content/posts', function () { should.exist(jsonResponse.posts); localUtils.API.checkResponse(jsonResponse, 'posts'); jsonResponse.posts.should.have.length(14); - localUtils.API.checkResponse(jsonResponse.posts[0], 'post'); + localUtils.API.checkResponse(jsonResponse.posts[0], 'post', contentGatingFields, null); localUtils.API.checkResponse(jsonResponse.meta.pagination, 'pagination'); _.isBoolean(jsonResponse.posts[0].featured).should.eql(true); diff --git a/test/unit/api/canary/utils/serializers/output/utils/post-gating_spec.js b/test/unit/api/canary/utils/serializers/output/utils/post-gating_spec.js index 2aa77bb7d0..63ba253ffa 100644 --- a/test/unit/api/canary/utils/serializers/output/utils/post-gating_spec.js +++ b/test/unit/api/canary/utils/serializers/output/utils/post-gating_spec.js @@ -32,6 +32,7 @@ describe('Unit: canary/utils/serializers/output/utils/post-gating', function () }; const frame = { + options: {}, original: { context: {} } @@ -50,6 +51,7 @@ describe('Unit: canary/utils/serializers/output/utils/post-gating', function () }; const frame = { + options: {}, original: { context: {} } @@ -69,6 +71,7 @@ describe('Unit: canary/utils/serializers/output/utils/post-gating', function () }; const frame = { + options: {}, original: { context: { member: {} @@ -90,6 +93,7 @@ describe('Unit: canary/utils/serializers/output/utils/post-gating', function () }; const frame = { + options: {}, original: { context: { member: { @@ -115,6 +119,7 @@ describe('Unit: canary/utils/serializers/output/utils/post-gating', function () }; const frame = { + options: {}, original: { context: { member: {