UNPKG

easypay-nestjs

Version:
54 lines 2.52 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); }; Object.defineProperty(exports, "__esModule", { value: true }); exports.RequestService = void 0; const common_1 = require("@nestjs/common"); const zarinpal_service_1 = require("./zarinpal.service"); const zibal_service_1 = require("./zibal.service"); const novinpal_service_1 = require("./novinpal.service"); let RequestService = class RequestService { constructor(zarinpalService, zibalService, novinpalService) { this.zarinpalService = zarinpalService; this.zibalService = zibalService; this.novinpalService = novinpalService; } getRequestBody(driver, options) { switch (driver) { case "ZARINPAL": return this.zarinpalService.getRequestBody(options); case "ZIBAL": return this.zibalService.getRequestBody(options); case "NOVINPAL": return this.novinpalService.getRequestBody(options); } } getRequestResponse(driver, response, sandbox) { switch (driver) { case "ZARINPAL": { return this.zarinpalService.getRequestResponse(response, sandbox); } case "ZIBAL": { return this.zibalService.getRequestResponse(response, sandbox); } case "NOVINPAL": { return this.novinpalService.getRequestResponse(response, sandbox); } } } }; exports.RequestService = RequestService; exports.RequestService = RequestService = __decorate([ (0, common_1.Injectable)(), __metadata("design:paramtypes", [zarinpal_service_1.ZarinpalService, zibal_service_1.ZibalService, novinpal_service_1.NovinpalService]) ], RequestService); //# sourceMappingURL=request.service.js.map