2019-02-25 17:55:55 +03:00
|
|
|
import ApplicationAdapter from 'ghost-admin/adapters/application';
|
|
|
|
|
2022-02-02 19:57:22 +03:00
|
|
|
export default class Post extends ApplicationAdapter {
|
2019-02-25 17:55:55 +03:00
|
|
|
// posts and pages now include everything by default
|
|
|
|
buildIncludeURL(store, modelName, id, snapshot, requestType, query) {
|
2022-04-06 12:22:00 +03:00
|
|
|
const url = this.buildURL(modelName, id, snapshot, requestType, query);
|
|
|
|
const parsedUrl = new URL(url);
|
2019-11-14 20:33:35 +03:00
|
|
|
|
2022-04-06 12:22:00 +03:00
|
|
|
if (snapshot?.adapterOptions?.sendEmailWhenPublished) {
|
2021-05-07 13:58:05 +03:00
|
|
|
let emailRecipientFilter = snapshot.adapterOptions.sendEmailWhenPublished;
|
|
|
|
|
|
|
|
if (emailRecipientFilter === 'status:free,status:-free') {
|
|
|
|
emailRecipientFilter = 'all';
|
|
|
|
}
|
|
|
|
|
|
|
|
parsedUrl.searchParams.append('email_recipient_filter', emailRecipientFilter);
|
2019-11-14 20:33:35 +03:00
|
|
|
}
|
|
|
|
|
2022-04-06 12:22:00 +03:00
|
|
|
if (snapshot?.adapterOptions?.newsletterId) {
|
|
|
|
const newsletterId = snapshot.adapterOptions.newsletterId;
|
|
|
|
parsedUrl.searchParams.append('newsletter_id', newsletterId);
|
|
|
|
}
|
|
|
|
|
2019-11-14 20:33:35 +03:00
|
|
|
return parsedUrl.toString();
|
2022-02-02 19:57:22 +03:00
|
|
|
}
|
2019-02-25 17:55:55 +03:00
|
|
|
|
|
|
|
buildQuery(store, modelName, options) {
|
|
|
|
return options;
|
|
|
|
}
|
2022-02-02 19:57:22 +03:00
|
|
|
}
|