ente/src/services/billingService.ts
2022-01-24 14:58:41 +05:30

199 lines
5.8 KiB
TypeScript

import { getEndpoint, getPaymentsURL } from 'utils/common/apiUtil';
import { getToken } from 'utils/common/key';
import { setData, LS_KEYS } from 'utils/storage/localStorage';
import { convertToHumanReadable } from 'utils/billing';
import HTTPService from './HTTPService';
import { logError } from 'utils/sentry';
import { getPaymentToken } from './userService';
import { Plan, Subscription } from 'types/billing';
const ENDPOINT = getEndpoint();
enum PaymentActionType {
Buy = 'buy',
Update = 'update',
}
class billingService {
public async getPlans(): Promise<Plan[]> {
const token = getToken();
try {
let response;
if (!token) {
response = await HTTPService.get(
`${ENDPOINT}/billing/plans/v2`
);
} else {
response = await HTTPService.get(
`${ENDPOINT}/billing/user-plans`,
null,
{
'X-Auth-Token': getToken(),
}
);
}
const { plans } = response.data;
return plans;
} catch (e) {
logError(e, 'failed to get plans');
}
}
public async syncSubscription() {
try {
const response = await HTTPService.get(
`${ENDPOINT}/billing/subscription`,
null,
{
'X-Auth-Token': getToken(),
}
);
const { subscription } = response.data;
setData(LS_KEYS.SUBSCRIPTION, subscription);
} catch (e) {
logError(e, "failed to get user's subscription details");
}
}
public async buySubscription(productID: string) {
try {
const paymentToken = await getPaymentToken();
await this.redirectToPayments(
paymentToken,
productID,
PaymentActionType.Buy
);
} catch (e) {
logError(e, 'unable to buy subscription');
throw e;
}
}
public async updateSubscription(productID: string) {
try {
const paymentToken = await getPaymentToken();
await this.redirectToPayments(
paymentToken,
productID,
PaymentActionType.Update
);
} catch (e) {
logError(e, 'subscription update failed');
throw e;
}
}
public async cancelSubscription() {
try {
const response = await HTTPService.post(
`${ENDPOINT}/billing/stripe/cancel-subscription`,
null,
null,
{
'X-Auth-Token': getToken(),
}
);
const { subscription } = response.data;
setData(LS_KEYS.SUBSCRIPTION, subscription);
} catch (e) {
logError(e, 'subscription cancel failed');
throw e;
}
}
public async activateSubscription() {
try {
const response = await HTTPService.post(
`${ENDPOINT}/billing/stripe/activate-subscription`,
null,
null,
{
'X-Auth-Token': getToken(),
}
);
const { subscription } = response.data;
setData(LS_KEYS.SUBSCRIPTION, subscription);
} catch (e) {
logError(e, 'failed to activate subscription');
throw e;
}
}
public async verifySubscription(
sessionID: string = null
): Promise<Subscription> {
try {
const token = getToken();
if (!token) {
return;
}
const response = await HTTPService.post(
`${ENDPOINT}/billing/verify-subscription`,
{
paymentProvider: 'stripe',
productID: null,
VerificationData: sessionID,
},
null,
{
'X-Auth-Token': token,
}
);
const { subscription } = response.data;
setData(LS_KEYS.SUBSCRIPTION, subscription);
return subscription;
} catch (err) {
logError(err, 'Error while verifying subscription');
throw err;
}
}
public async redirectToPayments(
paymentToken: string,
productID: string,
action: string
) {
try {
window.location.href = `${getPaymentsURL()}?productID=${productID}&paymentToken=${paymentToken}&action=${action}&redirectURL=${
window.location.origin
}/gallery`;
} catch (e) {
logError(e, 'unable to get payments url');
throw e;
}
}
public async redirectToCustomerPortal() {
try {
const response = await HTTPService.get(
`${ENDPOINT}/billing/stripe/customer-portal`,
{ redirectURL: `${window.location.origin}/gallery` },
{
'X-Auth-Token': getToken(),
}
);
window.location.href = response.data.url;
} catch (e) {
logError(e, 'unable to get customer portal url');
throw e;
}
}
public async getUsage() {
try {
const response = await HTTPService.get(
`${ENDPOINT}/billing/usage`,
{ startTime: 0, endTime: Date.now() * 1000 },
{
'X-Auth-Token': getToken(),
}
);
return convertToHumanReadable(response.data.usage);
} catch (e) {
logError(e, 'error getting usage');
}
}
}
export default new billingService();