UNPKG

easypay-nestjs

Version:
137 lines 4.93 kB
"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || (function () { var ownKeys = function(o) { ownKeys = Object.getOwnPropertyNames || function (o) { var ar = []; for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; return ar; }; return ownKeys(o); }; return function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); __setModuleDefault(result, mod); return result; }; })(); Object.defineProperty(exports, "__esModule", { value: true }); exports.Payment4Strategy = void 0; const axios_1 = __importStar(require("axios")); class Payment4Strategy { constructor() { this.API_URL = "https://service.payment4.com/api/v1/payment"; } async request(data) { const options = data.options; try { const request = await axios_1.default.post(this.API_URL, { sandBox: options.sandBox, currency: options.currency, amount: options.amount, callbackUrl: options.callbackUrl, callbackParams: options.callbackParams, webhookUrl: options.webhookUrl, webhookParams: options.webhookParams, language: options.language, }, { headers: { "x-api-key": options.apiKey, }, }); return { success: true, code: 100, message: "Payment request created successfully", data: { id: request.data.id, paymentUid: request.data.paymentUid, url: request.data.paymentUrl, }, raw: request.data, }; } catch (error) { if (error instanceof axios_1.AxiosError) { const errorDetails = error?.response?.data; return { success: false, code: errorDetails.errorCode, message: errorDetails.message, data: null, raw: errorDetails, }; } else { return { success: false, code: 500, message: "Unknown error", data: null, raw: JSON.stringify(error), }; } } } async verify(data) { const options = data.options; try { const request = await axios_1.default.put(`${this.API_URL}/verify`, { paymentUid: options.paymentUid, amount: options.amount, currency: options.currency, sandBox: options.sandBox, }, { headers: { "x-api-key": options.apiKey, }, }); return { success: request.data.verified, message: request.data.paymentStatus, data: request.data.amountDifference ? { amountDifference: request.data.amountDifference } : null, raw: request.data, }; } catch (error) { if (error instanceof axios_1.AxiosError) { const errorDetails = error?.response?.data; return { success: false, code: errorDetails.errorCode || 400, message: errorDetails.message, data: null, raw: errorDetails, }; } else { return { success: false, code: 500, message: "Unknown error", data: null, raw: JSON.stringify(error), }; } } } } exports.Payment4Strategy = Payment4Strategy; //# sourceMappingURL=payment4.strategy.js.map