@ohos/hpm-cli
Version:
CLI for HarmonyOS package manager
208 lines (207 loc) • 10.8 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = exports.axios = void 0;
exports.shouldProxy = shouldProxy;
var _axios = _interopRequireDefault(require("axios"));
var _https = _interopRequireDefault(require("https"));
var _url = _interopRequireDefault(require("url"));
var _httpsProxyAgent = _interopRequireDefault(require("https-proxy-agent"));
var _i18n = require("../i18n");
var _config = require("./config");
var _login = require("../core/login");
var _helpers = require("./helpers");
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
function _regenerator() { /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/babel/babel/blob/main/packages/babel-helpers/LICENSE */ var e, t, r = "function" == typeof Symbol ? Symbol : {}, n = r.iterator || "@@iterator", o = r.toStringTag || "@@toStringTag"; function i(r, n, o, i) { var c = n && n.prototype instanceof Generator ? n : Generator, u = Object.create(c.prototype); return _regeneratorDefine2(u, "_invoke", function (r, n, o) { var i, c, u, f = 0, p = o || [], y = !1, G = { p: 0, n: 0, v: e, a: d, f: d.bind(e, 4), d: function d(t, r) { return i = t, c = 0, u = e, G.n = r, a; } }; function d(r, n) { for (c = r, u = n, t = 0; !y && f && !o && t < p.length; t++) { var o, i = p[t], d = G.p, l = i[2]; r > 3 ? (o = l === n) && (u = i[(c = i[4]) ? 5 : (c = 3, 3)], i[4] = i[5] = e) : i[0] <= d && ((o = r < 2 && d < i[1]) ? (c = 0, G.v = n, G.n = i[1]) : d < l && (o = r < 3 || i[0] > n || n > l) && (i[4] = r, i[5] = n, G.n = l, c = 0)); } if (o || r > 1) return a; throw y = !0, n; } return function (o, p, l) { if (f > 1) throw TypeError("Generator is already running"); for (y && 1 === p && d(p, l), c = p, u = l; (t = c < 2 ? e : u) || !y;) { i || (c ? c < 3 ? (c > 1 && (G.n = -1), d(c, u)) : G.n = u : G.v = u); try { if (f = 2, i) { if (c || (o = "next"), t = i[o]) { if (!(t = t.call(i, u))) throw TypeError("iterator result is not an object"); if (!t.done) return t; u = t.value, c < 2 && (c = 0); } else 1 === c && (t = i["return"]) && t.call(i), c < 2 && (u = TypeError("The iterator does not provide a '" + o + "' method"), c = 1); i = e; } else if ((t = (y = G.n < 0) ? u : r.call(n, G)) !== a) break; } catch (t) { i = e, c = 1, u = t; } finally { f = 1; } } return { value: t, done: y }; }; }(r, o, i), !0), u; } var a = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} t = Object.getPrototypeOf; var c = [][n] ? t(t([][n]())) : (_regeneratorDefine2(t = {}, n, function () { return this; }), t), u = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(c); function f(e) { return Object.setPrototypeOf ? Object.setPrototypeOf(e, GeneratorFunctionPrototype) : (e.__proto__ = GeneratorFunctionPrototype, _regeneratorDefine2(e, o, "GeneratorFunction")), e.prototype = Object.create(u), e; } return GeneratorFunction.prototype = GeneratorFunctionPrototype, _regeneratorDefine2(u, "constructor", GeneratorFunctionPrototype), _regeneratorDefine2(GeneratorFunctionPrototype, "constructor", GeneratorFunction), GeneratorFunction.displayName = "GeneratorFunction", _regeneratorDefine2(GeneratorFunctionPrototype, o, "GeneratorFunction"), _regeneratorDefine2(u), _regeneratorDefine2(u, o, "Generator"), _regeneratorDefine2(u, n, function () { return this; }), _regeneratorDefine2(u, "toString", function () { return "[object Generator]"; }), (_regenerator = function _regenerator() { return { w: i, m: f }; })(); }
function _regeneratorDefine2(e, r, n, t) { var i = Object.defineProperty; try { i({}, "", {}); } catch (e) { i = 0; } _regeneratorDefine2 = function _regeneratorDefine(e, r, n, t) { if (r) i ? i(e, r, { value: n, enumerable: !t, configurable: !t, writable: !t }) : e[r] = n;else { var o = function o(r, n) { _regeneratorDefine2(e, r, function (e) { return this._invoke(r, n, e); }); }; o("next", 0), o("throw", 1), o("return", 2); } }, _regeneratorDefine2(e, r, n, t); }
function asyncGeneratorStep(n, t, e, r, o, a, c) { try { var i = n[a](c), u = i.value; } catch (n) { return void e(n); } i.done ? t(u) : Promise.resolve(u).then(r, o); }
function _asyncToGenerator(n) { return function () { var t = this, e = arguments; return new Promise(function (r, o) { var a = n.apply(t, e); function _next(n) { asyncGeneratorStep(a, r, o, _next, _throw, "next", n); } function _throw(n) { asyncGeneratorStep(a, r, o, _next, _throw, "throw", n); } _next(void 0); }); }; } /*
* Copyright (c) 2020-2021 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
var MAX_RETRY_TIMES = 3;
var axios = exports.axios = _axios["default"].create({
proxy: false
});
axios.interceptors.request.use(function (config) {
var proxySettings = getProxySettings(config.url);
Object.keys(proxySettings).forEach(function (key) {
config[key] = proxySettings[key];
});
if (config.method === 'get' && config.params) {
var keys = Object.keys(config.params);
config.url += '?';
keys.forEach(function (key) {
config.url += "".concat(key, "=").concat(encodeURIComponent(config.params[key]), "&");
});
config.params = {};
}
if (config.method.toLowerCase() !== 'get') {
config.headers['x-replay-context'] = "".concat(new Date().getTime(), ":").concat((0, _helpers.getUuid)());
}
if (config.needAuth) {
config.headers.hpmAuth = true;
var cookie = (0, _login.getCachedCookie)();
if (cookie) {
var hpmCsrfToken = (0, _login.getCsrfToken)(cookie);
config.headers.Cookie = cookie;
config.headers.hpmCsrfToken = hpmCsrfToken;
}
}
return config;
});
createAxiosResponseInterceptor();
function createAxiosResponseInterceptor() {
var interceptor = axios.interceptors.response.use(/*#__PURE__*/function () {
var _ref = _asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee(res) {
var data, retryTime, _retryTime;
return _regenerator().w(function (_context) {
while (1) switch (_context.n) {
case 0:
data = res.data;
if (!(data.code && data.code !== 200)) {
_context.n = 4;
break;
}
if (!(data.code === 302)) {
_context.n = 2;
break;
}
axios.interceptors.response.eject(interceptor);
_context.n = 1;
return (0, _login.getTokenLoginCookie)(_helpers.URL.login(), {
ignoreCache: true
});
case 1:
createAxiosResponseInterceptor();
retryTime = res.config.retryTime || 0;
if (!(retryTime < MAX_RETRY_TIMES)) {
_context.n = 2;
break;
}
res.config.retryTime = retryTime + 1;
return _context.a(2, axios(res.config));
case 2:
if (!(data.code === 403)) {
_context.n = 3;
break;
}
axios.interceptors.response.eject(interceptor);
_retryTime = res.config.retryTime || 0;
if (!(_retryTime < MAX_RETRY_TIMES)) {
_context.n = 3;
break;
}
res.config.retryTime = _retryTime + 1;
return _context.a(2, axios(res.config));
case 3:
process.exitCode = -1;
// throw data;
case 4:
return _context.a(2, res);
}
}, _callee);
}));
return function (_x) {
return _ref.apply(this, arguments);
};
}(), function (error) {
// throw error;
});
}
function getProxySettings(visitingUrl) {
var visitingUrlParsed = _url["default"].parse(visitingUrl);
var noProxy = process.env.no_proxy || process.env.NO_PROXY;
if (!shouldProxy(noProxy, visitingUrlParsed.hostname)) {
return {
httpsAgent: new _https["default"].Agent({
rejectUnauthorized: (0, _config.isStrictSsl)()
})
};
}
if (!(0, _config.isStrictSsl)()) {
process.removeAllListeners('warning');
process.env.NODE_TLS_REJECT_UNAUTHORIZED = 0;
}
var httpsAgent;
var httpAgent;
var decyptedProxy = (0, _config.httpProxyDecrypt)();
var httpsProxy = decyptedProxy.https_proxy || process.env.HTTPS_PROXY;
var httpProxy = decyptedProxy.http_proxy || process.env.HTTP_PROXY;
if (httpsProxy) {
var httpsProxyParsed = parseProxyUrl(decodeURIComponent(httpsProxy));
var opts = _url["default"].parse(httpsProxyParsed.proxypath);
if (httpsProxyParsed.auth) {
opts.auth = httpsProxyParsed.auth;
}
httpsAgent = new _httpsProxyAgent["default"](opts);
}
if (httpProxy) {
var httpProxyParsed = parseProxyUrl(decodeURIComponent(httpProxy));
var _opts = _url["default"].parse(httpProxyParsed.proxypath);
_opts.protocol = 'http';
if (httpProxyParsed.auth) {
_opts.auth = httpProxyParsed.auth;
}
httpAgent = new _httpsProxyAgent["default"](_opts);
}
return {
httpsAgent: httpsAgent,
httpAgent: httpAgent
};
}
function parseProxyUrl(proxyUrl) {
var withAuthParsed = /(https:\/\/|http:\/\/)([\s\S]+)@([\s\S]+)/g.exec(proxyUrl);
var proxypath;
var auth;
if (withAuthParsed) {
if (withAuthParsed.length !== 4) {
throw (0, _i18n.getI18nMessage)('request.proxyFormat');
} else {
auth = withAuthParsed[2];
proxypath = "".concat(withAuthParsed[1]).concat(withAuthParsed[3]);
}
} else {
proxypath = proxyUrl;
}
return {
proxypath: proxypath,
auth: auth
};
}
function shouldProxy(noProxy, hostname) {
if (!noProxy) {
return true;
}
var noProxyArr = noProxy.split(',').map(function (s) {
return s.trim();
});
var should = !noProxyArr.some(function (proxyElement) {
if (!proxyElement) {
return false;
}
if (proxyElement === '*') {
return true;
}
if (proxyElement[0] === '.' && hostname.substr(hostname.length - proxyElement.length) === proxyElement) {
return true;
}
if (proxyElement[0] === '*' && hostname.substr(hostname.length - proxyElement.length + 1) === proxyElement.substr(1)) {
return true;
}
return hostname === proxyElement;
});
return should;
}
var _default = exports["default"] = axios;