mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-27 22:49:56 -05:00
a441825c3f
no-issue The MembersAPI using the OfferRepository coupled it to the internals of the Offers Module - instead we pass the "external" API - so that we can change the internals, and not have to update the MembersAPI's usage.
63 lines
2 KiB
JavaScript
63 lines
2 KiB
JavaScript
const labs = require('../../../shared/labs');
|
|
const events = require('../../lib/common/events');
|
|
|
|
const DynamicRedirectManager = require('@tryghost/express-dynamic-redirects');
|
|
const OffersModule = require('@tryghost/members-offers');
|
|
|
|
const stripeService = require('../stripe');
|
|
|
|
const config = require('../../../shared/config');
|
|
const urlUtils = require('../../../shared/url-utils');
|
|
const models = require('../../models');
|
|
|
|
const redirectManager = new DynamicRedirectManager({
|
|
permanentMaxAge: config.get('caching:customRedirects:maxAge'),
|
|
getSubdirectoryURL: (pathname) => {
|
|
return urlUtils.urlJoin(urlUtils.getSubdir(), pathname);
|
|
}
|
|
});
|
|
|
|
module.exports = {
|
|
async init() {
|
|
const offersModule = OffersModule.create({
|
|
OfferModel: models.Offer,
|
|
redirectManager: redirectManager,
|
|
stripeAPIService: stripeService.api
|
|
});
|
|
|
|
this.api = offersModule.api;
|
|
|
|
let initCalled = false;
|
|
if (labs.isSet('offers')) {
|
|
// handles setting up redirects
|
|
const promise = offersModule.init();
|
|
initCalled = true;
|
|
await promise;
|
|
}
|
|
|
|
// TODO: Delete after GA
|
|
let offersEnabled = labs.isSet('offers');
|
|
events.on('settings.labs.edited', async () => {
|
|
if (labs.isSet('offers') && !initCalled) {
|
|
const promise = offersModule.init();
|
|
initCalled = true;
|
|
await promise;
|
|
} else if (labs.isSet('offers') !== offersEnabled) {
|
|
offersEnabled = labs.isSet('offers');
|
|
|
|
if (offersEnabled) {
|
|
const offers = await this.api.listOffers();
|
|
for (const offer of offers) {
|
|
redirectManager.addRedirect(`/${offer.code}`, `/#/portal/offers/${offer.id}`, {permanent: false});
|
|
}
|
|
} else {
|
|
redirectManager.removeAllRedirects();
|
|
}
|
|
}
|
|
});
|
|
},
|
|
|
|
api: null,
|
|
|
|
middleware: redirectManager.handleRequest
|
|
};
|