test-ic-wallet-middleware-common
Version:
Ic middleware wallet common objects
108 lines (107 loc) • 4.19 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 __param = (this && this.__param) || function (paramIndex, decorator) {
return function (target, key) { decorator(target, key, paramIndex); }
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.BaseCacheDataHandlerV2 = exports.BaseCacheDataHandler = exports.LoadType = void 0;
const baseHandler_1 = require("../handlers/baseHandler");
const typedi_1 = require("typedi");
var LoadType;
(function (LoadType) {
LoadType[LoadType["Full"] = 1] = "Full";
LoadType[LoadType["Quick"] = 2] = "Quick";
LoadType[LoadType["Cache"] = 3] = "Cache";
})(LoadType || (exports.LoadType = LoadType = {}));
let BaseCacheDataHandler = class BaseCacheDataHandler extends baseHandler_1.BaseHandler {
constructor(logger) {
super(logger);
}
async process(info) {
if (this.isExternalData(info)) {
return await this.getInternalIcrcData(info, false);
}
const localResult = await this.getLocalCacheData(info);
if (localResult) {
return localResult;
}
return await this.getInternalIcrcData(info, true);
}
isExternalData(info) {
const result = this.getLoadForceType().includes(info.loadType);
return result;
}
async getInternalIcrcData(info, icrcFail) {
try {
const result = await this.getExternalData(info);
this.updateField(info, result);
return result;
}
catch (e) {
if (e.message && e.message.toString().indexOf("fetch failed") !== -1) {
if (!icrcFail) {
const localResult = await this.getLocalCacheData(info);
if (localResult) {
return localResult;
}
}
throw this.getCacheDataError(info);
}
throw e;
}
}
};
exports.BaseCacheDataHandler = BaseCacheDataHandler;
exports.BaseCacheDataHandler = BaseCacheDataHandler = __decorate([
(0, typedi_1.Service)(),
__param(0, (0, typedi_1.Inject)("ILogger")),
__metadata("design:paramtypes", [Object])
], BaseCacheDataHandler);
class BaseCacheDataHandlerV2 {
logger;
constructor(logger) {
this.logger = logger;
}
async handle(form) {
if (this.isExternalData(form)) {
return await this.getInternalIcrcData(form, false);
}
const localResult = await this.getLocalCacheData(form);
if (localResult) {
return localResult;
}
return await this.getInternalIcrcData(form, true);
}
isExternalData(info) {
const result = this.getLoadForceType().includes(info.loadType);
return result;
}
async getInternalIcrcData(info, icrcFail) {
try {
const result = await this.getExternalData(info);
this.updateField(info, result);
return result;
}
catch (e) {
if (e.message && e.message.toString().indexOf("fetch failed") !== -1) {
if (!icrcFail) {
const localResult = await this.getLocalCacheData(info);
if (localResult) {
return localResult;
}
}
throw this.getCacheDataError(info);
}
throw e;
}
}
}
exports.BaseCacheDataHandlerV2 = BaseCacheDataHandlerV2;