@verdaccio/proxy 9.0.0-next-9.3 → 9.0.0-next-9.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/_virtual/_rolldown/runtime.js +23 -0
- package/build/agent.d.ts +2 -2
- package/build/agent.js +34 -61
- package/build/agent.js.map +1 -1
- package/build/agent.mjs +35 -0
- package/build/agent.mjs.map +1 -0
- package/build/index.js +11 -27
- package/build/index.mjs +3 -0
- package/build/proxy-utils.js +29 -38
- package/build/proxy-utils.js.map +1 -1
- package/build/proxy-utils.mjs +35 -0
- package/build/proxy-utils.mjs.map +1 -0
- package/build/proxy.d.ts +4 -6
- package/build/proxy.js +405 -593
- package/build/proxy.js.map +1 -1
- package/build/proxy.mjs +406 -0
- package/build/proxy.mjs.map +1 -0
- package/build/uplink-util.d.ts +2 -2
- package/build/uplink-util.js +20 -37
- package/build/uplink-util.js.map +1 -1
- package/build/uplink-util.mjs +25 -0
- package/build/uplink-util.mjs.map +1 -0
- package/package.json +22 -11
- package/build/index.js.map +0 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"proxy.mjs","names":[],"sources":["../src/proxy.ts"],"sourcesContent":["import JSONStream from 'JSONStream';\nimport buildDebug from 'debug';\nimport type { Agents, Delays, RequestError, RetryOptions, Headers as gotHeaders } from 'got-cjs';\nimport got, { Options } from 'got-cjs';\nimport _ from 'lodash';\nimport type Stream from 'node:stream';\nimport { PassThrough, Readable } from 'node:stream';\nimport { URL } from 'node:url';\n\nimport type { searchUtils } from '@verdaccio/core';\nimport {\n API_ERROR,\n HEADERS,\n HTTP_STATUS,\n TOKEN_BASIC,\n TOKEN_BEARER,\n authUtils,\n constants,\n errorUtils,\n} from '@verdaccio/core';\nimport type { AgentOptionsConf, Config, Logger, Manifest, UpLinkConf } from '@verdaccio/types';\n\nimport CustomAgents from './agent';\nimport { parseInterval } from './proxy-utils';\n\nconst debug = buildDebug('verdaccio:proxy');\n\nconst encode = function (thing): string {\n return encodeURIComponent(thing).replace(/^%40/, '@');\n};\n\nconst jsonContentType = HEADERS.JSON;\nconst contentTypeAccept = `${jsonContentType};`;\n\n/**\n * Just a helper (`config[key] || default` doesn't work because of zeroes)\n */\nconst setConfig = (config: UpLinkConfLocal, key: string, def): string => {\n return _.isNil(config[key]) === false ? config[key] : def;\n};\n\nexport type UpLinkConfLocal = UpLinkConf & {\n no_proxy?: string;\n};\n\nexport interface ProxyList {\n [key: string]: IProxy;\n}\n\nexport type ProxySearchParams = {\n url: string;\n abort: AbortController;\n query?: searchUtils.SearchQuery;\n headers?: Headers;\n retry?: Partial<RetryOptions>;\n};\nexport interface IProxy {\n uplinkName: string;\n config: UpLinkConfLocal;\n failed_requests: number;\n userAgent: string;\n ca?: string | void;\n logger: Logger;\n server_id: string;\n url: URL;\n maxage: number;\n timeout: Delays;\n max_fails: number;\n fail_timeout: number;\n search(options: ProxySearchParams): Promise<Stream.Readable>;\n getRemoteMetadata(\n name: string,\n options: Partial<ISyncUplinksOptions>\n ): Promise<[Manifest, string]>;\n fetchTarball(\n url: string,\n options: Partial<Pick<ISyncUplinksOptions, 'remoteAddress' | 'etag' | 'retry'>>\n ): PassThrough;\n}\n\n// this type is need it by storage\nexport { Options as FetchOptions };\n\nexport interface ISyncUplinksOptions extends Options {\n uplinksLook?: boolean;\n etag?: string;\n remoteAddress?: string;\n}\n\n/**\n * Implements Storage interface\n * (same for storage.js, local-storage.js, up-storage.js)\n */\nclass ProxyStorage implements IProxy {\n public uplinkName: string;\n public config: UpLinkConfLocal;\n public failed_requests: number;\n public userAgent: string;\n public ca: string | void;\n public logger: Logger;\n public server_id: string;\n public url: URL;\n public maxage: number;\n public timeout: Delays;\n public max_fails: number;\n public fail_timeout: number;\n public agent_options: AgentOptionsConf;\n public proxy: string | undefined;\n private agent: Agents;\n // @ts-ignore\n public last_request_time: number | null;\n public strict_ssl: boolean;\n private retry: Partial<RetryOptions>;\n\n public constructor(\n uplinkName: string,\n config: UpLinkConfLocal,\n mainConfig: Config,\n logger: Logger,\n agent?: Agents\n ) {\n this.uplinkName = uplinkName;\n this.config = config;\n this.failed_requests = 0;\n this.userAgent = mainConfig.user_agent ?? 'hidden';\n this.ca = config.ca;\n this.logger = logger;\n this.server_id = mainConfig.server_id;\n this.agent_options = setConfig(this.config, 'agent_options', {\n keepAlive: true,\n maxSockets: 40,\n maxFreeSockets: 10,\n }) as AgentOptionsConf;\n this.url = new URL(this.config.url);\n const isHTTPS = this.url.protocol === 'https:';\n this._setupProxy(this.url.hostname, config, mainConfig, isHTTPS);\n this.agent = agent ?? this.getAgent();\n this.config.url = this.config.url.replace(/\\/$/, '');\n\n if (this.config.timeout && Number(this.config.timeout) >= 1000) {\n this.logger.warn(\n [\n 'Too big timeout value: ' + this.config.timeout,\n 'We changed time format to nginx-like one',\n '(see http://nginx.org/en/docs/syntax.html)',\n 'so please update your config accordingly',\n ].join('\\n')\n );\n }\n\n // a bunch of different configurable timers\n this.maxage = parseInterval(setConfig(this.config, 'maxage', '2m'));\n // https://github.com/sindresorhus/got/blob/main/documentation/6-timeout.md\n this.timeout = {\n request: parseInterval(setConfig(this.config, 'timeout', '30s')),\n };\n debug('set timeout %s', this.timeout);\n this.max_fails = Number(setConfig(this.config, 'max_fails', this.config.max_fails ?? 2));\n this.fail_timeout = parseInterval(setConfig(this.config, 'fail_timeout', '5m'));\n this.strict_ssl = Boolean(setConfig(this.config, 'strict_ssl', true));\n this.retry = { limit: this.max_fails ?? 2 };\n }\n\n private getAgent() {\n if (!this.agent) {\n // TODO: the config.ca (certificates) is not yet injected here\n const agentInstance = new CustomAgents(this.config.url, this.proxy, this.agent_options);\n return agentInstance.get();\n } else {\n return this.agent;\n }\n }\n\n public getHeaders(headers = {}): gotHeaders {\n const accept = HEADERS.ACCEPT;\n const acceptEncoding = HEADERS.ACCEPT_ENCODING;\n const userAgent = HEADERS.USER_AGENT;\n\n headers[accept] = headers[accept] || contentTypeAccept;\n headers[acceptEncoding] = headers[acceptEncoding] || 'gzip';\n // registry.npmjs.org will only return search result if user-agent include string 'npm'\n headers[userAgent] = headers[userAgent] || `npm (${this.userAgent})`;\n return this.setAuthNext(headers);\n }\n\n /**\n * Validate configuration auth and assign Header authorization\n * @param {Object} headers\n * @return {Object}\n * @private\n */\n private setAuthNext(headers: gotHeaders): gotHeaders {\n const { auth } = this.config;\n if (typeof auth === 'undefined' || typeof headers[HEADERS.AUTHORIZATION] === 'string') {\n return headers;\n }\n\n if (_.isObject(auth) === false && _.isObject((auth as any).token) === false) {\n this._throwErrorAuth('Auth invalid');\n }\n\n // get NPM_TOKEN http://blog.npmjs.org/post/118393368555/deploying-with-npm-private-modules\n // or get other variable export in env\n // https://github.com/verdaccio/verdaccio/releases/tag/v2.5.0\n let token: any;\n const tokenConf: any = auth;\n if (_.isNil(tokenConf.token) === false && _.isString(tokenConf.token)) {\n debug('use token from config');\n token = tokenConf.token;\n } else if (_.isNil(tokenConf.token_env) === false) {\n if (typeof tokenConf.token_env === 'string') {\n debug('use token from env %o', tokenConf.token_env);\n token = process.env[tokenConf.token_env];\n } else if (typeof tokenConf.token_env === 'boolean' && tokenConf.token_env) {\n debug('use token from env NPM_TOKEN');\n token = process.env.NPM_TOKEN;\n } else {\n this.logger.error(constants.ERROR_CODE.token_required);\n this._throwErrorAuth(constants.ERROR_CODE.token_required);\n }\n } else {\n debug('use token from env NPM_TOKEN');\n token = process.env.NPM_TOKEN;\n }\n\n if (typeof token === 'undefined') {\n this._throwErrorAuth(constants.ERROR_CODE.token_required);\n }\n\n // define type Auth allow basic and bearer\n const type = tokenConf.type || TOKEN_BASIC;\n debug('token type %o', type);\n this._setHeaderAuthorization(headers, type, token);\n\n return headers;\n }\n\n /**\n * @param {string} message\n * @throws {Error}\n * @private\n */\n private _throwErrorAuth(message: string): Error {\n this.logger.error(message);\n throw new Error(message);\n }\n\n /**\n * Assign Header authorization with type authentication\n * @param {Object} headers\n * @param {string} type\n * @param {string} token\n * @private\n */\n private _setHeaderAuthorization(headers: any, type: string, token: any): void {\n const _type: string = type.toLowerCase();\n\n if (_type !== TOKEN_BEARER.toLowerCase() && _type !== TOKEN_BASIC.toLowerCase()) {\n this._throwErrorAuth(`Auth type '${_type}' not allowed`);\n }\n\n headers[HEADERS.AUTHORIZATION] = authUtils.buildToken(type, token);\n }\n\n /**\n * It will add or override specified headers from config file.\n *\n * Eg:\n *\n * uplinks:\n npmjs:\n url: https://registry.npmjs.org/\n headers:\n Accept: \"application/vnd.npm.install-v2+json; q=1.0\"\n verdaccio-staging:\n url: https://mycompany.com/npm\n headers:\n Accept: \"application/json\"\n authorization: \"Basic YourBase64EncodedCredentials==\"\n\n * @param {Object} headers\n * @private\n */\n private applyUplinkHeaders(headers: gotHeaders): gotHeaders {\n if (!this.config.headers) {\n return headers;\n }\n\n // add/override headers specified in the config\n /* eslint guard-for-in: 0 */\n for (const key in this.config.headers) {\n headers[key] = this.config.headers[key];\n }\n return headers;\n }\n\n public async getRemoteMetadata(\n name: string,\n options: Partial<ISyncUplinksOptions>\n ): Promise<[Manifest, string]> {\n if (this._ifRequestFailure()) {\n throw errorUtils.getInternalError(API_ERROR.UPLINK_OFFLINE);\n }\n\n // FUTURE: allow mix headers that comes from the client\n debug('getting metadata for package %s', name);\n let headers = this.getHeaders(options?.headers);\n headers = this.addProxyHeaders(headers, options.remoteAddress);\n headers = this.applyUplinkHeaders(headers);\n // the following headers cannot be overwritten\n if (_.isNil(options.etag) === false) {\n headers[HEADERS.NONE_MATCH] = options.etag;\n headers[HEADERS.ACCEPT] = contentTypeAccept;\n }\n const method = options.method || 'GET';\n const uri = this.config.url + `/${encode(name)}`;\n debug('set retry limit is %s', this.retry.limit);\n let response;\n let responseLength = 0;\n try {\n const retry = options?.retry ?? this.retry;\n debug('retry initial count %s', retry);\n response = await got(uri, {\n headers,\n responseType: 'json',\n method,\n agent: this.agent,\n retry,\n timeout: this.timeout,\n hooks: {\n afterResponse: [\n (afterResponse) => {\n const code = afterResponse.statusCode;\n debug('after response code is %s', code);\n if (code >= HTTP_STATUS.OK && code < HTTP_STATUS.MULTIPLE_CHOICES) {\n if (this.failed_requests >= this.max_fails) {\n this.failed_requests = 0;\n this.logger.warn(\n {\n host: this.url.host,\n },\n 'host @{host} is now online'\n );\n }\n }\n\n return afterResponse;\n },\n ],\n beforeRetry: [\n (error: RequestError, count: number) => {\n debug('retry %s count: %s', uri, count);\n this.failed_requests = count ?? 0;\n this.logger.info(\n {\n request: {\n method: method,\n url: uri,\n },\n error: error.message,\n retryCount: this.failed_requests,\n },\n \"retry @{retryCount} req: '@{request.method} @{request.url}'\"\n );\n if (this.failed_requests >= this.max_fails) {\n this.logger.warn(\n {\n host: this.url.host,\n },\n 'host @{host} is now offline'\n );\n }\n },\n ],\n },\n })\n .on('request', () => {\n this.last_request_time = Date.now();\n })\n .on<any>('response', (eventResponse) => {\n const message = \"@{!status}, req: '@{request.method} @{request.url}' (streaming)\";\n this.logger.http(\n {\n request: {\n method: method,\n url: uri,\n },\n status: _.isNull(eventResponse) === false ? eventResponse.statusCode : 'ERR',\n },\n message\n );\n })\n .on('downloadProgress', (progress) => {\n if (progress.total) {\n debug('responseLength %s', progress.total);\n responseLength = progress.total;\n }\n });\n const etag = response.headers.etag as string;\n const data = response.body;\n\n // not modified status (304) registry does not return any payload\n // it is handled as an error with the original 304 status preserved\n if (response?.statusCode === HTTP_STATUS.NOT_MODIFIED) {\n const err = errorUtils.getNotFound(API_ERROR.NOT_MODIFIED_NO_DATA);\n err.code = HTTP_STATUS.NOT_MODIFIED;\n throw err;\n }\n\n debug('uri %s success', uri);\n const message = \"@{!status}, req: '@{request.method} @{request.url}'\";\n this.logger.http(\n {\n // if error is null/false change this to undefined so it wont log\n request: { method: method, url: uri },\n status: response.statusCode,\n bytes: {\n in: options?.json ? JSON.stringify(options?.json).length : 0,\n out: responseLength || 0,\n },\n },\n message\n );\n return [data, etag];\n } catch (err: any) {\n debug('error %s on uri %s', err.code, uri);\n if (err.code === 'ERR_NON_2XX_3XX_RESPONSE') {\n const code = err.response.statusCode;\n debug('error code %s', code);\n if (code === HTTP_STATUS.NOT_FOUND) {\n throw errorUtils.getNotFound(API_ERROR.NOT_PACKAGE_UPLINK);\n }\n\n if (!(code >= HTTP_STATUS.OK && code < HTTP_STATUS.MULTIPLE_CHOICES)) {\n const error = errorUtils.getInternalError(`${API_ERROR.BAD_STATUS_CODE}: ${code}`);\n // we need this code to identify outside which status code triggered the error\n error.remoteStatus = code;\n throw error;\n }\n } else if (this._isRequestTimeout(err)) {\n debug('error code timeout');\n throw errorUtils.getServiceUnavailable(API_ERROR.SERVER_TIME_OUT);\n }\n throw err;\n }\n }\n\n // FIXME: handle stream and retry\n public fetchTarball(\n url: string,\n overrideOptions: Pick<ISyncUplinksOptions, 'remoteAddress' | 'etag' | 'retry'>\n ): any {\n debug('fetching url for %s', url);\n const options = { ...this.config, ...overrideOptions };\n let headers = this.getHeaders(options?.headers);\n headers = this.addProxyHeaders(headers, options.remoteAddress);\n headers = this.applyUplinkHeaders(headers);\n // the following headers cannot be overwritten\n if (_.isNil(options.etag) === false) {\n headers[HEADERS.NONE_MATCH] = options.etag;\n headers[HEADERS.ACCEPT] = contentTypeAccept;\n }\n const method = 'GET';\n // const uri = this.config.url + `/${encode(name)}`;\n debug('request uri for %s', url);\n\n const readStream = got\n .stream(url, {\n headers,\n method,\n agent: this.agent,\n // FIXME: this should be taken from construtor as priority\n retry: this.retry ?? options?.retry,\n timeout: this.timeout,\n })\n .on('request', () => {\n this.last_request_time = Date.now();\n });\n\n return readStream;\n }\n\n /**\n * Perform a stream search.\n * @param {*} options request options\n * @return {Stream}\n */\n public async search({ url, abort, retry }: ProxySearchParams): Promise<Stream.Readable> {\n try {\n // Incoming URL is relative ie /-/v1/search...\n const uri = new URL(url, this.url).href;\n this.logger.http(\n { uri, uplink: this.uplinkName },\n 'search request to uplink @{uplink} - @{uri}'\n );\n debug('searching on %o', uri);\n const response = got(uri, {\n signal: abort ? abort.signal : {},\n agent: this.agent,\n timeout: this.timeout,\n retry: retry ?? this.retry,\n });\n\n const res = await response.text();\n const total = JSON.parse(res).total;\n debug('number of packages found: %o', total);\n const streamSearch = new PassThrough({ objectMode: true });\n const streamResponse = Readable.from(res);\n // objects is one of the properties on the body, it ignores date and total\n streamResponse.pipe(JSONStream.parse('objects')).pipe(streamSearch, { end: true });\n return streamSearch;\n } catch (err: any) {\n debug('search error %s', err);\n if (err.response.statusCode === 409) {\n throw errorUtils.getInternalError(`bad status code ${err.response.statusCode} from uplink`);\n }\n this.logger.error(\n { errorMessage: err?.message, name: this.uplinkName },\n 'proxy uplink @{name} search error: @{errorMessage}'\n );\n throw err;\n }\n }\n\n private addProxyHeaders(headers: gotHeaders, remoteAddress?: string): gotHeaders {\n // Only submit X-Forwarded-For field if we don't have a proxy selected\n // in the config file.\n //\n // Otherwise misconfigured proxy could return 407\n if (!this.proxy) {\n headers[HEADERS.FORWARDED_FOR] =\n (headers['x-forwarded-for'] ? headers['x-forwarded-for'] + ', ' : '') + remoteAddress;\n }\n\n // always attach Via header to avoid loops, even if we're not proxying\n headers['via'] = headers['via'] ? headers['via'] + ', ' : '';\n headers['via'] += '1.1 ' + this.server_id + ' (Verdaccio)';\n\n return headers;\n }\n\n /**\n * If the request failure.\n * @return {boolean}\n * @private\n */\n private _ifRequestFailure(): boolean {\n return (\n this.failed_requests >= this.max_fails &&\n Math.abs(Date.now() - (this.last_request_time as number)) < this.fail_timeout\n );\n }\n\n /**\n * Check if the request timed out (network or http errors).\n * @param {RequestError} err\n * @return {boolean}\n */\n private _isRequestTimeout(err: RequestError): boolean {\n const code = err?.response?.statusCode;\n return (\n err.code === 'ETIMEDOUT' ||\n err.code === 'ESOCKETTIMEDOUT' ||\n err.code === 'ECONNRESET' ||\n code === HTTP_STATUS.REQUEST_TIMEOUT ||\n code === HTTP_STATUS.BAD_GATEWAY ||\n code === HTTP_STATUS.SERVICE_UNAVAILABLE ||\n code === HTTP_STATUS.GATEWAY_TIMEOUT\n );\n }\n\n /**\n * Set up a proxy.\n * @param {*} hostname\n * @param {*} config\n * @param {*} mainconfig\n * @param {*} isHTTPS\n */\n private _setupProxy(\n hostname: string,\n config: UpLinkConfLocal,\n mainconfig: Config,\n isHTTPS: boolean\n ): void {\n let noProxyList;\n const proxy_key: string = isHTTPS ? 'https_proxy' : 'http_proxy';\n debug('looking for %o', proxy_key);\n\n // get http_proxy and no_proxy configs\n if (proxy_key in config) {\n this.proxy = config[proxy_key];\n debug('found %o in uplink config', this.proxy);\n } else if (proxy_key in mainconfig) {\n this.proxy = mainconfig[proxy_key];\n debug('found %o in main config', this.proxy);\n }\n if ('no_proxy' in config) {\n noProxyList = config.no_proxy;\n } else if ('no_proxy' in mainconfig) {\n noProxyList = mainconfig.no_proxy;\n }\n\n // use wget-like algorithm to determine if proxy shouldn't be used\n if (hostname[0] !== '.') {\n hostname = '.' + hostname;\n }\n\n if (_.isString(noProxyList) && noProxyList.length) {\n noProxyList = noProxyList.split(',');\n }\n\n if (_.isArray(noProxyList)) {\n for (let i = 0; i < noProxyList.length; i++) {\n let noProxyItem = noProxyList[i];\n if (noProxyItem[0] !== '.') {\n noProxyItem = '.' + noProxyItem;\n }\n if (hostname.endsWith(noProxyItem)) {\n if (this.proxy) {\n debug('not using proxy, excluded by @{rule}', noProxyItem);\n this.logger.debug(\n { url: this.url.href, rule: noProxyItem },\n 'not using proxy for @{url}, excluded by @{rule} rule'\n );\n this.proxy = undefined;\n }\n break;\n }\n }\n }\n\n if (typeof this.proxy === 'string') {\n debug('using proxy @{proxy} for @{url}', this.proxy, this.url.href);\n this.logger.debug(\n { url: this.url.href, proxy: this.proxy },\n 'using proxy @{proxy} for @{url}'\n );\n }\n }\n}\n\nexport { ProxyStorage };\n"],"mappings":"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"}
|
package/build/uplink-util.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
1
|
+
import { Config, Logger, Manifest } from '@verdaccio/types';
|
|
2
|
+
import { IProxy } from './index';
|
|
3
3
|
export interface ProxyInstanceList {
|
|
4
4
|
[key: string]: IProxy;
|
|
5
5
|
}
|
package/build/uplink-util.js
CHANGED
|
@@ -1,43 +1,26 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.setupUpLinks = setupUpLinks;
|
|
7
|
-
exports.updateVersionsHiddenUpLinkNext = updateVersionsHiddenUpLinkNext;
|
|
8
|
-
var _index = require("./index");
|
|
9
|
-
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
10
|
-
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
11
|
-
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
12
|
-
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
13
|
-
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
14
|
-
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
1
|
+
const require_proxy = require("./proxy.js");
|
|
2
|
+
require("./index.js");
|
|
3
|
+
//#region src/uplink-util.ts
|
|
15
4
|
/**
|
|
16
|
-
|
|
17
|
-
|
|
5
|
+
* Set up uplinks for each proxy configuration.
|
|
6
|
+
*/
|
|
18
7
|
function setupUpLinks(config, logger) {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
// instance for each up-link definition
|
|
23
|
-
var proxy = new _index.ProxyStorage(uplinkName, config.uplinks[uplinkName], config, logger);
|
|
24
|
-
uplinks[uplinkName] = proxy;
|
|
25
|
-
}
|
|
26
|
-
return uplinks;
|
|
8
|
+
const uplinks = {};
|
|
9
|
+
for (const uplinkName of Object.keys(config.uplinks)) uplinks[uplinkName] = new require_proxy.ProxyStorage(uplinkName, config.uplinks[uplinkName], config, logger);
|
|
10
|
+
return uplinks;
|
|
27
11
|
}
|
|
28
12
|
function updateVersionsHiddenUpLinkNext(manifest, upLink) {
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
versions[version][Symbol["for"]('__verdaccio_uplink')] = upLink.uplinkName;
|
|
38
|
-
}
|
|
39
|
-
return _objectSpread(_objectSpread({}, manifest), {}, {
|
|
40
|
-
versions: versions
|
|
41
|
-
});
|
|
13
|
+
const { versions } = manifest;
|
|
14
|
+
const versionsList = Object.keys(versions);
|
|
15
|
+
if (versionsList.length === 0) return manifest;
|
|
16
|
+
for (const version of versionsList) versions[version][Symbol.for("__verdaccio_uplink")] = upLink.uplinkName;
|
|
17
|
+
return {
|
|
18
|
+
...manifest,
|
|
19
|
+
versions
|
|
20
|
+
};
|
|
42
21
|
}
|
|
22
|
+
//#endregion
|
|
23
|
+
exports.setupUpLinks = setupUpLinks;
|
|
24
|
+
exports.updateVersionsHiddenUpLinkNext = updateVersionsHiddenUpLinkNext;
|
|
25
|
+
|
|
43
26
|
//# sourceMappingURL=uplink-util.js.map
|
package/build/uplink-util.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"uplink-util.js","names":[
|
|
1
|
+
{"version":3,"file":"uplink-util.js","names":[],"sources":["../src/uplink-util.ts"],"sourcesContent":["import type { Config, Logger, Manifest } from '@verdaccio/types';\n\nimport type { IProxy } from './index';\nimport { ProxyStorage } from './index';\n\nexport interface ProxyInstanceList {\n [key: string]: IProxy;\n}\n\n/**\n * Set up uplinks for each proxy configuration.\n */\nexport function setupUpLinks(config: Config, logger: Logger): ProxyInstanceList {\n const uplinks: ProxyInstanceList = {};\n\n for (const uplinkName of Object.keys(config.uplinks)) {\n // instance for each up-link definition\n const proxy: IProxy = new ProxyStorage(uplinkName, config.uplinks[uplinkName], config, logger);\n uplinks[uplinkName] = proxy;\n }\n\n return uplinks;\n}\n\nexport function updateVersionsHiddenUpLinkNext(manifest: Manifest, upLink: IProxy): Manifest {\n const { versions } = manifest;\n const versionsList = Object.keys(versions);\n if (versionsList.length === 0) {\n return manifest;\n }\n\n for (const version of versionsList) {\n // holds a \"hidden\" value to be used by the package storage.\n versions[version][Symbol.for('__verdaccio_uplink')] = upLink.uplinkName;\n }\n\n return { ...manifest, versions };\n}\n"],"mappings":";;;;;;AAYA,SAAgB,aAAa,QAAgB,QAAmC;CAC9E,MAAM,UAA6B,EAAE;AAErC,MAAK,MAAM,cAAc,OAAO,KAAK,OAAO,QAAQ,CAGlD,SAAQ,cADc,IAAI,cAAA,aAAa,YAAY,OAAO,QAAQ,aAAa,QAAQ,OAAO;AAIhG,QAAO;;AAGT,SAAgB,+BAA+B,UAAoB,QAA0B;CAC3F,MAAM,EAAE,aAAa;CACrB,MAAM,eAAe,OAAO,KAAK,SAAS;AAC1C,KAAI,aAAa,WAAW,EAC1B,QAAO;AAGT,MAAK,MAAM,WAAW,aAEpB,UAAS,SAAS,OAAO,IAAI,qBAAqB,IAAI,OAAO;AAG/D,QAAO;EAAE,GAAG;EAAU;EAAU"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { ProxyStorage } from "./proxy.mjs";
|
|
2
|
+
import "./index.mjs";
|
|
3
|
+
//#region src/uplink-util.ts
|
|
4
|
+
/**
|
|
5
|
+
* Set up uplinks for each proxy configuration.
|
|
6
|
+
*/
|
|
7
|
+
function setupUpLinks(config, logger) {
|
|
8
|
+
const uplinks = {};
|
|
9
|
+
for (const uplinkName of Object.keys(config.uplinks)) uplinks[uplinkName] = new ProxyStorage(uplinkName, config.uplinks[uplinkName], config, logger);
|
|
10
|
+
return uplinks;
|
|
11
|
+
}
|
|
12
|
+
function updateVersionsHiddenUpLinkNext(manifest, upLink) {
|
|
13
|
+
const { versions } = manifest;
|
|
14
|
+
const versionsList = Object.keys(versions);
|
|
15
|
+
if (versionsList.length === 0) return manifest;
|
|
16
|
+
for (const version of versionsList) versions[version][Symbol.for("__verdaccio_uplink")] = upLink.uplinkName;
|
|
17
|
+
return {
|
|
18
|
+
...manifest,
|
|
19
|
+
versions
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
//#endregion
|
|
23
|
+
export { setupUpLinks, updateVersionsHiddenUpLinkNext };
|
|
24
|
+
|
|
25
|
+
//# sourceMappingURL=uplink-util.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"uplink-util.mjs","names":[],"sources":["../src/uplink-util.ts"],"sourcesContent":["import type { Config, Logger, Manifest } from '@verdaccio/types';\n\nimport type { IProxy } from './index';\nimport { ProxyStorage } from './index';\n\nexport interface ProxyInstanceList {\n [key: string]: IProxy;\n}\n\n/**\n * Set up uplinks for each proxy configuration.\n */\nexport function setupUpLinks(config: Config, logger: Logger): ProxyInstanceList {\n const uplinks: ProxyInstanceList = {};\n\n for (const uplinkName of Object.keys(config.uplinks)) {\n // instance for each up-link definition\n const proxy: IProxy = new ProxyStorage(uplinkName, config.uplinks[uplinkName], config, logger);\n uplinks[uplinkName] = proxy;\n }\n\n return uplinks;\n}\n\nexport function updateVersionsHiddenUpLinkNext(manifest: Manifest, upLink: IProxy): Manifest {\n const { versions } = manifest;\n const versionsList = Object.keys(versions);\n if (versionsList.length === 0) {\n return manifest;\n }\n\n for (const version of versionsList) {\n // holds a \"hidden\" value to be used by the package storage.\n versions[version][Symbol.for('__verdaccio_uplink')] = upLink.uplinkName;\n }\n\n return { ...manifest, versions };\n}\n"],"mappings":";;;;;;AAYA,SAAgB,aAAa,QAAgB,QAAmC;CAC9E,MAAM,UAA6B,EAAE;AAErC,MAAK,MAAM,cAAc,OAAO,KAAK,OAAO,QAAQ,CAGlD,SAAQ,cADc,IAAI,aAAa,YAAY,OAAO,QAAQ,aAAa,QAAQ,OAAO;AAIhG,QAAO;;AAGT,SAAgB,+BAA+B,UAAoB,QAA0B;CAC3F,MAAM,EAAE,aAAa;CACrB,MAAM,eAAe,OAAO,KAAK,SAAS;AAC1C,KAAI,aAAa,WAAW,EAC1B,QAAO;AAGT,MAAK,MAAM,WAAW,aAEpB,UAAS,SAAS,OAAO,IAAI,qBAAqB,IAAI,OAAO;AAG/D,QAAO;EAAE,GAAG;EAAU;EAAU"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@verdaccio/proxy",
|
|
3
|
-
"version": "9.0.0-next-9.
|
|
3
|
+
"version": "9.0.0-next-9.5",
|
|
4
4
|
"description": "Verdaccio Proxy Fetcher",
|
|
5
5
|
"main": "./build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
"node": ">=24"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@verdaccio/config": "9.0.0-next-9.
|
|
37
|
-
"@verdaccio/core": "9.0.0-next-9.
|
|
36
|
+
"@verdaccio/config": "9.0.0-next-9.5",
|
|
37
|
+
"@verdaccio/core": "9.0.0-next-9.5",
|
|
38
38
|
"JSONStream": "1.3.5",
|
|
39
39
|
"debug": "4.4.3",
|
|
40
40
|
"got-cjs": "12.5.4",
|
|
@@ -42,23 +42,34 @@
|
|
|
42
42
|
"lodash": "4.17.23"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@verdaccio/logger": "9.0.0-next-9.
|
|
46
|
-
"@verdaccio/types": "14.0.0-next-9.
|
|
45
|
+
"@verdaccio/logger": "9.0.0-next-9.5",
|
|
46
|
+
"@verdaccio/types": "14.0.0-next-9.2",
|
|
47
47
|
"get-stream": "6.0.1",
|
|
48
48
|
"nock": "13.5.6",
|
|
49
|
-
"vitest": "
|
|
49
|
+
"vitest": "4.1.0"
|
|
50
50
|
},
|
|
51
51
|
"funding": {
|
|
52
52
|
"type": "opencollective",
|
|
53
53
|
"url": "https://opencollective.com/verdaccio"
|
|
54
54
|
},
|
|
55
|
+
"module": "./build/index.mjs",
|
|
56
|
+
"exports": {
|
|
57
|
+
".": {
|
|
58
|
+
"import": {
|
|
59
|
+
"types": "./build/index.d.ts",
|
|
60
|
+
"default": "./build/index.mjs"
|
|
61
|
+
},
|
|
62
|
+
"require": {
|
|
63
|
+
"types": "./build/index.d.ts",
|
|
64
|
+
"default": "./build/index.js"
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
"./build/*": "./build/*"
|
|
68
|
+
},
|
|
55
69
|
"scripts": {
|
|
56
70
|
"clean": "rimraf ./build",
|
|
57
71
|
"test": "vitest run",
|
|
58
|
-
"
|
|
59
|
-
"build
|
|
60
|
-
"build:js": "babel src/ --out-dir build/ --copy-files --extensions \".ts,.tsx\" --source-maps",
|
|
61
|
-
"watch": "pnpm build:js -- --watch",
|
|
62
|
-
"build": "pnpm run build:js && pnpm run build:types"
|
|
72
|
+
"watch": "vite build --watch",
|
|
73
|
+
"build": "vite build"
|
|
63
74
|
}
|
|
64
75
|
}
|
package/build/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":["_proxy","require","Object","keys","forEach","key","exports","defineProperty","enumerable","get","_uplinkUtil"],"sources":["../src/index.ts"],"sourcesContent":["export * from './proxy';\nexport * from './uplink-util';\n"],"mappings":";;;;;AAAA,IAAAA,MAAA,GAAAC,OAAA;AAAAC,MAAA,CAAAC,IAAA,CAAAH,MAAA,EAAAI,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAA,GAAA,IAAAC,OAAA,IAAAA,OAAA,CAAAD,GAAA,MAAAL,MAAA,CAAAK,GAAA;EAAAH,MAAA,CAAAK,cAAA,CAAAD,OAAA,EAAAD,GAAA;IAAAG,UAAA;IAAAC,GAAA,WAAAA,IAAA;MAAA,OAAAT,MAAA,CAAAK,GAAA;IAAA;EAAA;AAAA;AACA,IAAAK,WAAA,GAAAT,OAAA;AAAAC,MAAA,CAAAC,IAAA,CAAAO,WAAA,EAAAN,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAA,GAAA,IAAAC,OAAA,IAAAA,OAAA,CAAAD,GAAA,MAAAK,WAAA,CAAAL,GAAA;EAAAH,MAAA,CAAAK,cAAA,CAAAD,OAAA,EAAAD,GAAA;IAAAG,UAAA;IAAAC,GAAA,WAAAA,IAAA;MAAA,OAAAC,WAAA,CAAAL,GAAA;IAAA;EAAA;AAAA","ignoreList":[]}
|