@redocly/openapi-core 0.0.0-snapshot.1737554067
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/README.md +268 -0
- package/lib/benchmark/benches/lint-with-many-rules.bench.d.ts +4 -0
- package/lib/benchmark/benches/lint-with-many-rules.bench.js +38 -0
- package/lib/benchmark/benches/lint-with-nested-rule.bench.d.ts +4 -0
- package/lib/benchmark/benches/lint-with-nested-rule.bench.js +44 -0
- package/lib/benchmark/benches/lint-with-no-rules.bench.d.ts +4 -0
- package/lib/benchmark/benches/lint-with-no-rules.bench.js +25 -0
- package/lib/benchmark/benches/lint-with-top-level-rule-report.bench.d.ts +4 -0
- package/lib/benchmark/benches/lint-with-top-level-rule-report.bench.js +37 -0
- package/lib/benchmark/benches/lint-with-top-level-rule.bench.d.ts +4 -0
- package/lib/benchmark/benches/lint-with-top-level-rule.bench.js +36 -0
- package/lib/benchmark/benches/recommended-oas3.bench.d.ts +3 -0
- package/lib/benchmark/benches/recommended-oas3.bench.js +21 -0
- package/lib/benchmark/benches/resolve-with-no-external.bench.d.ts +3 -0
- package/lib/benchmark/benches/resolve-with-no-external.bench.js +22 -0
- package/lib/benchmark/utils.d.ts +6 -0
- package/lib/benchmark/utils.js +34 -0
- package/lib/bundle.d.ts +50 -0
- package/lib/bundle.js +385 -0
- package/lib/config/all.d.ts +3 -0
- package/lib/config/all.js +227 -0
- package/lib/config/builtIn.d.ts +3 -0
- package/lib/config/builtIn.js +53 -0
- package/lib/config/config-resolvers.d.ts +30 -0
- package/lib/config/config-resolvers.js +447 -0
- package/lib/config/config.d.ts +53 -0
- package/lib/config/config.js +320 -0
- package/lib/config/index.d.ts +7 -0
- package/lib/config/index.js +23 -0
- package/lib/config/load.d.ts +38 -0
- package/lib/config/load.js +140 -0
- package/lib/config/minimal.d.ts +3 -0
- package/lib/config/minimal.js +203 -0
- package/lib/config/recommended-strict.d.ts +3 -0
- package/lib/config/recommended-strict.js +203 -0
- package/lib/config/recommended.d.ts +3 -0
- package/lib/config/recommended.js +203 -0
- package/lib/config/rules.d.ts +10 -0
- package/lib/config/rules.js +37 -0
- package/lib/config/spec.d.ts +3 -0
- package/lib/config/spec.js +29 -0
- package/lib/config/types.d.ts +189 -0
- package/lib/config/types.js +2 -0
- package/lib/config/utils.d.ts +19 -0
- package/lib/config/utils.js +308 -0
- package/lib/decorators/arazzo/index.d.ts +1 -0
- package/lib/decorators/arazzo/index.js +4 -0
- package/lib/decorators/async2/index.d.ts +1 -0
- package/lib/decorators/async2/index.js +4 -0
- package/lib/decorators/async3/index.d.ts +1 -0
- package/lib/decorators/async3/index.js +4 -0
- package/lib/decorators/common/filters/filter-helper.d.ts +3 -0
- package/lib/decorators/common/filters/filter-helper.js +66 -0
- package/lib/decorators/common/filters/filter-in.d.ts +2 -0
- package/lib/decorators/common/filters/filter-in.js +17 -0
- package/lib/decorators/common/filters/filter-out.d.ts +2 -0
- package/lib/decorators/common/filters/filter-out.js +17 -0
- package/lib/decorators/common/info-description-override.d.ts +2 -0
- package/lib/decorators/common/info-description-override.js +24 -0
- package/lib/decorators/common/info-override.d.ts +2 -0
- package/lib/decorators/common/info-override.js +17 -0
- package/lib/decorators/common/media-type-examples-override.d.ts +2 -0
- package/lib/decorators/common/media-type-examples-override.js +59 -0
- package/lib/decorators/common/operation-description-override.d.ts +2 -0
- package/lib/decorators/common/operation-description-override.js +29 -0
- package/lib/decorators/common/registry-dependencies.d.ts +2 -0
- package/lib/decorators/common/registry-dependencies.js +24 -0
- package/lib/decorators/common/remove-x-internal.d.ts +2 -0
- package/lib/decorators/common/remove-x-internal.js +69 -0
- package/lib/decorators/common/tag-description-override.d.ts +2 -0
- package/lib/decorators/common/tag-description-override.js +25 -0
- package/lib/decorators/oas2/index.d.ts +11 -0
- package/lib/decorators/oas2/index.js +21 -0
- package/lib/decorators/oas2/remove-unused-components.d.ts +2 -0
- package/lib/decorators/oas2/remove-unused-components.js +89 -0
- package/lib/decorators/oas3/index.d.ts +12 -0
- package/lib/decorators/oas3/index.js +23 -0
- package/lib/decorators/oas3/remove-unused-components.d.ts +2 -0
- package/lib/decorators/oas3/remove-unused-components.js +100 -0
- package/lib/env.d.ts +2 -0
- package/lib/env.js +7 -0
- package/lib/format/codeframes.d.ts +22 -0
- package/lib/format/codeframes.js +185 -0
- package/lib/format/format.d.ts +20 -0
- package/lib/format/format.js +365 -0
- package/lib/index.d.ts +26 -0
- package/lib/index.js +98 -0
- package/lib/js-yaml/index.d.ts +3 -0
- package/lib/js-yaml/index.js +15 -0
- package/lib/lint.d.ts +32 -0
- package/lib/lint.js +118 -0
- package/lib/logger.d.ts +10 -0
- package/lib/logger.js +31 -0
- package/lib/oas-types.d.ts +36 -0
- package/lib/oas-types.js +92 -0
- package/lib/output.d.ts +3 -0
- package/lib/output.js +9 -0
- package/lib/redocly/domains.d.ts +14 -0
- package/lib/redocly/domains.js +41 -0
- package/lib/redocly/index.d.ts +30 -0
- package/lib/redocly/index.js +131 -0
- package/lib/redocly/redocly-client-types.d.ts +8 -0
- package/lib/redocly/redocly-client-types.js +2 -0
- package/lib/redocly/registry-api-types.d.ts +29 -0
- package/lib/redocly/registry-api-types.js +2 -0
- package/lib/redocly/registry-api.d.ts +17 -0
- package/lib/redocly/registry-api.js +96 -0
- package/lib/ref-utils.d.ts +27 -0
- package/lib/ref-utils.js +85 -0
- package/lib/resolve.d.ts +66 -0
- package/lib/resolve.js +342 -0
- package/lib/rules/ajv.d.ts +10 -0
- package/lib/rules/ajv.js +82 -0
- package/lib/rules/arazzo/criteria-unique.d.ts +2 -0
- package/lib/rules/arazzo/criteria-unique.js +71 -0
- package/lib/rules/arazzo/index.d.ts +3 -0
- package/lib/rules/arazzo/index.js +36 -0
- package/lib/rules/arazzo/parameters-unique.d.ts +2 -0
- package/lib/rules/arazzo/parameters-unique.js +32 -0
- package/lib/rules/arazzo/requestBody-replacements-unique.d.ts +2 -0
- package/lib/rules/arazzo/requestBody-replacements-unique.js +28 -0
- package/lib/rules/arazzo/sourceDescription-type.d.ts +2 -0
- package/lib/rules/arazzo/sourceDescription-type.js +22 -0
- package/lib/rules/arazzo/sourceDescriptions-name-unique.d.ts +2 -0
- package/lib/rules/arazzo/sourceDescriptions-name-unique.js +24 -0
- package/lib/rules/arazzo/sourceDescriptions-not-empty.d.ts +2 -0
- package/lib/rules/arazzo/sourceDescriptions-not-empty.js +18 -0
- package/lib/rules/arazzo/step-onFailure-unique.d.ts +2 -0
- package/lib/rules/arazzo/step-onFailure-unique.js +32 -0
- package/lib/rules/arazzo/step-onSuccess-unique.d.ts +2 -0
- package/lib/rules/arazzo/step-onSuccess-unique.js +32 -0
- package/lib/rules/arazzo/stepId-unique.d.ts +2 -0
- package/lib/rules/arazzo/stepId-unique.js +26 -0
- package/lib/rules/arazzo/workflow-dependsOn.d.ts +2 -0
- package/lib/rules/arazzo/workflow-dependsOn.js +56 -0
- package/lib/rules/arazzo/workflowId-unique.d.ts +2 -0
- package/lib/rules/arazzo/workflowId-unique.js +22 -0
- package/lib/rules/async2/channels-kebab-case.d.ts +2 -0
- package/lib/rules/async2/channels-kebab-case.js +19 -0
- package/lib/rules/async2/index.d.ts +3 -0
- package/lib/rules/async2/index.js +27 -0
- package/lib/rules/async2/no-channel-trailing-slash.d.ts +2 -0
- package/lib/rules/async2/no-channel-trailing-slash.js +16 -0
- package/lib/rules/async3/channels-kebab-case.d.ts +2 -0
- package/lib/rules/async3/channels-kebab-case.js +19 -0
- package/lib/rules/async3/index.d.ts +3 -0
- package/lib/rules/async3/index.js +27 -0
- package/lib/rules/async3/no-channel-trailing-slash.d.ts +2 -0
- package/lib/rules/async3/no-channel-trailing-slash.js +16 -0
- package/lib/rules/common/assertions/asserts.d.ts +30 -0
- package/lib/rules/common/assertions/asserts.js +281 -0
- package/lib/rules/common/assertions/index.d.ts +27 -0
- package/lib/rules/common/assertions/index.js +24 -0
- package/lib/rules/common/assertions/utils.d.ts +28 -0
- package/lib/rules/common/assertions/utils.js +226 -0
- package/lib/rules/common/info-contact.d.ts +2 -0
- package/lib/rules/common/info-contact.js +17 -0
- package/lib/rules/common/info-license-strict.d.ts +2 -0
- package/lib/rules/common/info-license-strict.js +26 -0
- package/lib/rules/common/info-license-url.d.ts +2 -0
- package/lib/rules/common/info-license-url.js +12 -0
- package/lib/rules/common/info-license.d.ts +2 -0
- package/lib/rules/common/info-license.js +17 -0
- package/lib/rules/common/no-ambiguous-paths.d.ts +2 -0
- package/lib/rules/common/no-ambiguous-paths.js +45 -0
- package/lib/rules/common/no-enum-type-mismatch.d.ts +2 -0
- package/lib/rules/common/no-enum-type-mismatch.js +41 -0
- package/lib/rules/common/no-http-verbs-in-paths.d.ts +2 -0
- package/lib/rules/common/no-http-verbs-in-paths.js +33 -0
- package/lib/rules/common/no-identical-paths.d.ts +2 -0
- package/lib/rules/common/no-identical-paths.js +24 -0
- package/lib/rules/common/no-invalid-parameter-examples.d.ts +1 -0
- package/lib/rules/common/no-invalid-parameter-examples.js +24 -0
- package/lib/rules/common/no-invalid-schema-examples.d.ts +1 -0
- package/lib/rules/common/no-invalid-schema-examples.js +22 -0
- package/lib/rules/common/no-path-trailing-slash.d.ts +2 -0
- package/lib/rules/common/no-path-trailing-slash.js +16 -0
- package/lib/rules/common/no-required-schema-properties-undefined.d.ts +2 -0
- package/lib/rules/common/no-required-schema-properties-undefined.js +36 -0
- package/lib/rules/common/operation-2xx-response.d.ts +2 -0
- package/lib/rules/common/operation-2xx-response.js +23 -0
- package/lib/rules/common/operation-4xx-response.d.ts +2 -0
- package/lib/rules/common/operation-4xx-response.js +23 -0
- package/lib/rules/common/operation-description.d.ts +2 -0
- package/lib/rules/common/operation-description.js +12 -0
- package/lib/rules/common/operation-operationId-unique.d.ts +2 -0
- package/lib/rules/common/operation-operationId-unique.js +20 -0
- package/lib/rules/common/operation-operationId-url-safe.d.ts +2 -0
- package/lib/rules/common/operation-operationId-url-safe.js +18 -0
- package/lib/rules/common/operation-operationId.d.ts +2 -0
- package/lib/rules/common/operation-operationId.js +16 -0
- package/lib/rules/common/operation-parameters-unique.d.ts +2 -0
- package/lib/rules/common/operation-parameters-unique.js +40 -0
- package/lib/rules/common/operation-singular-tag.d.ts +2 -0
- package/lib/rules/common/operation-singular-tag.js +16 -0
- package/lib/rules/common/operation-summary.d.ts +2 -0
- package/lib/rules/common/operation-summary.js +12 -0
- package/lib/rules/common/operation-tag-defined.d.ts +2 -0
- package/lib/rules/common/operation-tag-defined.js +24 -0
- package/lib/rules/common/parameter-description.d.ts +2 -0
- package/lib/rules/common/parameter-description.js +22 -0
- package/lib/rules/common/path-declaration-must-exist.d.ts +2 -0
- package/lib/rules/common/path-declaration-must-exist.js +16 -0
- package/lib/rules/common/path-excludes-patterns.d.ts +2 -0
- package/lib/rules/common/path-excludes-patterns.js +22 -0
- package/lib/rules/common/path-http-verbs-order.d.ts +2 -0
- package/lib/rules/common/path-http-verbs-order.js +26 -0
- package/lib/rules/common/path-not-include-query.d.ts +2 -0
- package/lib/rules/common/path-not-include-query.js +18 -0
- package/lib/rules/common/path-params-defined.d.ts +2 -0
- package/lib/rules/common/path-params-defined.js +58 -0
- package/lib/rules/common/path-segment-plural.d.ts +2 -0
- package/lib/rules/common/path-segment-plural.js +33 -0
- package/lib/rules/common/paths-kebab-case.d.ts +2 -0
- package/lib/rules/common/paths-kebab-case.js +20 -0
- package/lib/rules/common/required-string-property-missing-min-length.d.ts +2 -0
- package/lib/rules/common/required-string-property-missing-min-length.js +37 -0
- package/lib/rules/common/response-contains-header.d.ts +2 -0
- package/lib/rules/common/response-contains-header.js +29 -0
- package/lib/rules/common/scalar-property-missing-example.d.ts +2 -0
- package/lib/rules/common/scalar-property-missing-example.js +42 -0
- package/lib/rules/common/security-defined.d.ts +2 -0
- package/lib/rules/common/security-defined.js +65 -0
- package/lib/rules/common/spec-strict-refs.d.ts +2 -0
- package/lib/rules/common/spec-strict-refs.js +30 -0
- package/lib/rules/common/struct.d.ts +2 -0
- package/lib/rules/common/struct.js +158 -0
- package/lib/rules/common/tag-description.d.ts +2 -0
- package/lib/rules/common/tag-description.js +12 -0
- package/lib/rules/common/tags-alphabetical.d.ts +2 -0
- package/lib/rules/common/tags-alphabetical.js +23 -0
- package/lib/rules/no-unresolved-refs.d.ts +5 -0
- package/lib/rules/no-unresolved-refs.js +46 -0
- package/lib/rules/oas2/boolean-parameter-prefixes.d.ts +5 -0
- package/lib/rules/oas2/boolean-parameter-prefixes.js +22 -0
- package/lib/rules/oas2/index.d.ts +3 -0
- package/lib/rules/oas2/index.js +98 -0
- package/lib/rules/oas2/request-mime-type.d.ts +2 -0
- package/lib/rules/oas2/request-mime-type.js +17 -0
- package/lib/rules/oas2/response-contains-property.d.ts +2 -0
- package/lib/rules/oas2/response-contains-property.js +37 -0
- package/lib/rules/oas2/response-mime-type.d.ts +2 -0
- package/lib/rules/oas2/response-mime-type.js +17 -0
- package/lib/rules/oas3/array-parameter-serialization.d.ts +5 -0
- package/lib/rules/oas3/array-parameter-serialization.js +29 -0
- package/lib/rules/oas3/boolean-parameter-prefixes.d.ts +5 -0
- package/lib/rules/oas3/boolean-parameter-prefixes.js +24 -0
- package/lib/rules/oas3/component-name-unique.d.ts +2 -0
- package/lib/rules/oas3/component-name-unique.js +133 -0
- package/lib/rules/oas3/index.d.ts +3 -0
- package/lib/rules/oas3/index.js +122 -0
- package/lib/rules/oas3/no-empty-servers.d.ts +2 -0
- package/lib/rules/oas3/no-empty-servers.js +23 -0
- package/lib/rules/oas3/no-example-value-and-externalValue.d.ts +2 -0
- package/lib/rules/oas3/no-example-value-and-externalValue.js +16 -0
- package/lib/rules/oas3/no-invalid-media-type-examples.d.ts +2 -0
- package/lib/rules/oas3/no-invalid-media-type-examples.js +39 -0
- package/lib/rules/oas3/no-server-example.com.d.ts +2 -0
- package/lib/rules/oas3/no-server-example.com.js +18 -0
- package/lib/rules/oas3/no-server-trailing-slash.d.ts +2 -0
- package/lib/rules/oas3/no-server-trailing-slash.js +18 -0
- package/lib/rules/oas3/no-server-variables-empty-enum.d.ts +2 -0
- package/lib/rules/oas3/no-server-variables-empty-enum.js +66 -0
- package/lib/rules/oas3/no-undefined-server-variable.d.ts +2 -0
- package/lib/rules/oas3/no-undefined-server-variable.js +31 -0
- package/lib/rules/oas3/no-unused-components.d.ts +2 -0
- package/lib/rules/oas3/no-unused-components.js +73 -0
- package/lib/rules/oas3/operation-4xx-problem-details-rfc7807.d.ts +5 -0
- package/lib/rules/oas3/operation-4xx-problem-details-rfc7807.js +36 -0
- package/lib/rules/oas3/request-mime-type.d.ts +2 -0
- package/lib/rules/oas3/request-mime-type.js +31 -0
- package/lib/rules/oas3/response-contains-property.d.ts +2 -0
- package/lib/rules/oas3/response-contains-property.js +39 -0
- package/lib/rules/oas3/response-mime-type.d.ts +2 -0
- package/lib/rules/oas3/response-mime-type.js +31 -0
- package/lib/rules/oas3/spec-components-invalid-map-name.d.ts +2 -0
- package/lib/rules/oas3/spec-components-invalid-map-name.js +62 -0
- package/lib/rules/other/stats.d.ts +41 -0
- package/lib/rules/other/stats.js +75 -0
- package/lib/rules/spot/no-criteria-xpath.d.ts +2 -0
- package/lib/rules/spot/no-criteria-xpath.js +21 -0
- package/lib/rules/spot/spot-supported-versions.d.ts +2 -0
- package/lib/rules/spot/spot-supported-versions.js +21 -0
- package/lib/rules/utils.d.ts +22 -0
- package/lib/rules/utils.js +183 -0
- package/lib/types/arazzo.d.ts +2 -0
- package/lib/types/arazzo.js +311 -0
- package/lib/types/asyncapi2.d.ts +17 -0
- package/lib/types/asyncapi2.js +1008 -0
- package/lib/types/asyncapi3.d.ts +2 -0
- package/lib/types/asyncapi3.js +347 -0
- package/lib/types/index.d.ts +57 -0
- package/lib/types/index.js +94 -0
- package/lib/types/json-schema-adapter.d.ts +3 -0
- package/lib/types/json-schema-adapter.js +159 -0
- package/lib/types/oas2.d.ts +3 -0
- package/lib/types/oas2.js +456 -0
- package/lib/types/oas3.d.ts +7 -0
- package/lib/types/oas3.js +554 -0
- package/lib/types/oas3_1.d.ts +6 -0
- package/lib/types/oas3_1.js +285 -0
- package/lib/types/redocly-yaml.d.ts +26 -0
- package/lib/types/redocly-yaml.js +1126 -0
- package/lib/typings/arazzo.d.ts +131 -0
- package/lib/typings/arazzo.js +5 -0
- package/lib/typings/asyncapi.d.ts +21 -0
- package/lib/typings/asyncapi.js +2 -0
- package/lib/typings/asyncapi3.d.ts +53 -0
- package/lib/typings/asyncapi3.js +2 -0
- package/lib/typings/common.d.ts +8 -0
- package/lib/typings/common.js +2 -0
- package/lib/typings/openapi.d.ts +355 -0
- package/lib/typings/openapi.js +2 -0
- package/lib/typings/swagger.d.ts +217 -0
- package/lib/typings/swagger.js +2 -0
- package/lib/utils.d.ts +70 -0
- package/lib/utils.js +301 -0
- package/lib/visitors.d.ts +229 -0
- package/lib/visitors.js +176 -0
- package/lib/walk.d.ts +78 -0
- package/lib/walk.js +290 -0
- package/package.json +59 -0
|
@@ -0,0 +1,320 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Config = exports.StyleguideConfig = exports.IGNORE_FILE = void 0;
|
|
4
|
+
const fs = require("fs");
|
|
5
|
+
const path = require("path");
|
|
6
|
+
const js_yaml_1 = require("../js-yaml");
|
|
7
|
+
const utils_1 = require("../utils");
|
|
8
|
+
const oas_types_1 = require("../oas-types");
|
|
9
|
+
const env_1 = require("../env");
|
|
10
|
+
const utils_2 = require("./utils");
|
|
11
|
+
const ref_utils_1 = require("../ref-utils");
|
|
12
|
+
exports.IGNORE_FILE = '.redocly.lint-ignore.yaml';
|
|
13
|
+
const IGNORE_BANNER = `# This file instructs Redocly's linter to ignore the rules contained for specific parts of your API.\n` +
|
|
14
|
+
`# See https://redocly.com/docs/cli/ for more information.\n`;
|
|
15
|
+
function getIgnoreFilePath(configFile) {
|
|
16
|
+
if (configFile) {
|
|
17
|
+
return (0, utils_1.doesYamlFileExist)(configFile)
|
|
18
|
+
? path.join(path.dirname(configFile), exports.IGNORE_FILE)
|
|
19
|
+
: path.join(configFile, exports.IGNORE_FILE);
|
|
20
|
+
}
|
|
21
|
+
else {
|
|
22
|
+
return env_1.isBrowser ? undefined : path.join(process.cwd(), exports.IGNORE_FILE);
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
class StyleguideConfig {
|
|
26
|
+
constructor(rawConfig, configFile) {
|
|
27
|
+
this.rawConfig = rawConfig;
|
|
28
|
+
this.configFile = configFile;
|
|
29
|
+
this.ignore = {};
|
|
30
|
+
this._usedRules = new Set();
|
|
31
|
+
this._usedVersions = new Set();
|
|
32
|
+
this.plugins = rawConfig.plugins || [];
|
|
33
|
+
this.doNotResolveExamples = !!rawConfig.doNotResolveExamples;
|
|
34
|
+
this.recommendedFallback = rawConfig.recommendedFallback || false;
|
|
35
|
+
const ruleGroups = [
|
|
36
|
+
'rules',
|
|
37
|
+
'oas2Rules',
|
|
38
|
+
'oas3_0Rules',
|
|
39
|
+
'oas3_1Rules',
|
|
40
|
+
'async2Rules',
|
|
41
|
+
'async3Rules',
|
|
42
|
+
'arazzo1Rules',
|
|
43
|
+
];
|
|
44
|
+
replaceSpecWithStruct(ruleGroups, rawConfig);
|
|
45
|
+
this.rules = {
|
|
46
|
+
[oas_types_1.SpecVersion.OAS2]: { ...rawConfig.rules, ...rawConfig.oas2Rules },
|
|
47
|
+
[oas_types_1.SpecVersion.OAS3_0]: { ...rawConfig.rules, ...rawConfig.oas3_0Rules },
|
|
48
|
+
[oas_types_1.SpecVersion.OAS3_1]: { ...rawConfig.rules, ...rawConfig.oas3_1Rules },
|
|
49
|
+
[oas_types_1.SpecVersion.Async2]: { ...rawConfig.rules, ...rawConfig.async2Rules },
|
|
50
|
+
[oas_types_1.SpecVersion.Async3]: { ...rawConfig.rules, ...rawConfig.async3Rules },
|
|
51
|
+
[oas_types_1.SpecVersion.Arazzo1]: { ...rawConfig.rules, ...rawConfig.arazzo1Rules },
|
|
52
|
+
};
|
|
53
|
+
this.preprocessors = {
|
|
54
|
+
[oas_types_1.SpecVersion.OAS2]: { ...rawConfig.preprocessors, ...rawConfig.oas2Preprocessors },
|
|
55
|
+
[oas_types_1.SpecVersion.OAS3_0]: { ...rawConfig.preprocessors, ...rawConfig.oas3_0Preprocessors },
|
|
56
|
+
[oas_types_1.SpecVersion.OAS3_1]: { ...rawConfig.preprocessors, ...rawConfig.oas3_1Preprocessors },
|
|
57
|
+
[oas_types_1.SpecVersion.Async2]: { ...rawConfig.preprocessors, ...rawConfig.async2Preprocessors },
|
|
58
|
+
[oas_types_1.SpecVersion.Async3]: { ...rawConfig.preprocessors, ...rawConfig.async3Preprocessors },
|
|
59
|
+
[oas_types_1.SpecVersion.Arazzo1]: { ...rawConfig.arazzo1Preprocessors },
|
|
60
|
+
};
|
|
61
|
+
this.decorators = {
|
|
62
|
+
[oas_types_1.SpecVersion.OAS2]: { ...rawConfig.decorators, ...rawConfig.oas2Decorators },
|
|
63
|
+
[oas_types_1.SpecVersion.OAS3_0]: { ...rawConfig.decorators, ...rawConfig.oas3_0Decorators },
|
|
64
|
+
[oas_types_1.SpecVersion.OAS3_1]: { ...rawConfig.decorators, ...rawConfig.oas3_1Decorators },
|
|
65
|
+
[oas_types_1.SpecVersion.Async2]: { ...rawConfig.decorators, ...rawConfig.async2Decorators },
|
|
66
|
+
[oas_types_1.SpecVersion.Async3]: { ...rawConfig.decorators, ...rawConfig.async3Decorators },
|
|
67
|
+
[oas_types_1.SpecVersion.Arazzo1]: { ...rawConfig.arazzo1Decorators },
|
|
68
|
+
};
|
|
69
|
+
this.extendPaths = rawConfig.extendPaths || [];
|
|
70
|
+
this.pluginPaths = rawConfig.pluginPaths || [];
|
|
71
|
+
this.resolveIgnore(getIgnoreFilePath(configFile));
|
|
72
|
+
}
|
|
73
|
+
resolveIgnore(ignoreFile) {
|
|
74
|
+
if (!ignoreFile || !(0, utils_1.doesYamlFileExist)(ignoreFile))
|
|
75
|
+
return;
|
|
76
|
+
this.ignore =
|
|
77
|
+
(0, js_yaml_1.parseYaml)(fs.readFileSync(ignoreFile, 'utf-8')) || {};
|
|
78
|
+
replaceSpecWithStruct(Object.keys(this.ignore), this.ignore);
|
|
79
|
+
// resolve ignore paths
|
|
80
|
+
for (const fileName of Object.keys(this.ignore)) {
|
|
81
|
+
this.ignore[(0, ref_utils_1.isAbsoluteUrl)(fileName) ? fileName : path.resolve(path.dirname(ignoreFile), fileName)] = this.ignore[fileName];
|
|
82
|
+
for (const ruleId of Object.keys(this.ignore[fileName])) {
|
|
83
|
+
this.ignore[fileName][ruleId] = new Set(this.ignore[fileName][ruleId]);
|
|
84
|
+
}
|
|
85
|
+
if (!(0, ref_utils_1.isAbsoluteUrl)(fileName)) {
|
|
86
|
+
delete this.ignore[fileName];
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
saveIgnore() {
|
|
91
|
+
const dir = this.configFile ? path.dirname(this.configFile) : process.cwd();
|
|
92
|
+
const ignoreFile = path.join(dir, exports.IGNORE_FILE);
|
|
93
|
+
const mapped = {};
|
|
94
|
+
for (const absFileName of Object.keys(this.ignore)) {
|
|
95
|
+
const mappedDefinitionName = (0, ref_utils_1.isAbsoluteUrl)(absFileName)
|
|
96
|
+
? absFileName
|
|
97
|
+
: (0, utils_1.slash)(path.relative(dir, absFileName));
|
|
98
|
+
const ignoredRules = (mapped[mappedDefinitionName] = this.ignore[absFileName]);
|
|
99
|
+
for (const ruleId of Object.keys(ignoredRules)) {
|
|
100
|
+
ignoredRules[ruleId] = Array.from(ignoredRules[ruleId]);
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
fs.writeFileSync(ignoreFile, IGNORE_BANNER + (0, js_yaml_1.stringifyYaml)(mapped));
|
|
104
|
+
}
|
|
105
|
+
addIgnore(problem) {
|
|
106
|
+
const ignore = this.ignore;
|
|
107
|
+
const loc = problem.location[0];
|
|
108
|
+
if (loc.pointer === undefined)
|
|
109
|
+
return;
|
|
110
|
+
const fileIgnore = (ignore[loc.source.absoluteRef] = ignore[loc.source.absoluteRef] || {});
|
|
111
|
+
const ruleIgnore = (fileIgnore[problem.ruleId] = fileIgnore[problem.ruleId] || new Set());
|
|
112
|
+
ruleIgnore.add(loc.pointer);
|
|
113
|
+
}
|
|
114
|
+
addProblemToIgnore(problem) {
|
|
115
|
+
const loc = problem.location[0];
|
|
116
|
+
if (loc.pointer === undefined)
|
|
117
|
+
return problem;
|
|
118
|
+
const fileIgnore = this.ignore[loc.source.absoluteRef] || {};
|
|
119
|
+
const ruleIgnore = fileIgnore[problem.ruleId];
|
|
120
|
+
const ignored = ruleIgnore && ruleIgnore.has(loc.pointer);
|
|
121
|
+
return ignored
|
|
122
|
+
? {
|
|
123
|
+
...problem,
|
|
124
|
+
ignored,
|
|
125
|
+
}
|
|
126
|
+
: problem;
|
|
127
|
+
}
|
|
128
|
+
extendTypes(types, version) {
|
|
129
|
+
let extendedTypes = types;
|
|
130
|
+
for (const plugin of this.plugins) {
|
|
131
|
+
if (plugin.typeExtension !== undefined) {
|
|
132
|
+
switch (version) {
|
|
133
|
+
case oas_types_1.SpecVersion.OAS3_0:
|
|
134
|
+
case oas_types_1.SpecVersion.OAS3_1:
|
|
135
|
+
if (!plugin.typeExtension.oas3)
|
|
136
|
+
continue;
|
|
137
|
+
extendedTypes = plugin.typeExtension.oas3(extendedTypes, version);
|
|
138
|
+
break;
|
|
139
|
+
case oas_types_1.SpecVersion.OAS2:
|
|
140
|
+
if (!plugin.typeExtension.oas2)
|
|
141
|
+
continue;
|
|
142
|
+
extendedTypes = plugin.typeExtension.oas2(extendedTypes, version);
|
|
143
|
+
break;
|
|
144
|
+
case oas_types_1.SpecVersion.Async2:
|
|
145
|
+
if (!plugin.typeExtension.async2)
|
|
146
|
+
continue;
|
|
147
|
+
extendedTypes = plugin.typeExtension.async2(extendedTypes, version);
|
|
148
|
+
break;
|
|
149
|
+
case oas_types_1.SpecVersion.Async3:
|
|
150
|
+
if (!plugin.typeExtension.async3)
|
|
151
|
+
continue;
|
|
152
|
+
extendedTypes = plugin.typeExtension.async3(extendedTypes, version);
|
|
153
|
+
break;
|
|
154
|
+
case oas_types_1.SpecVersion.Arazzo1:
|
|
155
|
+
if (!plugin.typeExtension.arazzo1)
|
|
156
|
+
continue;
|
|
157
|
+
extendedTypes = plugin.typeExtension.arazzo1(extendedTypes, version);
|
|
158
|
+
break;
|
|
159
|
+
default:
|
|
160
|
+
throw new Error('Not implemented');
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
return extendedTypes;
|
|
165
|
+
}
|
|
166
|
+
getRuleSettings(ruleId, oasVersion) {
|
|
167
|
+
this._usedRules.add(ruleId);
|
|
168
|
+
this._usedVersions.add(oasVersion);
|
|
169
|
+
const settings = this.rules[oasVersion][ruleId] || 'off';
|
|
170
|
+
if (typeof settings === 'string') {
|
|
171
|
+
return {
|
|
172
|
+
severity: settings,
|
|
173
|
+
};
|
|
174
|
+
}
|
|
175
|
+
else {
|
|
176
|
+
return { severity: 'error', ...settings };
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
getPreprocessorSettings(ruleId, oasVersion) {
|
|
180
|
+
this._usedRules.add(ruleId);
|
|
181
|
+
this._usedVersions.add(oasVersion);
|
|
182
|
+
const settings = this.preprocessors[oasVersion][ruleId] || 'off';
|
|
183
|
+
if (typeof settings === 'string') {
|
|
184
|
+
return {
|
|
185
|
+
severity: settings === 'on' ? 'error' : settings,
|
|
186
|
+
};
|
|
187
|
+
}
|
|
188
|
+
else {
|
|
189
|
+
return { severity: 'error', ...settings };
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
getDecoratorSettings(ruleId, oasVersion) {
|
|
193
|
+
this._usedRules.add(ruleId);
|
|
194
|
+
this._usedVersions.add(oasVersion);
|
|
195
|
+
const settings = this.decorators[oasVersion][ruleId] || 'off';
|
|
196
|
+
if (typeof settings === 'string') {
|
|
197
|
+
return {
|
|
198
|
+
severity: settings === 'on' ? 'error' : settings,
|
|
199
|
+
};
|
|
200
|
+
}
|
|
201
|
+
else {
|
|
202
|
+
return { severity: 'error', ...settings };
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
getUnusedRules() {
|
|
206
|
+
const rules = [];
|
|
207
|
+
const decorators = [];
|
|
208
|
+
const preprocessors = [];
|
|
209
|
+
for (const usedVersion of Array.from(this._usedVersions)) {
|
|
210
|
+
rules.push(...Object.keys(this.rules[usedVersion]).filter((name) => !this._usedRules.has(name)));
|
|
211
|
+
decorators.push(...Object.keys(this.decorators[usedVersion]).filter((name) => !this._usedRules.has(name)));
|
|
212
|
+
preprocessors.push(...Object.keys(this.preprocessors[usedVersion]).filter((name) => !this._usedRules.has(name)));
|
|
213
|
+
}
|
|
214
|
+
return {
|
|
215
|
+
rules,
|
|
216
|
+
preprocessors,
|
|
217
|
+
decorators,
|
|
218
|
+
};
|
|
219
|
+
}
|
|
220
|
+
getRulesForSpecVersion(version) {
|
|
221
|
+
switch (version) {
|
|
222
|
+
case oas_types_1.SpecMajorVersion.OAS3:
|
|
223
|
+
// eslint-disable-next-line no-case-declarations
|
|
224
|
+
const oas3Rules = [];
|
|
225
|
+
this.plugins.forEach((p) => p.preprocessors?.oas3 && oas3Rules.push(p.preprocessors.oas3));
|
|
226
|
+
this.plugins.forEach((p) => p.rules?.oas3 && oas3Rules.push(p.rules.oas3));
|
|
227
|
+
this.plugins.forEach((p) => p.decorators?.oas3 && oas3Rules.push(p.decorators.oas3));
|
|
228
|
+
return oas3Rules;
|
|
229
|
+
case oas_types_1.SpecMajorVersion.OAS2:
|
|
230
|
+
// eslint-disable-next-line no-case-declarations
|
|
231
|
+
const oas2Rules = [];
|
|
232
|
+
this.plugins.forEach((p) => p.preprocessors?.oas2 && oas2Rules.push(p.preprocessors.oas2));
|
|
233
|
+
this.plugins.forEach((p) => p.rules?.oas2 && oas2Rules.push(p.rules.oas2));
|
|
234
|
+
this.plugins.forEach((p) => p.decorators?.oas2 && oas2Rules.push(p.decorators.oas2));
|
|
235
|
+
return oas2Rules;
|
|
236
|
+
case oas_types_1.SpecMajorVersion.Async2:
|
|
237
|
+
// eslint-disable-next-line no-case-declarations
|
|
238
|
+
const asyncApi2Rules = [];
|
|
239
|
+
this.plugins.forEach((p) => p.preprocessors?.async2 && asyncApi2Rules.push(p.preprocessors.async2));
|
|
240
|
+
this.plugins.forEach((p) => p.rules?.async2 && asyncApi2Rules.push(p.rules.async2));
|
|
241
|
+
this.plugins.forEach((p) => p.decorators?.async2 && asyncApi2Rules.push(p.decorators.async2));
|
|
242
|
+
return asyncApi2Rules;
|
|
243
|
+
case oas_types_1.SpecMajorVersion.Async3:
|
|
244
|
+
// eslint-disable-next-line no-case-declarations
|
|
245
|
+
const asyncApi3Rules = [];
|
|
246
|
+
this.plugins.forEach((p) => p.preprocessors?.async3 && asyncApi3Rules.push(p.preprocessors.async3));
|
|
247
|
+
this.plugins.forEach((p) => p.rules?.async3 && asyncApi3Rules.push(p.rules.async3));
|
|
248
|
+
this.plugins.forEach((p) => p.decorators?.async3 && asyncApi3Rules.push(p.decorators.async3));
|
|
249
|
+
return asyncApi3Rules;
|
|
250
|
+
case oas_types_1.SpecMajorVersion.Arazzo1:
|
|
251
|
+
// eslint-disable-next-line no-case-declarations
|
|
252
|
+
const arazzo1Rules = [];
|
|
253
|
+
this.plugins.forEach((p) => p.preprocessors?.arazzo1 && arazzo1Rules.push(p.preprocessors.arazzo1));
|
|
254
|
+
this.plugins.forEach((p) => p.rules?.arazzo1 && arazzo1Rules.push(p.rules.arazzo1));
|
|
255
|
+
this.plugins.forEach((p) => p.decorators?.arazzo1 && arazzo1Rules.push(p.decorators.arazzo1));
|
|
256
|
+
return arazzo1Rules;
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
skipRules(rules) {
|
|
260
|
+
for (const ruleId of rules || []) {
|
|
261
|
+
for (const version of Object.values(oas_types_1.SpecVersion)) {
|
|
262
|
+
if (this.rules[version][ruleId]) {
|
|
263
|
+
this.rules[version][ruleId] = 'off';
|
|
264
|
+
}
|
|
265
|
+
else if (Array.isArray(this.rules[version].assertions)) {
|
|
266
|
+
// skip assertions
|
|
267
|
+
for (const configurableRule of this.rules[version].assertions) {
|
|
268
|
+
if (configurableRule.assertionId === ruleId) {
|
|
269
|
+
configurableRule.severity = 'off';
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
skipPreprocessors(preprocessors) {
|
|
277
|
+
for (const preprocessorId of preprocessors || []) {
|
|
278
|
+
for (const version of Object.values(oas_types_1.SpecVersion)) {
|
|
279
|
+
if (this.preprocessors[version][preprocessorId]) {
|
|
280
|
+
this.preprocessors[version][preprocessorId] = 'off';
|
|
281
|
+
}
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
skipDecorators(decorators) {
|
|
286
|
+
for (const decoratorId of decorators || []) {
|
|
287
|
+
for (const version of Object.values(oas_types_1.SpecVersion)) {
|
|
288
|
+
if (this.decorators[version][decoratorId]) {
|
|
289
|
+
this.decorators[version][decoratorId] = 'off';
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
}
|
|
295
|
+
exports.StyleguideConfig = StyleguideConfig;
|
|
296
|
+
// To support backwards compatibility with the old `spec` key we rename it to `struct`.
|
|
297
|
+
function replaceSpecWithStruct(ruleGroups, config) {
|
|
298
|
+
for (const ruleGroup of ruleGroups) {
|
|
299
|
+
if (config[ruleGroup] && (0, utils_1.isPlainObject)(config[ruleGroup]) && 'spec' in config[ruleGroup]) {
|
|
300
|
+
(0, utils_1.showWarningForDeprecatedField)('spec', 'struct');
|
|
301
|
+
config[ruleGroup].struct = config[ruleGroup].spec;
|
|
302
|
+
delete config[ruleGroup].spec;
|
|
303
|
+
}
|
|
304
|
+
}
|
|
305
|
+
}
|
|
306
|
+
class Config {
|
|
307
|
+
constructor(rawConfig, configFile) {
|
|
308
|
+
this.rawConfig = rawConfig;
|
|
309
|
+
this.configFile = configFile;
|
|
310
|
+
this.apis = rawConfig.apis || {};
|
|
311
|
+
this.styleguide = new StyleguideConfig(rawConfig.styleguide || {}, configFile);
|
|
312
|
+
this.theme = rawConfig.theme || {};
|
|
313
|
+
this.resolve = (0, utils_2.getResolveConfig)(rawConfig?.resolve);
|
|
314
|
+
this.region = rawConfig.region;
|
|
315
|
+
this.organization = rawConfig.organization;
|
|
316
|
+
this.files = rawConfig.files || [];
|
|
317
|
+
this.telemetry = rawConfig.telemetry;
|
|
318
|
+
}
|
|
319
|
+
}
|
|
320
|
+
exports.Config = Config;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./config"), exports);
|
|
18
|
+
__exportStar(require("./types"), exports);
|
|
19
|
+
__exportStar(require("./rules"), exports);
|
|
20
|
+
__exportStar(require("./builtIn"), exports);
|
|
21
|
+
__exportStar(require("./load"), exports);
|
|
22
|
+
__exportStar(require("./utils"), exports);
|
|
23
|
+
__exportStar(require("./config-resolvers"), exports);
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { BaseResolver } from '../resolve';
|
|
2
|
+
import type { Config } from './config';
|
|
3
|
+
import type { Document, ResolvedRefMap } from '../resolve';
|
|
4
|
+
import type { RegionalTokenWithValidity } from '../redocly/redocly-client-types';
|
|
5
|
+
import type { RawConfig, RawUniversalConfig, Region } from './types';
|
|
6
|
+
export type RawConfigProcessor = (params: {
|
|
7
|
+
document: Document;
|
|
8
|
+
resolvedRefMap: ResolvedRefMap;
|
|
9
|
+
config: Config;
|
|
10
|
+
parsed: Document['parsed'];
|
|
11
|
+
}) => void | Promise<void>;
|
|
12
|
+
export declare function loadConfig(options?: {
|
|
13
|
+
configPath?: string;
|
|
14
|
+
customExtends?: string[];
|
|
15
|
+
processRawConfig?: RawConfigProcessor;
|
|
16
|
+
externalRefResolver?: BaseResolver;
|
|
17
|
+
files?: string[];
|
|
18
|
+
region?: Region;
|
|
19
|
+
}): Promise<Config>;
|
|
20
|
+
export declare const CONFIG_FILE_NAMES: string[];
|
|
21
|
+
export declare function findConfig(dir?: string): string | undefined;
|
|
22
|
+
export declare function getConfig(options?: {
|
|
23
|
+
configPath?: string;
|
|
24
|
+
externalRefResolver?: BaseResolver;
|
|
25
|
+
}): Promise<{
|
|
26
|
+
rawConfig: RawConfig;
|
|
27
|
+
document?: Document;
|
|
28
|
+
parsed?: Document['parsed'];
|
|
29
|
+
resolvedRefMap?: ResolvedRefMap;
|
|
30
|
+
}>;
|
|
31
|
+
type CreateConfigOptions = {
|
|
32
|
+
extends?: string[];
|
|
33
|
+
tokens?: RegionalTokenWithValidity[];
|
|
34
|
+
configPath?: string;
|
|
35
|
+
externalRefResolver?: BaseResolver;
|
|
36
|
+
};
|
|
37
|
+
export declare function createConfig(config: string | RawUniversalConfig, options?: CreateConfigOptions): Promise<Config>;
|
|
38
|
+
export {};
|
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CONFIG_FILE_NAMES = void 0;
|
|
4
|
+
exports.loadConfig = loadConfig;
|
|
5
|
+
exports.findConfig = findConfig;
|
|
6
|
+
exports.getConfig = getConfig;
|
|
7
|
+
exports.createConfig = createConfig;
|
|
8
|
+
const fs = require("fs");
|
|
9
|
+
const path = require("path");
|
|
10
|
+
const redocly_1 = require("../redocly");
|
|
11
|
+
const utils_1 = require("../utils");
|
|
12
|
+
const js_yaml_1 = require("../js-yaml");
|
|
13
|
+
const utils_2 = require("./utils");
|
|
14
|
+
const config_resolvers_1 = require("./config-resolvers");
|
|
15
|
+
const bundle_1 = require("../bundle");
|
|
16
|
+
const resolve_1 = require("../resolve");
|
|
17
|
+
const env_1 = require("../env");
|
|
18
|
+
const domains_1 = require("../redocly/domains");
|
|
19
|
+
async function addConfigMetadata({ rawConfig, customExtends, configPath, tokens, files, region, externalRefResolver, }) {
|
|
20
|
+
if (customExtends !== undefined) {
|
|
21
|
+
rawConfig.styleguide = rawConfig.styleguide || {};
|
|
22
|
+
rawConfig.styleguide.extends = customExtends;
|
|
23
|
+
}
|
|
24
|
+
else if ((0, utils_1.isEmptyObject)(rawConfig)) {
|
|
25
|
+
rawConfig.styleguide = { extends: ['recommended'], recommendedFallback: true };
|
|
26
|
+
}
|
|
27
|
+
if (tokens?.length) {
|
|
28
|
+
if (!rawConfig.resolve)
|
|
29
|
+
rawConfig.resolve = {};
|
|
30
|
+
if (!rawConfig.resolve.http)
|
|
31
|
+
rawConfig.resolve.http = {};
|
|
32
|
+
rawConfig.resolve.http.headers = [...(rawConfig.resolve.http.headers ?? [])];
|
|
33
|
+
for (const item of tokens) {
|
|
34
|
+
const domain = domains_1.DOMAINS[item.region];
|
|
35
|
+
rawConfig.resolve.http.headers.push({
|
|
36
|
+
matches: `https://api.${domain}/registry/**`,
|
|
37
|
+
name: 'Authorization',
|
|
38
|
+
envVariable: undefined,
|
|
39
|
+
value: item.token,
|
|
40
|
+
},
|
|
41
|
+
//support redocly.com domain for future compatibility
|
|
42
|
+
...(item.region === 'us'
|
|
43
|
+
? [
|
|
44
|
+
{
|
|
45
|
+
matches: `https://api.redoc.ly/registry/**`,
|
|
46
|
+
name: 'Authorization',
|
|
47
|
+
envVariable: undefined,
|
|
48
|
+
value: item.token,
|
|
49
|
+
},
|
|
50
|
+
]
|
|
51
|
+
: []));
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
return (0, config_resolvers_1.resolveConfig)({
|
|
55
|
+
rawConfig: {
|
|
56
|
+
...rawConfig,
|
|
57
|
+
files: files ?? rawConfig.files,
|
|
58
|
+
region: region ?? rawConfig.region,
|
|
59
|
+
},
|
|
60
|
+
configPath,
|
|
61
|
+
externalRefResolver,
|
|
62
|
+
});
|
|
63
|
+
}
|
|
64
|
+
async function loadConfig(options = {}) {
|
|
65
|
+
const { configPath = findConfig(), customExtends, processRawConfig, files, region, externalRefResolver, } = options;
|
|
66
|
+
const { rawConfig, document, parsed, resolvedRefMap } = await getConfig({
|
|
67
|
+
configPath,
|
|
68
|
+
externalRefResolver,
|
|
69
|
+
});
|
|
70
|
+
const redoclyClient = env_1.isBrowser ? undefined : new redocly_1.RedoclyClient();
|
|
71
|
+
const tokens = redoclyClient && redoclyClient.hasTokens() ? redoclyClient.getAllTokens() : [];
|
|
72
|
+
const config = await addConfigMetadata({
|
|
73
|
+
rawConfig,
|
|
74
|
+
customExtends,
|
|
75
|
+
configPath,
|
|
76
|
+
tokens,
|
|
77
|
+
files,
|
|
78
|
+
region,
|
|
79
|
+
externalRefResolver,
|
|
80
|
+
});
|
|
81
|
+
if (document && parsed && resolvedRefMap && typeof processRawConfig === 'function') {
|
|
82
|
+
try {
|
|
83
|
+
await processRawConfig({
|
|
84
|
+
document,
|
|
85
|
+
resolvedRefMap,
|
|
86
|
+
config,
|
|
87
|
+
parsed,
|
|
88
|
+
});
|
|
89
|
+
}
|
|
90
|
+
catch (e) {
|
|
91
|
+
if (e instanceof utils_2.ConfigValidationError) {
|
|
92
|
+
throw e;
|
|
93
|
+
}
|
|
94
|
+
throw new Error(`Error parsing config file at '${configPath}': ${e.message}`);
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
return config;
|
|
98
|
+
}
|
|
99
|
+
exports.CONFIG_FILE_NAMES = ['redocly.yaml', 'redocly.yml', '.redocly.yaml', '.redocly.yml'];
|
|
100
|
+
function findConfig(dir) {
|
|
101
|
+
if (!fs?.hasOwnProperty?.('existsSync'))
|
|
102
|
+
return;
|
|
103
|
+
const existingConfigFiles = exports.CONFIG_FILE_NAMES.map((name) => dir ? path.resolve(dir, name) : name).filter(fs.existsSync);
|
|
104
|
+
if (existingConfigFiles.length > 1) {
|
|
105
|
+
throw new Error(`
|
|
106
|
+
Multiple configuration files are not allowed.
|
|
107
|
+
Found the following files: ${existingConfigFiles.join(', ')}.
|
|
108
|
+
Please use 'redocly.yaml' instead.
|
|
109
|
+
`);
|
|
110
|
+
}
|
|
111
|
+
return existingConfigFiles[0];
|
|
112
|
+
}
|
|
113
|
+
async function getConfig(options = {}) {
|
|
114
|
+
const { configPath = findConfig(), externalRefResolver = new resolve_1.BaseResolver() } = options;
|
|
115
|
+
if (!configPath)
|
|
116
|
+
return { rawConfig: {} };
|
|
117
|
+
try {
|
|
118
|
+
const { document, resolvedRefMap } = await (0, config_resolvers_1.resolveConfigFileAndRefs)({
|
|
119
|
+
configPath,
|
|
120
|
+
externalRefResolver,
|
|
121
|
+
});
|
|
122
|
+
const bundledRefMap = (0, utils_2.deepCloneMapWithJSON)(resolvedRefMap);
|
|
123
|
+
const parsed = await (0, bundle_1.bundleConfig)(JSON.parse(JSON.stringify(document)), bundledRefMap);
|
|
124
|
+
return {
|
|
125
|
+
rawConfig: (0, utils_2.transformConfig)(parsed),
|
|
126
|
+
document,
|
|
127
|
+
parsed,
|
|
128
|
+
resolvedRefMap,
|
|
129
|
+
};
|
|
130
|
+
}
|
|
131
|
+
catch (e) {
|
|
132
|
+
throw new Error(`Error parsing config file at '${configPath}': ${e.message}`);
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
async function createConfig(config, options) {
|
|
136
|
+
return addConfigMetadata({
|
|
137
|
+
rawConfig: (0, utils_2.transformConfig)(typeof config === 'string' ? (0, js_yaml_1.parseYaml)(config) : config),
|
|
138
|
+
...options,
|
|
139
|
+
});
|
|
140
|
+
}
|