@amplience/dc-cli
Version:
Dynamic Content CLI Tool
104 lines (103 loc) • 4.17 kB
JavaScript
;
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || (function () {
var ownKeys = function(o) {
ownKeys = Object.getOwnPropertyNames || function (o) {
var ar = [];
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
return ar;
};
return ownKeys(o);
};
return function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
__setModuleDefault(result, mod);
return result;
};
})();
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.DCHttpClient = void 0;
const axios_1 = __importDefault(require("axios"));
const axios_retry_1 = __importStar(require("axios-retry"));
const DcRetryErrorCodes = [400, 401, 403, 404, 429];
const isRetriableDCResponseError = (error) => {
var _a;
return DcRetryErrorCodes.includes(Number((_a = error === null || error === void 0 ? void 0 : error.response) === null || _a === void 0 ? void 0 : _a.status));
};
const isSafeDCRequestError = (error) => {
var _a, _b;
if (!((_a = error.config) === null || _a === void 0 ? void 0 : _a.method)) {
return false;
}
return (0, axios_retry_1.isRetryableError)(error) && SAFE_HTTP_METHODS.indexOf((_b = error === null || error === void 0 ? void 0 : error.config) === null || _b === void 0 ? void 0 : _b.method) !== -1;
};
const SAFE_HTTP_METHODS = ['get', 'head', 'options', 'patch', 'post', 'put', 'del'];
const DELAY_FACTOR = Number(process.env.DC_CLI_DELAY_FACTOR) || 1400;
const DEFAULT_RETRY_CONFIG = {
retries: 3,
shouldResetTimeout: true,
retryDelay: (retryCount, error) => axios_retry_1.default.exponentialDelay(retryCount, error, DELAY_FACTOR),
retryCondition: (error) => {
return (Boolean(error === null || error === void 0 ? void 0 : error.code) ||
isSafeDCRequestError(error) ||
(0, axios_retry_1.isNetworkOrIdempotentRequestError)(error) ||
isRetriableDCResponseError(error));
}
};
class DCHttpClient {
constructor(config) {
this.config = config;
this.client = axios_1.default.create(config);
(0, axios_retry_1.default)(this.client, DEFAULT_RETRY_CONFIG);
}
async request(config) {
try {
const response = await this.client.request({
data: config.data,
headers: config.headers,
method: config.method,
url: config.url
});
return {
data: response.data,
status: response.status
};
}
catch (error) {
if (error === null || error === void 0 ? void 0 : error.response) {
return {
data: error.response.data,
status: error.response.status
};
}
if (error === null || error === void 0 ? void 0 : error.code) {
return {
data: { message: error.message },
status: error.code
};
}
return error;
}
}
}
exports.DCHttpClient = DCHttpClient;