const DomainEvents = require('@tryghost/domain-events'); const OfferCodeChangeEvent = require('./events/OfferCodeChange'); const Offer = require('./domain/models/Offer'); /** * @typedef {object} OfferRepositoryOptions * @prop {import('knex').Transaction} transacting */ /** * @param {any} json * @returns {Offer.OfferCreateProps} */ function toDomain(json) { return { id: json.id, name: json.name, code: json.code, display_title: json.portal_title, display_description: json.portal_description, type: json.discount_type === 'amount' ? 'fixed' : 'percent', amount: json.discount_amount, cadence: json.interval, currency: json.currency, duration: json.duration, stripe_coupon_id: json.stripe_coupon_id, tier: { id: json.product.id, name: json.product.name } }; } class OfferRepository { /** * @param {{forge: (data: object) => import('bookshelf').Model}} OfferModel * @param {import('@tryghost/members-stripe-service')} stripeAPIService */ constructor(OfferModel, stripeAPIService) { /** @private */ this.OfferModel = OfferModel; /** @private */ this.stripeAPIService = stripeAPIService; } /** * @template T * @param {(t: import('knex').Transaction) => Promise} cb * @returns {Promise} */ async createTransaction(cb) { return this.OfferModel.transaction(cb); } /** * @param {string} name * @param {OfferRepositoryOptions} [options] * @returns {Promise} */ async existsByName(name, options) { const model = await this.OfferModel.findOne({name}, options); if (!model) { return false; } return true; } /** * @param {string} code * @param {OfferRepositoryOptions} [options] * @returns {Promise} */ async existsByCode(code, options) { const model = await this.OfferModel.findOne({code}, options); if (!model) { return false; } return true; } /** * @param {string} id * @param {OfferRepositoryOptions} [options] * @returns {Promise} */ async getById(id, options) { const model = await this.OfferModel.findOne({id}, { ...options, withRelated: ['product'] }); const json = model.toJSON(); return Offer.create(toDomain(json)); } /** * @param {OfferRepositoryOptions} [options] * @returns {Promise} */ async getAll(options) { const models = await this.OfferModel.findAll({ ...options, withRelated: ['product'] }); return Promise.all(models.toJSON().map(toDomain).map(Offer.create)); } /** * @param {Offer} offer * @param {OfferRepositoryOptions} [options] * @returns {Promise} */ async save(offer, options) { const model = this.OfferModel.forge({ id: offer.id, name: offer.name.value, code: offer.code.value, portal_title: offer.displayTitle.value, portal_description: offer.displayDescription.value, discount_type: offer.type.value === 'fixed' ? 'amount' : 'percent', discount_amount: offer.amount.value, interval: offer.cadence.value, product_id: offer.tier.id, duration: offer.duration.value, currency: offer.currency.value }); if (offer.codeChanged || offer.isNew) { const event = OfferCodeChangeEvent.create({ offerId: offer.id, previousCodes: offer.isNew ? null : offer.oldCodes, currentCode: offer.code }); DomainEvents.dispatch(event); } if (offer.isNew) { /** @type {import('stripe').Stripe.CouponCreateParams} */ const coupon = { name: offer.name.value, duration: 'once' }; if (offer.type.value === 'percent') { coupon.percent_off = offer.amount.value; } else { coupon.amount_off = offer.amount.value; coupon.currency = offer.currency.value; } const couponData = await this.stripeAPIService.createCoupon(coupon); model.set('stripe_coupon_id', couponData.id); await model.save(null, {method: 'insert', ...options}); } else { await model.save(null, {method: 'update', ...options}); } } } module.exports = OfferRepository;