Ghost/ghost/offers/index.js
Hannah Wolfe 3dcf85d5e4 Ensured correct usage of @tryghost/errors everywhere
refs: 23b383bedf

- @tryghost/error constructors take an object, not a string - the expectation is that message, context & help should all be set
- This does the bare minimum and just ensures message is set correctly
2022-02-15 12:30:36 +00:00

81 lines
2.5 KiB
JavaScript

/* eslint-disable max-lines */
// @TODO: Reduce file length and remove the line above
const DomainEvents = require('@tryghost/domain-events');
const OfferCodeChangeEvent = require('./lib/domain/events/OfferCodeChange');
const OfferCreatedEvent = require('./lib/domain/events/OfferCreated');
const OfferRepository = require('./lib/application/OfferRepository');
const OffersAPI = require('./lib/application/OffersAPI');
class OffersModule {
/**
* @param {OffersAPI} offersAPI
* @param {import('@tryghost/express-dynamic-redirects')} redirectManager
* @param {OfferRepository} repository
*/
constructor(offersAPI, redirectManager, repository) {
this.api = offersAPI;
this.repository = repository;
this.redirectManager = redirectManager;
}
/**
* @returns {Promise<void>}
*/
async init() {
DomainEvents.subscribe(OfferCodeChangeEvent, (event) => {
if (event.data.previousCode) {
this.redirectManager.removeRedirect(`/${event.data.previousCode.value}`);
}
this.redirectManager.addRedirect(
`/${event.data.currentCode.value}`,
`/#/portal/offers/${event.data.offerId}`,
{permanent: false}
);
});
DomainEvents.subscribe(OfferCreatedEvent, (event) => {
this.redirectManager.addRedirect(
`/${event.data.offer.code.value}`,
`/#/portal/offers/${event.data.offer.id}`,
{permanent: false}
);
});
const offers = await this.repository.getAll();
for (const offer of offers) {
this.redirectManager.addRedirect(
`/${offer.code.value}`,
`/#/portal/offers/${offer.id}`,
{permanent: false}
);
}
}
/**
* @param {object} deps
* @param {import('@tryghost/express-dynamic-redirects')} deps.redirectManager
* @param {any} deps.OfferModel
* @param {any} deps.OfferRedemptionModel
*
* @returns {OffersModule}
*/
static create(deps) {
const repository = new OfferRepository(deps.OfferModel, deps.OfferRedemptionModel);
const offersAPI = new OffersAPI(repository);
return new OffersModule(offersAPI, deps.redirectManager, repository);
}
static events = {
OfferCreatedEvent,
OfferCodeChangeEvent
};
static OfferRepository = OfferRepository;
static OffersAPI = OffersAPI;
}
module.exports = OffersModule;