UNPKG

phx-node-test-1

Version:

PHX NODE

83 lines 3.7 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 ApiService_1; Object.defineProperty(exports, "__esModule", { value: true }); exports.ApiService = void 0; const config_1 = require("@nestjs/config"); const common_1 = require("@nestjs/common"); const axios_1 = require("@nestjs/axios"); let ApiService = ApiService_1 = class ApiService { constructor(configService, httpService) { this.configService = configService; this.httpService = httpService; this.logger = new common_1.Logger(ApiService_1.name); } postData(req, end_point) { return __awaiter(this, void 0, void 0, function* () { const URL = this.configService.get("TUITION_API"); const path = `${URL}${end_point}`; const payload = req; const config = { headers: { "project-type": "cronjob", }, }; try { const response = yield this.httpService .post(path, payload, config) .toPromise(); return response.data; } catch (error) { this.logger.error(`Failed to post data: ${error.message}`); return []; } }); } postDataV3(req, end_point, hostname) { return __awaiter(this, void 0, void 0, function* () { const URL = this.configService.get("INTERNAL_API_GATEWAY"); const path = `${URL}${end_point}`; const payload = req; const config = { headers: { hostname, }, }; try { const response = yield this.httpService .post(path, payload, config) .toPromise(); return response.data; } catch (error) { this.logger.error(`Failed to post data: ${error.message}`); return []; } }); } }; exports.ApiService = ApiService; exports.ApiService = ApiService = ApiService_1 = __decorate([ (0, common_1.Injectable)(), __metadata("design:paramtypes", [config_1.ConfigService, axios_1.HttpService]) ], ApiService); //# sourceMappingURL=api.service.js.map