phx-node
Version:
PHX NODE
130 lines • 6.52 kB
JavaScript
"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 PHXGrpcClientSystemService_1;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PHXGrpcClientSystemService = void 0;
const common_1 = require("@nestjs/common");
const axios_1 = require("@nestjs/axios");
let PHXGrpcClientSystemService = PHXGrpcClientSystemService_1 = class PHXGrpcClientSystemService {
constructor(httpService) {
this.httpService = httpService;
this.logger = new common_1.Logger(PHXGrpcClientSystemService_1.name);
this.internalGrpcGateway = process.env.INTERNAL_GRPC_GATEWAY;
this.projectSource = process.env.PROJECT_SOURCE;
}
debug(hostname) {
this.logger.debug(hostname);
this.logger.debug(this.internalGrpcGateway);
}
query(_a) {
return __awaiter(this, arguments, void 0, function* ({ query, variables, hostname, persistedId, }) {
if (!hostname)
return;
try {
const response = yield this.httpService
.post(`${this.internalGrpcGateway}/query`, Object.assign(Object.assign({}, (variables && { variables })), { source: this.projectSource, query, persisted_id: persistedId, headers: { hostname } }))
.toPromise();
return response.data;
}
catch (error) {
console.log("error", error);
return false;
}
});
}
mutation(_a) {
return __awaiter(this, arguments, void 0, function* ({ query, variables, hostname, persistedId, }) {
if (!hostname)
return;
try {
const response = yield this.httpService
.post(`${this.internalGrpcGateway}/mutation`, Object.assign(Object.assign({}, (variables && { variables })), { source: this.projectSource, query, persisted_id: persistedId, headers: { hostname } }))
.toPromise();
return response.data;
}
catch (error) {
console.log("error", error);
return false;
}
});
}
queryDataCenter(_a) {
return __awaiter(this, arguments, void 0, function* ({ query, variables, persistedId, }) {
try {
const response = yield this.httpService
.post(`${this.internalGrpcGateway}/query`, Object.assign(Object.assign({}, (variables && { variables })), { source: this.projectSource, query, persisted_id: persistedId, headers: { hostname: "data-center" } }))
.toPromise();
return response.data;
}
catch (error) {
console.log("error", error);
return false;
}
});
}
mutationDataCenter(_a) {
return __awaiter(this, arguments, void 0, function* ({ query, variables, persistedId, }) {
try {
const response = yield this.httpService
.post(`${this.internalGrpcGateway}/mutation`, Object.assign(Object.assign({}, (variables && { variables })), { source: this.projectSource, query, persisted_id: persistedId, headers: { hostname: "data-center" } }))
.toPromise();
return response.data;
}
catch (error) {
console.log("error", error);
return false;
}
});
}
queryDevPortal(_a) {
return __awaiter(this, arguments, void 0, function* ({ query, variables, persistedId, }) {
try {
const response = yield this.httpService
.post(`${this.internalGrpcGateway}/query`, Object.assign(Object.assign({}, (variables && { variables })), { source: this.projectSource, query, persisted_id: persistedId, headers: { hostname: "dev-portal" } }))
.toPromise();
return response.data;
}
catch (error) {
console.log("error", error);
return false;
}
});
}
mutationDevPortal(_a) {
return __awaiter(this, arguments, void 0, function* ({ query, variables, persistedId, }) {
try {
const response = yield this.httpService
.post(`${this.internalGrpcGateway}/mutation`, Object.assign(Object.assign({}, (variables && { variables })), { source: this.projectSource, query, persisted_id: persistedId, headers: { hostname: "dev-portal" } }))
.toPromise();
return response.data;
}
catch (error) {
console.log("error", error);
return false;
}
});
}
};
exports.PHXGrpcClientSystemService = PHXGrpcClientSystemService;
exports.PHXGrpcClientSystemService = PHXGrpcClientSystemService = PHXGrpcClientSystemService_1 = __decorate([
(0, common_1.Injectable)(),
__metadata("design:paramtypes", [axios_1.HttpService])
], PHXGrpcClientSystemService);
//# sourceMappingURL=grpc-client-system.service.js.map