UNPKG

phx-node-test-1

Version:

PHX NODE

69 lines 3.59 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 __param = (this && this.__param) || function (paramIndex, decorator) { return function (target, key) { decorator(target, key, paramIndex); } }; 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()); }); }; Object.defineProperty(exports, "__esModule", { value: true }); exports.ConfigConnectDatabaseService = void 0; const common_1 = require("@nestjs/common"); const constant_1 = require("../../lib/constant"); const graphql_request_1 = require("graphql-request"); let ConfigConnectDatabaseService = exports.ConfigConnectDatabaseService = class ConfigConnectDatabaseService { constructor(envConfig) { var _a, _b; this.envConfig = envConfig; this.graphQLQuery = new graphql_request_1.GraphQLClient((_a = this.envConfig) === null || _a === void 0 ? void 0 : _a.graphqlQlApi, { headers: { "x-hasura-admin-secret": (_b = this.envConfig) === null || _b === void 0 ? void 0 : _b.secretKey, }, }); } query(query, variables) { return __awaiter(this, void 0, void 0, function* () { return yield this.graphQLQuery.request(query, variables); }); } getSchoolList() { return __awaiter(this, void 0, void 0, function* () { const res = yield this.query(""); return [ { graphQlMsApi: "http://localhost:8080/v1/graphql", graphQlRdApi: "http://localhost:8080/v1/graphql", secretMsKey: "", secretRdKey: "", }, { graphQlMsApi: "http://localhost:8084/v1/graphql", graphQlRdApi: "http://localhost:8084/v1/graphql", secretMsKey: "", secretRdKey: "", }, ]; }); } }; exports.ConfigConnectDatabaseService = ConfigConnectDatabaseService = __decorate([ (0, common_1.Injectable)(), __param(0, (0, common_1.Inject)(constant_1.DEV_TOOL_ENV)), __param(0, (0, common_1.Optional)()), __metadata("design:paramtypes", [Object]) ], ConfigConnectDatabaseService); //# sourceMappingURL=config-connect-database.service.js.map