2020-05-28 11:32:57 -04:00
|
|
|
import Controller from "@ember/controller";
|
2019-12-11 20:59:26 -05:00
|
|
|
import Customer from "discourse/plugins/discourse-subscriptions/discourse/models/customer";
|
|
|
|
import Subscription from "discourse/plugins/discourse-subscriptions/discourse/models/subscription";
|
2020-07-24 16:07:18 -04:00
|
|
|
import Transaction from "discourse/plugins/discourse-subscriptions/discourse/models/transaction";
|
2020-05-22 12:20:05 -04:00
|
|
|
import I18n from "I18n";
|
2019-10-10 21:26:01 -04:00
|
|
|
|
2020-05-28 11:32:57 -04:00
|
|
|
export default Controller.extend({
|
2020-07-22 12:06:34 -04:00
|
|
|
selectedPlan: null,
|
2019-12-12 18:41:14 -05:00
|
|
|
|
2019-10-10 21:26:01 -04:00
|
|
|
init() {
|
|
|
|
this._super(...arguments);
|
|
|
|
this.set(
|
|
|
|
"stripe",
|
2019-12-03 19:53:05 -05:00
|
|
|
Stripe(Discourse.SiteSettings.discourse_subscriptions_public_key)
|
2019-10-10 21:26:01 -04:00
|
|
|
);
|
|
|
|
const elements = this.get("stripe").elements();
|
2019-11-28 23:08:51 -05:00
|
|
|
|
2019-12-09 18:15:30 -05:00
|
|
|
this.set("cardElement", elements.create("card", { hidePostalCode: true }));
|
2019-10-10 21:26:01 -04:00
|
|
|
},
|
|
|
|
|
2019-12-12 18:41:14 -05:00
|
|
|
alert(path) {
|
|
|
|
bootbox.alert(I18n.t(`discourse_subscriptions.${path}`));
|
|
|
|
},
|
|
|
|
|
2020-01-14 02:46:48 -05:00
|
|
|
createSubscription(plan) {
|
2019-12-12 18:41:14 -05:00
|
|
|
return this.stripe.createToken(this.get("cardElement")).then(result => {
|
|
|
|
if (result.error) {
|
|
|
|
return result;
|
|
|
|
} else {
|
|
|
|
const customer = Customer.create({ source: result.token.id });
|
|
|
|
|
|
|
|
return customer.save().then(c => {
|
|
|
|
const subscription = Subscription.create({
|
|
|
|
customer: c.id,
|
|
|
|
plan: plan.get("id")
|
|
|
|
});
|
|
|
|
|
|
|
|
return subscription.save();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2020-07-24 16:07:18 -04:00
|
|
|
handleAuthentication(plan, transaction) {
|
|
|
|
return this.stripe
|
|
|
|
.confirmCardPayment(transaction.payment_intent.client_secret)
|
|
|
|
.then(result => {
|
|
|
|
if (
|
|
|
|
result.paymentIntent &&
|
|
|
|
result.paymentIntent.status === "succeeded"
|
|
|
|
) {
|
|
|
|
return result;
|
|
|
|
} else {
|
|
|
|
this.set("loading", false);
|
|
|
|
bootbox.alert(result.error.message || result.error);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
_advanceSuccessfulTransaction(plan) {
|
|
|
|
this.alert("plans.success");
|
|
|
|
this.set("loading", false);
|
|
|
|
|
|
|
|
this.transitionToRoute(
|
|
|
|
plan.type === "recurring"
|
|
|
|
? "user.billing.subscriptions"
|
|
|
|
: "user.billing.payments",
|
|
|
|
Discourse.User.current().username.toLowerCase()
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
2019-10-09 22:52:55 -04:00
|
|
|
actions: {
|
2019-10-10 21:26:01 -04:00
|
|
|
stripePaymentHandler() {
|
2019-11-13 21:43:18 -05:00
|
|
|
this.set("loading", true);
|
2019-12-09 18:55:24 -05:00
|
|
|
const plan = this.get("model.plans")
|
2020-07-22 12:06:34 -04:00
|
|
|
.filterBy("id", this.selectedPlan)
|
2019-12-09 18:55:24 -05:00
|
|
|
.get("firstObject");
|
|
|
|
|
|
|
|
if (!plan) {
|
2020-07-22 12:06:34 -04:00
|
|
|
this.alert("plans.validate.payment_options.required");
|
2019-12-09 18:55:24 -05:00
|
|
|
this.set("loading", false);
|
|
|
|
return;
|
|
|
|
}
|
2019-11-13 21:43:18 -05:00
|
|
|
|
2020-07-22 12:06:34 -04:00
|
|
|
let transaction = this.createSubscription(plan);
|
2019-12-12 18:41:14 -05:00
|
|
|
|
|
|
|
transaction
|
|
|
|
.then(result => {
|
|
|
|
if (result.error) {
|
|
|
|
bootbox.alert(result.error.message || result.error);
|
2020-07-24 16:07:18 -04:00
|
|
|
} else if (
|
|
|
|
result.status === "incomplete" ||
|
|
|
|
result.status === "open"
|
|
|
|
) {
|
|
|
|
const transactionId = result.id;
|
|
|
|
const planId = this.selectedPlan;
|
|
|
|
this.handleAuthentication(plan, result).then(
|
|
|
|
authenticationResult => {
|
|
|
|
if (authenticationResult && !authenticationResult.error) {
|
|
|
|
return Transaction.finalize(transactionId, planId).then(
|
|
|
|
() => {
|
|
|
|
this._advanceSuccessfulTransaction(plan);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2019-12-12 18:41:14 -05:00
|
|
|
);
|
2020-07-24 16:07:18 -04:00
|
|
|
} else {
|
|
|
|
this._advanceSuccessfulTransaction(plan);
|
2019-12-12 18:41:14 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch(result => {
|
|
|
|
bootbox.alert(result.errorThrown);
|
2019-11-13 21:43:18 -05:00
|
|
|
this.set("loading", false);
|
2019-12-12 18:41:14 -05:00
|
|
|
});
|
2019-10-09 22:52:55 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|