UNPKG

bc-payments-sdk

Version:

BetterCommerce's Payments NodeJS SDK is a complete solution for storefront clients that integrate payments. `bc-payments-sdk` is a single point interface for storefront clients for interacting with payment gateways.

77 lines (76 loc) 3.12 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.StripePayment = void 0; // Package Imports const bc_stripe_sdk_1 = require("bc-stripe-sdk"); const BasePaymentProvider_1 = require("../../base/entity/BasePaymentProvider"); /** * Class {StripePayment} extends {BasePaymentProvider} and implements {IPaymentProvider}. * It provides the concrete implementation of the Stripe payment provider. * * @class StripePayment * @extends BasePaymentProvider * @implements IPaymentProvider * * @remark * This class is responsible for initializing the Stripe SDK and providing the concrete * implementation of the Stripe payment provider methods. */ class StripePayment extends BasePaymentProvider_1.BasePaymentProvider { /** * Initializes a payment intent using the Stripe payment gateway. * * This method initializes the SDK and attempts to create a payment intent * with the provided data. If successful, it returns the result of the intent * creation. If the SDK initialization fails, it returns null. In case of an * error during the process, it returns an object containing the error details. * * API Reference - https://stripe.com/docs/api/payment_intents/create * * @param data - The payment intent data required by Stripe. * @returns A promise that resolves to the result of the payment intent creation * or an object with error details if an error occurs. */ async initPaymentIntent(data) { try { if (super.initSDK()) { const intentResult = await new bc_stripe_sdk_1.Payment().initIntent(data); return intentResult; } return null; } catch (error) { return { hasError: true, error: error === null || error === void 0 ? void 0 : error.message }; } } async requestPayment(data) { throw new Error("Method not implemented."); } /** * Retrieves the details of an order from Stripe. * * This method attempts to retrieve the order details with the provided data. * If successful, it returns the result of the order details request. * If the SDK initialization fails, it returns null. In case of an * error during the process, it returns an object containing the error details. * * API Reference - https://stripe.com/docs/api/payment_intents/retrieve * * @param data - The order ID required by Stripe. * @returns A promise that resolves to the result of the order details request * or an object with error details if an error occurs. */ async getOrderDetails(data) { try { if (super.initSDK()) { const orderDetailsResult = await new bc_stripe_sdk_1.Payment().getDetails(data); return orderDetailsResult; } return null; } catch (error) { return { hasError: true, error: error === null || error === void 0 ? void 0 : error.message }; } } } exports.StripePayment = StripePayment;