phx-node
Version:
PHX NODE
87 lines • 4.42 kB
JavaScript
;
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 SchoolListService_1;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SchoolListService = void 0;
const axios_1 = require("@nestjs/axios");
const common_1 = require("@nestjs/common");
const config_1 = require("@nestjs/config");
const query_1 = require("./query");
const grpc_client_system_v5_service_1 = require("../grpc-client/grpc-client-system-v5.service");
let SchoolListService = SchoolListService_1 = class SchoolListService {
constructor(configService, httpService, grpc) {
this.configService = configService;
this.httpService = httpService;
this.grpc = grpc;
this.logger = new common_1.Logger(SchoolListService_1.name);
}
getAllSchool() {
return __awaiter(this, void 0, void 0, function* () {
try {
const internalGrpcGateway = this.configService.get("INTERNAL_GRPC_GATEWAY");
if (!internalGrpcGateway) {
this.logger.error("INTERNAL_GRPC_GATEWAY is not configured");
return [];
}
const response = yield this.httpService
.get(`${internalGrpcGateway}/list-school`)
.toPromise();
const listSchoolDataCenter = response.data.data || [];
// get school db multi school v2
// const listSchoolMulti = await this.getListSchoolMultiDB()
return [...listSchoolDataCenter];
}
catch (error) {
this.logger.error(`Error occurred while sending request: ${error.message}`, error.stack);
return [];
}
});
}
getListSchoolMultiDB() {
return __awaiter(this, void 0, void 0, function* () {
try {
const isGetSchoolMulti = this.configService.get("ENV") === "production";
if (!isGetSchoolMulti)
return [];
const response = yield this.grpc.queryAllSchool({
query: query_1.QUERY_GET_LIST_SCHOOL_MULTI,
});
const school = (response === null || response === void 0 ? void 0 : response.school) || [];
return school.map(({ id, hostname }) => ({
school_id: id,
hostname: hostname,
isTenantMode: true,
}));
}
catch (e) {
this.logger.error(`Error get list school multi: ${e.message}`, e.stack);
return [];
}
});
}
};
exports.SchoolListService = SchoolListService;
exports.SchoolListService = SchoolListService = SchoolListService_1 = __decorate([
(0, common_1.Injectable)(),
__metadata("design:paramtypes", [config_1.ConfigService,
axios_1.HttpService,
grpc_client_system_v5_service_1.PHXGrpcClientSystemServiceV5])
], SchoolListService);
//# sourceMappingURL=schoollist.service.js.map