UNPKG

@atomixdesign/nodepay-paystream

Version:

Nodepay strategy for the Paystream payment gateway.

181 lines (180 loc) 9.1 kB
"use strict"; var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; }; var __metadata = (this && this.__metadata) || function (k, v) { if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v); }; 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.PaystreamAPI = void 0; var typedi_1 = require("typedi"); var types_1 = require("../types"); var network_1 = require("@atomixdesign/nodepay-core/build/network"); var PaystreamAPI = /** @class */ (function () { function PaystreamAPI(config) { this.config = config; var httpClientFactory = new network_1.HttpClientFactory(); this.httpClient = httpClientFactory.create({ baseURL: config.apiRoot, auth: { username: config.username, password: config.apiKey, }, }); } PaystreamAPI.prototype._request = function (method, endpoint, payload) { var _a, _b, _c, _d, _e; return __awaiter(this, void 0, void 0, function () { var response, error_1; return __generator(this, function (_f) { switch (_f.label) { case 0: _f.trys.push([0, 2, , 3]); return [4 /*yield*/, this.httpClient.request({ method: method, url: endpoint, data: payload, })]; case 1: response = _f.sent(); return [3 /*break*/, 3]; case 2: error_1 = _f.sent(); throw new Error((_c = (_b = (_a = error_1 === null || error_1 === void 0 ? void 0 : error_1.response) === null || _a === void 0 ? void 0 : _a.data) === null || _b === void 0 ? void 0 : _b.errors) === null || _c === void 0 ? void 0 : _c.toString()); case 3: if (!response.data.successful) { throw new Error((_e = (_d = response === null || response === void 0 ? void 0 : response.data) === null || _d === void 0 ? void 0 : _d.errors) === null || _e === void 0 ? void 0 : _e.toString()); } return [2 /*return*/, { status: response.status, statusText: response.statusText, data: response.data.response, originalResponse: response, }]; } }); }); }; PaystreamAPI.prototype._get = function (endpoint, payload) { return __awaiter(this, void 0, void 0, function () { return __generator(this, function (_a) { return [2 /*return*/, this._request('get', endpoint, payload)]; }); }); }; PaystreamAPI.prototype._put = function (endpoint, payload) { return __awaiter(this, void 0, void 0, function () { return __generator(this, function (_a) { return [2 /*return*/, this._request('put', endpoint, payload)]; }); }); }; PaystreamAPI.prototype._post = function (endpoint, payload) { return __awaiter(this, void 0, void 0, function () { return __generator(this, function (_a) { return [2 /*return*/, this._request('post', endpoint, payload)]; }); }); }; PaystreamAPI.prototype.getCCtoken = function (creditCard) { return __awaiter(this, void 0, void 0, function () { return __generator(this, function (_a) { return [2 /*return*/, this._post('/credit_cards', creditCard)]; }); }); }; PaystreamAPI.prototype.getBankAccountToken = function (bankAccount) { return __awaiter(this, void 0, void 0, function () { return __generator(this, function (_a) { return [2 /*return*/, this._post('/bank_accounts', bankAccount)]; }); }); }; PaystreamAPI.prototype.addCustomer = function (customer) { return __awaiter(this, void 0, void 0, function () { return __generator(this, function (_a) { return [2 /*return*/, this._post('/customers', customer)]; }); }); }; PaystreamAPI.prototype.updateCustomer = function (reference, customer) { return __awaiter(this, void 0, void 0, function () { return __generator(this, function (_a) { return [2 /*return*/, this._put("/customers/" + reference + ".json", customer)]; }); }); }; PaystreamAPI.prototype.listPlans = function () { return __awaiter(this, void 0, void 0, function () { return __generator(this, function (_a) { return [2 /*return*/, this._get('/plans')]; }); }); }; PaystreamAPI.prototype.addPlan = function (plan) { return __awaiter(this, void 0, void 0, function () { return __generator(this, function (_a) { return [2 /*return*/, this._post('/plans', plan)]; }); }); }; PaystreamAPI.prototype.addSubscription = function (subscription) { return __awaiter(this, void 0, void 0, function () { return __generator(this, function (_a) { return [2 /*return*/, this._post('/subscriptions', subscription)]; }); }); }; PaystreamAPI.prototype.placeCharge = function (charge) { return __awaiter(this, void 0, void 0, function () { return __generator(this, function (_a) { return [2 /*return*/, this._post('/purchases', charge)]; }); }); }; PaystreamAPI = __decorate([ typedi_1.Service(), __metadata("design:paramtypes", [types_1.PaystreamConfig]) ], PaystreamAPI); return PaystreamAPI; }()); exports.PaystreamAPI = PaystreamAPI;