maxipago-sdk-js
Version:
SDK Node.js for maxiPago! gateway
363 lines (362 loc) • 17.6 kB
JavaScript
"use strict";
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
var __generator = (this && this.__generator) || function (thisArg, body) {
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
function verb(n) { return function (v) { return step([n, v]); }; }
function step(op) {
if (f) throw new TypeError("Generator is already executing.");
while (_) try {
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
if (y = 0, t) op = [op[0] & 2, t.value];
switch (op[0]) {
case 0: case 1: t = op; break;
case 4: _.label++; return { value: op[1], done: false };
case 5: _.label++; y = op[1]; op = [0]; continue;
case 7: op = _.ops.pop(); _.trys.pop(); continue;
default:
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
if (t[2]) _.ops.pop();
_.trys.pop(); continue;
}
op = body.call(thisArg, _);
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
}
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.buildSDK = void 0;
var builder = require("./xmlbuilder");
var utils_1 = require("./utils/utils");
var api_1 = require("./api");
var MaxiPagoSDK = /** @class */ (function () {
function MaxiPagoSDK(auth, env) {
this.auth = auth;
this.env = env;
this.POST_API = this.env === 'development'
? 'https://testapi.maxipago.net/UniversalAPI/postAPI'
: 'https://api.maxipago.net/UniversalAPI/postAPI';
this.POST_XML = this.env === 'development'
? 'https://testapi.maxipago.net/UniversalAPI/postXML'
: 'https://api.maxipago.net/UniversalAPI/postXML';
this.REPORTS_API = this.env === 'development'
? 'https://testapi.maxipago.net/ReportsAPI/servlet/ReportsAPI'
: 'https://api.maxipago.net/ReportsAPI/servlet/ReportsAPI';
this.XML_OPTIONS = {
explicitRoot: false,
ignoreAttrs: false,
mergeAttrs: true,
explicitArray: true,
};
this.XML_CONVERT_OPTIONS = {
compact: true,
trim: true,
ignoreDeclaration: true,
ignoreInstruction: true,
ignoreAttributes: true,
ignoreComment: true,
ignoreCdata: false,
ignoreDoctype: true,
textFn: utils_1.convertResponse,
};
}
/**
* This method save a new customer on MaxiPago to use in others operations.
* @param customer object to create a new customer on MaxiPago.
*/
MaxiPagoSDK.prototype.createCustomer = function (customer) {
return __awaiter(this, void 0, void 0, function () {
var customerXML, responseMP, response;
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
customerXML = builder.buildCreateCustomer(customer, this.auth, this.XML_OPTIONS);
return [4 /*yield*/, api_1.default.post(this.POST_API, customerXML)];
case 1:
responseMP = _a.sent();
response = utils_1.formatResponse(responseMP.data, this.XML_CONVERT_OPTIONS);
return [2 /*return*/, response];
}
});
});
};
/**
* This method update a customer on MaxiPago.
* @param customer object to update a customer on MaxiPago.
*/
MaxiPagoSDK.prototype.updateCustomer = function (customer) {
return __awaiter(this, void 0, void 0, function () {
var customerXML, responseMP, response;
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
customerXML = builder.buildUpdateCustomer(customer, this.auth, this.XML_OPTIONS);
return [4 /*yield*/, api_1.default.post(this.POST_API, customerXML)];
case 1:
responseMP = _a.sent();
response = utils_1.formatResponse(responseMP.data, this.XML_CONVERT_OPTIONS);
return [2 /*return*/, response];
}
});
});
};
/**
* This method delete a customer on MaxiPago.
* @param customer object with customer id to delete on MaxiPago
*/
MaxiPagoSDK.prototype.deleteCustomer = function (customer) {
return __awaiter(this, void 0, void 0, function () {
var customerXML, responseMP, response;
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
customerXML = builder.buildDeleteCustomer(customer, this.auth, this.XML_OPTIONS);
return [4 /*yield*/, api_1.default.post(this.POST_API, customerXML)];
case 1:
responseMP = _a.sent();
response = utils_1.formatResponse(responseMP.data, this.XML_CONVERT_OPTIONS);
return [2 /*return*/, response];
}
});
});
};
MaxiPagoSDK.prototype.addCard = function (card) {
return __awaiter(this, void 0, void 0, function () {
var cardXML, responseMP, response;
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
cardXML = builder.buildAddCard(card, this.auth, this.XML_OPTIONS);
return [4 /*yield*/, api_1.default.post(this.POST_API, cardXML)];
case 1:
responseMP = _a.sent();
response = utils_1.formatResponse(responseMP.data, this.XML_CONVERT_OPTIONS);
return [2 /*return*/, response];
}
});
});
};
MaxiPagoSDK.prototype.deleteCard = function (card) {
return __awaiter(this, void 0, void 0, function () {
var cardXML, responseMP, response;
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
cardXML = builder.buildDeleteCard(card, this.auth, this.XML_OPTIONS);
return [4 /*yield*/, api_1.default.post(this.POST_API, cardXML)];
case 1:
responseMP = _a.sent();
response = utils_1.formatResponse(responseMP.data, this.XML_CONVERT_OPTIONS);
return [2 /*return*/, response];
}
});
});
};
MaxiPagoSDK.prototype.createAuthorization = function (order) {
return __awaiter(this, void 0, void 0, function () {
var orderXML, responseMP, response;
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
orderXML = builder.buildAuthorization(order, this.auth, this.XML_OPTIONS);
return [4 /*yield*/, api_1.default.post(this.POST_XML, orderXML)];
case 1:
responseMP = _a.sent();
response = utils_1.formatResponse(responseMP.data, this.XML_CONVERT_OPTIONS);
return [2 /*return*/, response];
}
});
});
};
MaxiPagoSDK.prototype.capture = function (capture) {
return __awaiter(this, void 0, void 0, function () {
var captureXML, responseMP, response;
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
captureXML = builder.buildCapture(capture, this.auth, this.XML_OPTIONS);
return [4 /*yield*/, api_1.default.post(this.POST_XML, captureXML)];
case 1:
responseMP = _a.sent();
response = utils_1.formatResponse(responseMP.data, this.XML_CONVERT_OPTIONS);
return [2 /*return*/, response];
}
});
});
};
MaxiPagoSDK.prototype.sale = function (sale) {
return __awaiter(this, void 0, void 0, function () {
var saleXML, responseMP, response;
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
saleXML = builder.buildSale(sale, this.auth, this.XML_OPTIONS);
return [4 /*yield*/, api_1.default.post(this.POST_XML, saleXML)];
case 1:
responseMP = _a.sent();
response = utils_1.formatResponse(responseMP.data, this.XML_CONVERT_OPTIONS);
return [2 /*return*/, response];
}
});
});
};
MaxiPagoSDK.prototype.void = function (_void) {
return __awaiter(this, void 0, void 0, function () {
var voidXML, responseMP, response;
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
voidXML = builder.buildVoid(_void, this.auth, this.XML_OPTIONS);
return [4 /*yield*/, api_1.default.post(this.POST_XML, voidXML)];
case 1:
responseMP = _a.sent();
response = utils_1.formatResponse(responseMP.data, this.XML_CONVERT_OPTIONS);
return [2 /*return*/, response];
}
});
});
};
MaxiPagoSDK.prototype.chargeBack = function (chargeback) {
return __awaiter(this, void 0, void 0, function () {
var chargebackXML, responseMP, response;
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
chargebackXML = builder.buildChargeback(chargeback, this.auth, this.XML_OPTIONS);
return [4 /*yield*/, api_1.default.post(this.POST_XML, chargebackXML)];
case 1:
responseMP = _a.sent();
response = utils_1.formatResponse(responseMP.data, this.XML_CONVERT_OPTIONS);
return [2 /*return*/, response];
}
});
});
};
MaxiPagoSDK.prototype.createRecurrence = function (recurrence) {
return __awaiter(this, void 0, void 0, function () {
var recurrenceXML, responseMP, response;
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
recurrenceXML = builder.buildCreateRecurrence(recurrence, this.auth, this.XML_OPTIONS);
return [4 /*yield*/, api_1.default.post(this.POST_XML, recurrenceXML)];
case 1:
responseMP = _a.sent();
response = utils_1.formatResponse(responseMP.data, this.XML_CONVERT_OPTIONS);
return [2 /*return*/, response];
}
});
});
};
MaxiPagoSDK.prototype.updateRecurrence = function (recurrence) {
return __awaiter(this, void 0, void 0, function () {
var recurrenceXML, responseMP, response;
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
recurrenceXML = builder.buildUpdateRecorrence(recurrence, this.auth, this.XML_OPTIONS);
return [4 /*yield*/, api_1.default.post(this.POST_XML, recurrenceXML)];
case 1:
responseMP = _a.sent();
response = utils_1.formatResponse(responseMP.data, this.XML_CONVERT_OPTIONS);
return [2 /*return*/, response];
}
});
});
};
MaxiPagoSDK.prototype.deleteRecurrence = function (recurrence) {
return __awaiter(this, void 0, void 0, function () {
var recurrenceXML, responseMP, response;
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
recurrenceXML = builder.buildCancelRecurrence(recurrence, this.auth, this.XML_OPTIONS);
return [4 /*yield*/, api_1.default.post(this.POST_XML, recurrenceXML)];
case 1:
responseMP = _a.sent();
response = utils_1.formatResponse(responseMP.data, this.XML_CONVERT_OPTIONS);
return [2 /*return*/, response];
}
});
});
};
MaxiPagoSDK.prototype.findTransaction = function (transaction) {
return __awaiter(this, void 0, void 0, function () {
var transactionXML, responseMP, response;
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
transactionXML = builder.buildGetTransaction(transaction, this.auth, this.XML_OPTIONS);
return [4 /*yield*/, api_1.default.post(this.REPORTS_API, transactionXML)];
case 1:
responseMP = _a.sent();
response = utils_1.formatResponse(responseMP.data, this.XML_CONVERT_OPTIONS);
return [2 /*return*/, response];
}
});
});
};
MaxiPagoSDK.prototype.zeroDollar = function (zeroDollar) {
return __awaiter(this, void 0, void 0, function () {
var zeroDollarXML, responseMP, response;
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
zeroDollarXML = builder.buildZeroDollar(zeroDollar, this.auth, this.XML_OPTIONS);
return [4 /*yield*/, api_1.default.post(this.POST_XML, zeroDollarXML)];
case 1:
responseMP = _a.sent();
response = utils_1.formatResponse(responseMP.data, this.XML_CONVERT_OPTIONS);
return [2 /*return*/, response];
}
});
});
};
MaxiPagoSDK.prototype.zeroDollarWithTokenCard = function (zeroDollar) {
return __awaiter(this, void 0, void 0, function () {
var zeroDollarXML, responseMP, response;
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
zeroDollarXML = builder.buildZeroDollarToken(zeroDollar, this.auth, this.XML_OPTIONS);
return [4 /*yield*/, api_1.default.post(this.POST_XML, zeroDollarXML)];
case 1:
responseMP = _a.sent();
response = utils_1.formatResponse(responseMP.data, this.XML_CONVERT_OPTIONS);
return [2 /*return*/, response];
}
});
});
};
MaxiPagoSDK.prototype.saleWithToken = function (sale) {
return __awaiter(this, void 0, void 0, function () {
var saleXML, responseMP, response;
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
saleXML = builder.buildSaleWithToken(sale, this.auth, this.XML_OPTIONS);
return [4 /*yield*/, api_1.default.post(this.POST_XML, saleXML)];
case 1:
responseMP = _a.sent();
response = utils_1.formatResponse(responseMP.data, this.XML_CONVERT_OPTIONS);
return [2 /*return*/, response];
}
});
});
};
return MaxiPagoSDK;
}());
exports.buildSDK = function (auth, env) {
return new MaxiPagoSDK(auth, env);
};