Ghost/core/server
Kevin Ansfield c36e749820
Added support for gating content by member labels and products (#12946)
refs https://github.com/TryGhost/Team/issues/581
closes https://github.com/TryGhost/Team/issues/582

Emails can now be sent to members with specific associated labels or products by specifying an NQL string. We want to bring the same members segment feature to content by allowing `visibility` to be an NQL filter string on top of the `public/members/paid` special-case strings.

As an example it's possible to set `posts.visibility` to `label:vip` to make a post available only to those members with the `vip` label.

- removed enum validations for `visibility` so it now accepts any string or `null`
    - bumped `@tryghost/admin-api-schema` for API-level validation changes
- added nql validation to API input validators by running the visibility query against the members model
- added transform of NQL to special-case visibility values when saving post model
    - ensures there's a single way of representing "members" and "paid" where NQL gives multiple ways of representing the same segment
    - useful for keeping theme-level checks such as `{{#has visibility="paid"}}` working as expected
- updated content-gating to parse nql from post's visibility and use it to query the currently logged in member to see if there's a match
    - bumped @tryghost/members-api to include label and product data when loading member
2021-05-10 19:32:11 +01:00
..
adapters Moved i18n to shared 2021-05-04 13:03:38 +01:00
api Added support for gating content by member labels and products (#12946) 2021-05-10 19:32:11 +01:00
data Added support for gating content by member labels and products (#12946) 2021-05-10 19:32:11 +01:00
lib Extracted package-json lib to Utils 2021-05-07 12:35:06 +01:00
models Added support for gating content by member labels and products (#12946) 2021-05-10 19:32:11 +01:00
public New logo in Admin (#12768) 2021-03-18 17:27:27 +00:00
services Added support for gating content by member labels and products (#12946) 2021-05-10 19:32:11 +01:00
views Added new, simpler, linear boot process 2021-02-08 11:56:44 +00:00
web Moved i18n to shared 2021-05-04 13:03:38 +01:00
analytics-events.js Expanded requires of lib/common i18n and events 2021-05-03 17:14:52 +01:00
ghost-server.js Refactored urlUtils out of ghost-server 2021-05-05 14:24:59 +01:00
notify.js Refactored notify to send started + ready 2021-02-19 20:42:10 +00:00
overrides.js Moved sqlite3 override rules to db connection lib 2021-02-05 11:51:56 +00:00
update-check.js Moved i18n to shared 2021-05-04 13:03:38 +01:00