mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 21:58:48 +02:00

The documentation states people can use the `$schema` property, but the JSON schema forbids this. This change allows it. PR-URL: https://github.com/nodejs/node/pull/57560 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: Jordan Harband <ljharb@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
120 lines
3 KiB
JavaScript
120 lines
3 KiB
JavaScript
'use strict';
|
|
|
|
const {
|
|
ArrayPrototypeMap,
|
|
ArrayPrototypeSort,
|
|
ObjectFromEntries,
|
|
ObjectKeys,
|
|
StringPrototypeReplace,
|
|
} = primordials;
|
|
|
|
const {
|
|
getCLIOptionsValues,
|
|
getCLIOptionsInfo,
|
|
getEmbedderOptions: getEmbedderOptionsFromBinding,
|
|
getEnvOptionsInputType,
|
|
} = internalBinding('options');
|
|
|
|
let warnOnAllowUnauthorized = true;
|
|
|
|
let optionsDict;
|
|
let cliInfo;
|
|
let embedderOptions;
|
|
|
|
// getCLIOptionsValues() would serialize the option values from C++ land.
|
|
// It would error if the values are queried before bootstrap is
|
|
// complete so that we don't accidentally include runtime-dependent
|
|
// states into a runtime-independent snapshot.
|
|
function getCLIOptionsFromBinding() {
|
|
return optionsDict ??= getCLIOptionsValues();
|
|
}
|
|
|
|
function getCLIOptionsInfoFromBinding() {
|
|
return cliInfo ??= getCLIOptionsInfo();
|
|
}
|
|
|
|
function getEmbedderOptions() {
|
|
return embedderOptions ??= getEmbedderOptionsFromBinding();
|
|
}
|
|
|
|
function generateConfigJsonSchema() {
|
|
const map = getEnvOptionsInputType();
|
|
|
|
const schema = {
|
|
__proto__: null,
|
|
$schema: 'https://json-schema.org/draft/2020-12/schema',
|
|
additionalProperties: false,
|
|
properties: {
|
|
$schema: {
|
|
__proto__: null,
|
|
type: 'string',
|
|
},
|
|
nodeOptions: {
|
|
__proto__: null,
|
|
additionalProperties: false,
|
|
properties: { __proto__: null },
|
|
type: 'object',
|
|
},
|
|
__proto__: null,
|
|
},
|
|
type: 'object',
|
|
};
|
|
|
|
const nodeOptions = schema.properties.nodeOptions.properties;
|
|
|
|
for (const { 0: key, 1: type } of map) {
|
|
const keyWithoutPrefix = StringPrototypeReplace(key, '--', '');
|
|
if (type === 'array') {
|
|
nodeOptions[keyWithoutPrefix] = {
|
|
__proto__: null,
|
|
oneOf: [
|
|
{ __proto__: null, type: 'string' },
|
|
{ __proto__: null, items: { __proto__: null, type: 'string', minItems: 1 }, type: 'array' },
|
|
],
|
|
};
|
|
} else {
|
|
nodeOptions[keyWithoutPrefix] = { __proto__: null, type };
|
|
}
|
|
}
|
|
|
|
// Sort the proerties by key alphabetically.
|
|
const sortedKeys = ArrayPrototypeSort(ObjectKeys(nodeOptions));
|
|
const sortedProperties = ObjectFromEntries(
|
|
ArrayPrototypeMap(sortedKeys, (key) => [key, nodeOptions[key]]),
|
|
);
|
|
|
|
schema.properties.nodeOptions.properties = sortedProperties;
|
|
|
|
return schema;
|
|
}
|
|
|
|
function refreshOptions() {
|
|
optionsDict = undefined;
|
|
}
|
|
|
|
function getOptionValue(optionName) {
|
|
return getCLIOptionsFromBinding()[optionName];
|
|
}
|
|
|
|
function getAllowUnauthorized() {
|
|
const allowUnauthorized = process.env.NODE_TLS_REJECT_UNAUTHORIZED === '0';
|
|
|
|
if (allowUnauthorized && warnOnAllowUnauthorized) {
|
|
warnOnAllowUnauthorized = false;
|
|
process.emitWarning(
|
|
'Setting the NODE_TLS_REJECT_UNAUTHORIZED ' +
|
|
'environment variable to \'0\' makes TLS connections ' +
|
|
'and HTTPS requests insecure by disabling ' +
|
|
'certificate verification.');
|
|
}
|
|
return allowUnauthorized;
|
|
}
|
|
|
|
module.exports = {
|
|
getCLIOptionsInfo: getCLIOptionsInfoFromBinding,
|
|
getOptionValue,
|
|
getAllowUnauthorized,
|
|
getEmbedderOptions,
|
|
generateConfigJsonSchema,
|
|
refreshOptions,
|
|
};
|