7698729375
refs https://github.com/TryGhost/Team/issues/1168 This ensures that the correct email type is sent
83 lines
2.5 KiB
JavaScript
83 lines
2.5 KiB
JavaScript
const WebhookManager = require('./WebhookManager');
|
|
const StripeAPI = require('./StripeAPI');
|
|
const StripeMigrations = require('./Migrations');
|
|
const WebhookController = require('./WebhookController');
|
|
|
|
module.exports = class StripeService {
|
|
constructor({
|
|
membersService,
|
|
StripeWebhook,
|
|
models
|
|
}) {
|
|
const api = new StripeAPI();
|
|
const webhookManager = new WebhookManager({
|
|
StripeWebhook,
|
|
api
|
|
});
|
|
const migrations = new StripeMigrations({
|
|
models,
|
|
api
|
|
});
|
|
const webhookController = new WebhookController({
|
|
webhookManager,
|
|
api,
|
|
get memberRepository(){
|
|
return membersService.api.members;
|
|
},
|
|
get productRepository() {
|
|
return membersService.api.productRepository;
|
|
},
|
|
get eventRepository() {
|
|
return membersService.api.events;
|
|
},
|
|
sendSignupEmail(email){
|
|
return membersService.api.sendEmailWithMagicLink({
|
|
email,
|
|
requestedType: 'signup-paid',
|
|
options: {
|
|
forceEmailType: true
|
|
},
|
|
tokenData: {}
|
|
});
|
|
}
|
|
});
|
|
|
|
this.models = models;
|
|
this.api = api;
|
|
this.webhookManager = webhookManager;
|
|
this.migrations = migrations;
|
|
this.webhookController = webhookController;
|
|
}
|
|
|
|
async connect() {
|
|
}
|
|
|
|
async disconnect() {
|
|
await this.models.Product.forge().query().update({
|
|
monthly_price_id: null,
|
|
yearly_price_id: null
|
|
});
|
|
await this.models.StripePrice.forge().query().del();
|
|
await this.models.StripeProduct.forge().query().del();
|
|
await this.models.MemberStripeCustomer.forge().query().del();
|
|
await this.models.Offer.forge().query().update({
|
|
stripe_coupon_id: null
|
|
});
|
|
await this.webhookManager.stop();
|
|
}
|
|
|
|
async configure(config) {
|
|
this.api.configure({
|
|
secretKey: config.secretKey,
|
|
publicKey: config.publicKey,
|
|
enablePromoCodes: config.enablePromoCodes
|
|
});
|
|
|
|
await this.webhookManager.configure({
|
|
webhookSecret: config.webhookSecret,
|
|
webhookHandlerUrl: config.webhookHandlerUrl
|
|
});
|
|
await this.webhookManager.start();
|
|
}
|
|
};
|