-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqueries-to-x-ms-paths.js
63 lines (55 loc) · 1.85 KB
/
queries-to-x-ms-paths.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/**
* @copyright Copyright 2019 Kevin Locke <kevin@kevinlocke.name>
* @license MIT
* @module "openapi-transformers/queries-to-x-ms-paths.js"
*/
import assert from 'node:assert';
import { debuglog } from 'node:util';
import OpenApiTransformerBase from 'openapi-transformer-base';
const debug = debuglog('openapi-transformers:queries-to-x-ms-paths');
/**
* Transformer to move paths with query parameters from paths to x-ms-paths for
* Autorest.
*
* https://github.com/Azure/autorest/tree/master/docs/extensions#x-ms-paths
*
* This is used to work around lack of support for multiple operations with the
* same path and method:
* https://github.com/OAI/OpenAPI-Specification/issues/791
*
* Putting query in path is not allowed by any current version of OpenAPI
* https://github.com/OAI/OpenAPI-Specification/issues/468#issuecomment-142393969
* but it has the benefit of working with lots of tooling without support for
* x-ms-paths (e.g. for linting, docs generation, etc.)
*/
export default class QueriesToXMsPathsTransformer
extends OpenApiTransformerBase {
// Override as performance optimization, since only transforming paths
// eslint-disable-next-line class-methods-use-this
transformOpenApi(spec) {
if (!spec || !spec.paths) {
return spec;
}
const queryPaths = Object.keys(spec.paths)
.filter((path) => path.includes('?'));
if (queryPaths.length === 0) {
return spec;
}
const paths = { ...spec.paths };
const xMsPaths = { ...spec['x-ms-paths'] };
for (const path of queryPaths) {
debug('moving %s from paths to x-ms-paths', path);
assert(
!Object.hasOwn(xMsPaths, path),
`${path} already present in x-ms-paths`,
);
xMsPaths[path] = paths[path];
delete paths[path];
}
return {
...spec,
paths,
'x-ms-paths': xMsPaths,
};
}
}