@trustify-da/trustify-da-javascript-client 0.3.0-ea.e5bb86c → 0.3.0-ea.e645720
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/dist/package.json +0 -1
- package/dist/src/cli.js +51 -2
- package/dist/src/cyclone_dx_sbom.d.ts +7 -1
- package/dist/src/cyclone_dx_sbom.js +18 -5
- package/dist/src/index.d.ts +72 -3
- package/dist/src/index.js +85 -5
- package/dist/src/oci_image/utils.js +11 -2
- package/dist/src/provider.js +2 -0
- package/dist/src/providers/base_java.d.ts +0 -9
- package/dist/src/providers/base_java.js +2 -38
- package/dist/src/providers/base_pyproject.d.ts +35 -29
- package/dist/src/providers/base_pyproject.js +114 -78
- package/dist/src/providers/golang_gomodules.d.ts +9 -0
- package/dist/src/providers/golang_gomodules.js +64 -7
- package/dist/src/providers/java_gradle.d.ts +19 -0
- package/dist/src/providers/java_gradle.js +116 -2
- package/dist/src/providers/java_maven.d.ts +8 -0
- package/dist/src/providers/java_maven.js +93 -1
- package/dist/src/providers/javascript_npm.d.ts +1 -0
- package/dist/src/providers/javascript_npm.js +21 -0
- package/dist/src/providers/javascript_pnpm.js +6 -2
- package/dist/src/providers/marker_evaluator.d.ts +14 -0
- package/dist/src/providers/marker_evaluator.js +191 -0
- package/dist/src/providers/processors/yarn_berry_processor.js +6 -2
- package/dist/src/providers/python_controller.d.ts +5 -1
- package/dist/src/providers/python_controller.js +8 -4
- package/dist/src/providers/python_pip.d.ts +4 -0
- package/dist/src/providers/python_pip.js +4 -4
- package/dist/src/providers/python_pip_pyproject.d.ts +61 -0
- package/dist/src/providers/python_pip_pyproject.js +144 -0
- package/dist/src/providers/python_poetry.d.ts +37 -4
- package/dist/src/providers/python_poetry.js +108 -16
- package/dist/src/providers/python_uv.d.ts +30 -1
- package/dist/src/providers/python_uv.js +114 -5
- package/dist/src/sbom.d.ts +7 -1
- package/dist/src/sbom.js +4 -2
- package/dist/src/tools.d.ts +26 -0
- package/dist/src/tools.js +58 -0
- package/dist/src/workspace.d.ts +9 -0
- package/dist/src/workspace.js +1 -1
- package/package.json +1 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/** @typedef {{name: string, version: string, children: string[]}} GraphEntry */
|
|
1
|
+
/** @typedef {{name: string, version: string, children: string[], hashes?: Array<{alg: string, content: string}>}} GraphEntry */
|
|
2
2
|
/** @typedef {{name: string, version: string, dependencies: DepTreeEntry[]}} DepTreeEntry */
|
|
3
3
|
/** @typedef {{directDeps: string[], graph: Map<string, GraphEntry>}} DependencyData */
|
|
4
4
|
/** @typedef {{ecosystem: string, content: string, contentType: string}} Provided */
|
|
@@ -10,9 +10,29 @@ export default class Base_pyproject {
|
|
|
10
10
|
isSupported(manifestName: string): boolean;
|
|
11
11
|
/**
|
|
12
12
|
* @param {string} manifestDir
|
|
13
|
+
* @param {Object} [opts={}]
|
|
13
14
|
* @returns {boolean}
|
|
14
15
|
*/
|
|
15
|
-
validateLockFile(manifestDir: string): boolean;
|
|
16
|
+
validateLockFile(manifestDir: string, opts?: any): boolean;
|
|
17
|
+
/**
|
|
18
|
+
* Walk up from manifestDir to find the directory containing the lock file.
|
|
19
|
+
* Follows the same pattern as Base_javascript._findLockFileDir().
|
|
20
|
+
* @param {string} manifestDir
|
|
21
|
+
* @param {Object} [opts={}]
|
|
22
|
+
* @returns {string|null}
|
|
23
|
+
* @protected
|
|
24
|
+
*/
|
|
25
|
+
protected _findLockFileDir(manifestDir: string, opts?: any): string | null;
|
|
26
|
+
/**
|
|
27
|
+
* Detect workspace root boundaries.
|
|
28
|
+
* Currently only uv has native workspace support ([tool.uv.workspace] in pyproject.toml).
|
|
29
|
+
* Poetry has no workspace/monorepo support (python-poetry/poetry#2270), so each
|
|
30
|
+
* poetry project is treated independently — see Python_poetry._findLockFileDir().
|
|
31
|
+
* @param {string} dir
|
|
32
|
+
* @returns {boolean}
|
|
33
|
+
* @protected
|
|
34
|
+
*/
|
|
35
|
+
protected _isWorkspaceRoot(dir: string): boolean;
|
|
16
36
|
/**
|
|
17
37
|
* Read project license from pyproject.toml, with fallback to LICENSE file.
|
|
18
38
|
* @param {string} manifestPath
|
|
@@ -43,13 +63,16 @@ export default class Base_pyproject {
|
|
|
43
63
|
protected _cmdName(): string;
|
|
44
64
|
/**
|
|
45
65
|
* Resolve dependencies using the tool-specific command and parser.
|
|
46
|
-
*
|
|
66
|
+
*
|
|
67
|
+
* @param {string} manifestDir - directory containing the target pyproject.toml
|
|
68
|
+
* @param {string} workspaceDir - workspace root (where the lock file lives);
|
|
69
|
+
* only used by providers that need workspace-level resolution (e.g. uv)
|
|
47
70
|
* @param {object} parsed - parsed pyproject.toml
|
|
48
71
|
* @param {Object} opts
|
|
49
72
|
* @returns {Promise<DependencyData>}
|
|
50
73
|
* @protected
|
|
51
74
|
*/
|
|
52
|
-
protected _getDependencyData(manifestDir: string, parsed: object, opts: any): Promise<DependencyData>;
|
|
75
|
+
protected _getDependencyData(manifestDir: string, workspaceDir: string, parsed: object, opts: any): Promise<DependencyData>;
|
|
53
76
|
/**
|
|
54
77
|
* Canonicalize a Python package name per PEP 503.
|
|
55
78
|
* @param {string} name
|
|
@@ -79,26 +102,14 @@ export default class Base_pyproject {
|
|
|
79
102
|
*/
|
|
80
103
|
protected _getIgnoredDeps(manifestPath: string): Set<string>;
|
|
81
104
|
/**
|
|
82
|
-
*
|
|
105
|
+
* Compute the set of graph nodes reachable from direct deps, excluding ignored.
|
|
83
106
|
* @param {Map<string, GraphEntry>} graph
|
|
84
|
-
* @param {string[]} directDeps
|
|
107
|
+
* @param {string[]} directDeps
|
|
85
108
|
* @param {Set<string>} ignoredDeps
|
|
86
|
-
* @
|
|
87
|
-
* @returns {DepTreeEntry[]}
|
|
88
|
-
* @protected
|
|
89
|
-
*/
|
|
90
|
-
protected _buildDependencyTree(graph: Map<string, GraphEntry>, directDeps: string[], ignoredDeps: Set<string>, includeTransitive: boolean): DepTreeEntry[];
|
|
91
|
-
/**
|
|
92
|
-
* Recursively collect transitive dependencies.
|
|
93
|
-
* @param {Map<string, GraphEntry>} graph
|
|
94
|
-
* @param {string[]} childKeys
|
|
95
|
-
* @param {DepTreeEntry[]} result - mutated in place
|
|
96
|
-
* @param {Set<string>} ignoredDeps
|
|
97
|
-
* @param {Set<string>} visited
|
|
98
|
-
* @returns {void}
|
|
109
|
+
* @returns {Set<string>}
|
|
99
110
|
* @protected
|
|
100
111
|
*/
|
|
101
|
-
protected
|
|
112
|
+
protected _reachableNodes(graph: Map<string, GraphEntry>, directDeps: string[], ignoredDeps: Set<string>): Set<string>;
|
|
102
113
|
/**
|
|
103
114
|
* @param {string} name
|
|
104
115
|
* @param {string} version
|
|
@@ -106,15 +117,6 @@ export default class Base_pyproject {
|
|
|
106
117
|
* @protected
|
|
107
118
|
*/
|
|
108
119
|
protected _toPurl(name: string, version: string): PackageURL;
|
|
109
|
-
/**
|
|
110
|
-
* Recursively add a dependency and its transitive deps to the SBOM.
|
|
111
|
-
* @param {PackageURL} source
|
|
112
|
-
* @param {DepTreeEntry} dep
|
|
113
|
-
* @param {Sbom} sbom
|
|
114
|
-
* @returns {void}
|
|
115
|
-
* @private
|
|
116
|
-
*/
|
|
117
|
-
private _addAllDependencies;
|
|
118
120
|
/**
|
|
119
121
|
* Create SBOM json string for a pyproject.toml project.
|
|
120
122
|
* @param {string} manifest - path to pyproject.toml
|
|
@@ -129,6 +131,10 @@ export type GraphEntry = {
|
|
|
129
131
|
name: string;
|
|
130
132
|
version: string;
|
|
131
133
|
children: string[];
|
|
134
|
+
hashes?: Array<{
|
|
135
|
+
alg: string;
|
|
136
|
+
content: string;
|
|
137
|
+
}>;
|
|
132
138
|
};
|
|
133
139
|
export type DepTreeEntry = {
|
|
134
140
|
name: string;
|
|
@@ -4,11 +4,13 @@ import { PackageURL } from 'packageurl-js';
|
|
|
4
4
|
import { parse as parseToml } from 'smol-toml';
|
|
5
5
|
import { getLicense } from '../license/license_utils.js';
|
|
6
6
|
import Sbom from '../sbom.js';
|
|
7
|
+
import { getCustom } from '../tools.js';
|
|
7
8
|
const ecosystem = 'pip';
|
|
8
9
|
const IGNORE_MARKERS = ['exhortignore', 'trustify-da-ignore'];
|
|
10
|
+
const NO_SCOPE = undefined;
|
|
9
11
|
const DEFAULT_ROOT_NAME = 'default-pip-root';
|
|
10
12
|
const DEFAULT_ROOT_VERSION = '0.0.0';
|
|
11
|
-
/** @typedef {{name: string, version: string, children: string[]}} GraphEntry */
|
|
13
|
+
/** @typedef {{name: string, version: string, children: string[], hashes?: Array<{alg: string, content: string}>}} GraphEntry */
|
|
12
14
|
/** @typedef {{name: string, version: string, dependencies: DepTreeEntry[]}} DepTreeEntry */
|
|
13
15
|
/** @typedef {{directDeps: string[], graph: Map<string, GraphEntry>}} DependencyData */
|
|
14
16
|
/** @typedef {{ecosystem: string, content: string, contentType: string}} Provided */
|
|
@@ -22,10 +24,64 @@ export default class Base_pyproject {
|
|
|
22
24
|
}
|
|
23
25
|
/**
|
|
24
26
|
* @param {string} manifestDir
|
|
27
|
+
* @param {Object} [opts={}]
|
|
25
28
|
* @returns {boolean}
|
|
26
29
|
*/
|
|
27
|
-
validateLockFile(manifestDir) {
|
|
28
|
-
return
|
|
30
|
+
validateLockFile(manifestDir, opts = {}) {
|
|
31
|
+
return this._findLockFileDir(manifestDir, opts) != null;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Walk up from manifestDir to find the directory containing the lock file.
|
|
35
|
+
* Follows the same pattern as Base_javascript._findLockFileDir().
|
|
36
|
+
* @param {string} manifestDir
|
|
37
|
+
* @param {Object} [opts={}]
|
|
38
|
+
* @returns {string|null}
|
|
39
|
+
* @protected
|
|
40
|
+
*/
|
|
41
|
+
_findLockFileDir(manifestDir, opts = {}) {
|
|
42
|
+
const workspaceDir = getCustom('TRUSTIFY_DA_WORKSPACE_DIR', null, opts);
|
|
43
|
+
if (workspaceDir) {
|
|
44
|
+
const dir = path.resolve(workspaceDir);
|
|
45
|
+
return fs.existsSync(path.join(dir, this._lockFileName())) ? dir : null;
|
|
46
|
+
}
|
|
47
|
+
let dir = path.resolve(manifestDir);
|
|
48
|
+
let parent = dir;
|
|
49
|
+
do {
|
|
50
|
+
dir = parent;
|
|
51
|
+
if (fs.existsSync(path.join(dir, this._lockFileName()))) {
|
|
52
|
+
return dir;
|
|
53
|
+
}
|
|
54
|
+
if (this._isWorkspaceRoot(dir)) {
|
|
55
|
+
return null;
|
|
56
|
+
}
|
|
57
|
+
parent = path.dirname(dir);
|
|
58
|
+
} while (parent !== dir);
|
|
59
|
+
return null;
|
|
60
|
+
}
|
|
61
|
+
/**
|
|
62
|
+
* Detect workspace root boundaries.
|
|
63
|
+
* Currently only uv has native workspace support ([tool.uv.workspace] in pyproject.toml).
|
|
64
|
+
* Poetry has no workspace/monorepo support (python-poetry/poetry#2270), so each
|
|
65
|
+
* poetry project is treated independently — see Python_poetry._findLockFileDir().
|
|
66
|
+
* @param {string} dir
|
|
67
|
+
* @returns {boolean}
|
|
68
|
+
* @protected
|
|
69
|
+
*/
|
|
70
|
+
_isWorkspaceRoot(dir) {
|
|
71
|
+
const pyprojectPath = path.join(dir, 'pyproject.toml');
|
|
72
|
+
if (!fs.existsSync(pyprojectPath)) {
|
|
73
|
+
return false;
|
|
74
|
+
}
|
|
75
|
+
try {
|
|
76
|
+
const content = parseToml(fs.readFileSync(pyprojectPath, 'utf-8'));
|
|
77
|
+
if (content.tool?.uv?.workspace) {
|
|
78
|
+
return true;
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
catch (_) {
|
|
82
|
+
// ignore parse errors
|
|
83
|
+
}
|
|
84
|
+
return false;
|
|
29
85
|
}
|
|
30
86
|
/**
|
|
31
87
|
* Read project license from pyproject.toml, with fallback to LICENSE file.
|
|
@@ -91,14 +147,17 @@ export default class Base_pyproject {
|
|
|
91
147
|
}
|
|
92
148
|
/**
|
|
93
149
|
* Resolve dependencies using the tool-specific command and parser.
|
|
94
|
-
*
|
|
150
|
+
*
|
|
151
|
+
* @param {string} manifestDir - directory containing the target pyproject.toml
|
|
152
|
+
* @param {string} workspaceDir - workspace root (where the lock file lives);
|
|
153
|
+
* only used by providers that need workspace-level resolution (e.g. uv)
|
|
95
154
|
* @param {object} parsed - parsed pyproject.toml
|
|
96
155
|
* @param {Object} opts
|
|
97
156
|
* @returns {Promise<DependencyData>}
|
|
98
157
|
* @protected
|
|
99
158
|
*/
|
|
100
159
|
// eslint-disable-next-line no-unused-vars
|
|
101
|
-
async _getDependencyData(manifestDir, parsed, opts) {
|
|
160
|
+
async _getDependencyData(manifestDir, workspaceDir, parsed, opts) {
|
|
102
161
|
throw new TypeError('_getDependencyData must be implemented');
|
|
103
162
|
}
|
|
104
163
|
// --- shared helpers ---
|
|
@@ -162,64 +221,29 @@ export default class Base_pyproject {
|
|
|
162
221
|
return ignored;
|
|
163
222
|
}
|
|
164
223
|
/**
|
|
165
|
-
*
|
|
166
|
-
* @param {Map<string, GraphEntry>} graph
|
|
167
|
-
* @param {string[]} directDeps - canonical names of direct deps
|
|
168
|
-
* @param {Set<string>} ignoredDeps
|
|
169
|
-
* @param {boolean} includeTransitive
|
|
170
|
-
* @returns {DepTreeEntry[]}
|
|
171
|
-
* @protected
|
|
172
|
-
*/
|
|
173
|
-
_buildDependencyTree(graph, directDeps, ignoredDeps, includeTransitive) {
|
|
174
|
-
let result = [];
|
|
175
|
-
for (let key of directDeps) {
|
|
176
|
-
if (ignoredDeps.has(key)) {
|
|
177
|
-
continue;
|
|
178
|
-
}
|
|
179
|
-
let entry = graph.get(key);
|
|
180
|
-
if (!entry) {
|
|
181
|
-
continue;
|
|
182
|
-
}
|
|
183
|
-
let depTree = [];
|
|
184
|
-
if (includeTransitive) {
|
|
185
|
-
let visited = new Set();
|
|
186
|
-
visited.add(key);
|
|
187
|
-
this._collectTransitive(graph, entry.children, depTree, ignoredDeps, visited);
|
|
188
|
-
}
|
|
189
|
-
result.push({ name: entry.name, version: entry.version, dependencies: depTree });
|
|
190
|
-
}
|
|
191
|
-
result.sort((a, b) => a.name.toLowerCase().localeCompare(b.name.toLowerCase()));
|
|
192
|
-
return result;
|
|
193
|
-
}
|
|
194
|
-
/**
|
|
195
|
-
* Recursively collect transitive dependencies.
|
|
224
|
+
* Compute the set of graph nodes reachable from direct deps, excluding ignored.
|
|
196
225
|
* @param {Map<string, GraphEntry>} graph
|
|
197
|
-
* @param {string[]}
|
|
198
|
-
* @param {DepTreeEntry[]} result - mutated in place
|
|
226
|
+
* @param {string[]} directDeps
|
|
199
227
|
* @param {Set<string>} ignoredDeps
|
|
200
|
-
* @
|
|
201
|
-
* @returns {void}
|
|
228
|
+
* @returns {Set<string>}
|
|
202
229
|
* @protected
|
|
203
230
|
*/
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
231
|
+
_reachableNodes(graph, directDeps, ignoredDeps) {
|
|
232
|
+
let reachable = new Set();
|
|
233
|
+
let queue = directDeps.filter(k => !ignoredDeps.has(k) && graph.has(k));
|
|
234
|
+
while (queue.length > 0) {
|
|
235
|
+
let key = queue.shift();
|
|
236
|
+
if (reachable.has(key)) {
|
|
208
237
|
continue;
|
|
209
238
|
}
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
if (!entry) {
|
|
216
|
-
continue;
|
|
239
|
+
reachable.add(key);
|
|
240
|
+
for (let child of graph.get(key).children) {
|
|
241
|
+
if (!ignoredDeps.has(child) && graph.has(child) && !reachable.has(child)) {
|
|
242
|
+
queue.push(child);
|
|
243
|
+
}
|
|
217
244
|
}
|
|
218
|
-
let childDeps = [];
|
|
219
|
-
this._collectTransitive(graph, entry.children, childDeps, ignoredDeps, visited);
|
|
220
|
-
result.push({ name: entry.name, version: entry.version, dependencies: childDeps });
|
|
221
245
|
}
|
|
222
|
-
|
|
246
|
+
return reachable;
|
|
223
247
|
}
|
|
224
248
|
/**
|
|
225
249
|
* @param {string} name
|
|
@@ -230,21 +254,6 @@ export default class Base_pyproject {
|
|
|
230
254
|
_toPurl(name, version) {
|
|
231
255
|
return new PackageURL('pypi', undefined, name, version, undefined, undefined);
|
|
232
256
|
}
|
|
233
|
-
/**
|
|
234
|
-
* Recursively add a dependency and its transitive deps to the SBOM.
|
|
235
|
-
* @param {PackageURL} source
|
|
236
|
-
* @param {DepTreeEntry} dep
|
|
237
|
-
* @param {Sbom} sbom
|
|
238
|
-
* @returns {void}
|
|
239
|
-
* @private
|
|
240
|
-
*/
|
|
241
|
-
_addAllDependencies(source, dep, sbom) {
|
|
242
|
-
let targetPurl = this._toPurl(dep.name, dep.version);
|
|
243
|
-
sbom.addDependency(source, targetPurl);
|
|
244
|
-
if (dep.dependencies && dep.dependencies.length > 0) {
|
|
245
|
-
dep.dependencies.forEach(child => this._addAllDependencies(this._toPurl(dep.name, dep.version), child, sbom));
|
|
246
|
-
}
|
|
247
|
-
}
|
|
248
257
|
/**
|
|
249
258
|
* Create SBOM json string for a pyproject.toml project.
|
|
250
259
|
* @param {string} manifest - path to pyproject.toml
|
|
@@ -257,23 +266,50 @@ export default class Base_pyproject {
|
|
|
257
266
|
let manifestDir = path.dirname(manifest);
|
|
258
267
|
let content = fs.readFileSync(manifest, 'utf-8');
|
|
259
268
|
let parsed = parseToml(content);
|
|
260
|
-
let
|
|
269
|
+
let workspaceDir = this._findLockFileDir(manifestDir, opts) || manifestDir;
|
|
270
|
+
let { directDeps, graph } = await this._getDependencyData(manifestDir, workspaceDir, parsed, opts);
|
|
261
271
|
let ignoredDeps = this._getIgnoredDeps(manifest);
|
|
262
|
-
let dependencies = this._buildDependencyTree(graph, directDeps, ignoredDeps, includeTransitive);
|
|
263
272
|
let sbom = new Sbom();
|
|
264
273
|
let rootName = this._getProjectName(parsed) || DEFAULT_ROOT_NAME;
|
|
265
274
|
let rootVersion = this._getProjectVersion(parsed) || DEFAULT_ROOT_VERSION;
|
|
266
275
|
let rootPurl = this._toPurl(rootName, rootVersion);
|
|
267
276
|
let license = this.readLicenseFromManifest(manifest);
|
|
268
277
|
sbom.addRoot(rootPurl, license);
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
278
|
+
if (includeTransitive) {
|
|
279
|
+
let reachable = this._reachableNodes(graph, directDeps, ignoredDeps);
|
|
280
|
+
for (let key of directDeps) {
|
|
281
|
+
if (!reachable.has(key)) {
|
|
282
|
+
continue;
|
|
283
|
+
}
|
|
284
|
+
let entry = graph.get(key);
|
|
285
|
+
sbom.addDependency(rootPurl, this._toPurl(entry.name, entry.version), NO_SCOPE, entry.hashes);
|
|
272
286
|
}
|
|
273
|
-
|
|
274
|
-
|
|
287
|
+
for (let [key, entry] of graph) {
|
|
288
|
+
if (!reachable.has(key)) {
|
|
289
|
+
continue;
|
|
290
|
+
}
|
|
291
|
+
let parentPurl = this._toPurl(entry.name, entry.version);
|
|
292
|
+
for (let child of entry.children) {
|
|
293
|
+
if (!reachable.has(child)) {
|
|
294
|
+
continue;
|
|
295
|
+
}
|
|
296
|
+
let childEntry = graph.get(child);
|
|
297
|
+
sbom.addDependency(parentPurl, this._toPurl(childEntry.name, childEntry.version), NO_SCOPE, childEntry.hashes);
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
else {
|
|
302
|
+
for (let key of directDeps) {
|
|
303
|
+
if (ignoredDeps.has(key)) {
|
|
304
|
+
continue;
|
|
305
|
+
}
|
|
306
|
+
let entry = graph.get(key);
|
|
307
|
+
if (!entry) {
|
|
308
|
+
continue;
|
|
309
|
+
}
|
|
310
|
+
sbom.addDependency(rootPurl, this._toPurl(entry.name, entry.version), NO_SCOPE, entry.hashes);
|
|
275
311
|
}
|
|
276
|
-
}
|
|
312
|
+
}
|
|
277
313
|
return sbom.getAsJsonString(opts);
|
|
278
314
|
}
|
|
279
315
|
}
|
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Discover all go.mod manifest paths in a Go workspace.
|
|
3
|
+
* Uses `go work edit -json` to get workspace members.
|
|
4
|
+
*
|
|
5
|
+
* @param {string} workspaceRoot - Absolute or relative path to workspace root (must contain go.work)
|
|
6
|
+
* @param {import('../index.js').Options} [opts={}]
|
|
7
|
+
* @returns {Promise<string[]>} Paths to go.mod files (absolute)
|
|
8
|
+
*/
|
|
9
|
+
export function discoverGoWorkspaceModules(workspaceRoot: string, opts?: import("../index.js").Options): Promise<string[]>;
|
|
1
10
|
declare namespace _default {
|
|
2
11
|
export { isSupported };
|
|
3
12
|
export { validateLockFile };
|
|
@@ -4,6 +4,7 @@ import { PackageURL } from 'packageurl-js';
|
|
|
4
4
|
import { readLicenseFile } from '../license/license_utils.js';
|
|
5
5
|
import Sbom from '../sbom.js';
|
|
6
6
|
import { getCustom, getCustomPath, invokeCommand } from "../tools.js";
|
|
7
|
+
import { filterManifestPathsByDiscoveryIgnore, resolveWorkspaceDiscoveryIgnore } from '../workspace.js';
|
|
7
8
|
import { getParser, getRequireQuery } from './gomod_parser.js';
|
|
8
9
|
export default { isSupported, validateLockFile, provideComponent, provideStack, readLicenseFromManifest };
|
|
9
10
|
/** @typedef {import('../provider').Provider} */
|
|
@@ -328,13 +329,7 @@ function getFinalPackagesVersionsForModule(rows, manifestPath, goBin) {
|
|
|
328
329
|
catch (error) {
|
|
329
330
|
throw new Error('failed to list all modules', { cause: error });
|
|
330
331
|
}
|
|
331
|
-
let finalVersionModules =
|
|
332
|
-
finalVersionsForAllModules.split(getLineSeparatorGolang()).filter(string => string.trim() !== "")
|
|
333
|
-
.filter(string => string.trim().split(" ").length === 2)
|
|
334
|
-
.forEach((dependency) => {
|
|
335
|
-
let dep = dependency.split(" ");
|
|
336
|
-
finalVersionModules[dep[0]] = dep[1];
|
|
337
|
-
});
|
|
332
|
+
let finalVersionModules = parseModuleVersions(finalVersionsForAllModules);
|
|
338
333
|
let finalVersionModulesArray = new Array();
|
|
339
334
|
rows.filter(string => string.trim() !== "").forEach(module => {
|
|
340
335
|
let child = getChildVertexFromEdge(module);
|
|
@@ -395,7 +390,69 @@ function getVersionOfPackage(fullPackage) {
|
|
|
395
390
|
let parts = fullPackage.split("@");
|
|
396
391
|
return parts.length > 1 ? parts[1] : undefined;
|
|
397
392
|
}
|
|
393
|
+
function parseModuleVersions(goListOutput) {
|
|
394
|
+
let modules = {};
|
|
395
|
+
goListOutput.split(getLineSeparatorGolang()).filter(string => string.trim() !== "")
|
|
396
|
+
.forEach((line) => {
|
|
397
|
+
let parts = line.trim().split(" ");
|
|
398
|
+
if (parts.length === 2) {
|
|
399
|
+
modules[parts[0]] = parts[1];
|
|
400
|
+
}
|
|
401
|
+
else if (parts.length >= 4 && parts[2] === "=>") {
|
|
402
|
+
modules[parts[0]] = parts[parts.length - 1];
|
|
403
|
+
}
|
|
404
|
+
});
|
|
405
|
+
return modules;
|
|
406
|
+
}
|
|
398
407
|
function getLineSeparatorGolang() {
|
|
399
408
|
let reg = /\n|\r\n/;
|
|
400
409
|
return reg;
|
|
401
410
|
}
|
|
411
|
+
/**
|
|
412
|
+
* Discover all go.mod manifest paths in a Go workspace.
|
|
413
|
+
* Uses `go work edit -json` to get workspace members.
|
|
414
|
+
*
|
|
415
|
+
* @param {string} workspaceRoot - Absolute or relative path to workspace root (must contain go.work)
|
|
416
|
+
* @param {import('../index.js').Options} [opts={}]
|
|
417
|
+
* @returns {Promise<string[]>} Paths to go.mod files (absolute)
|
|
418
|
+
*/
|
|
419
|
+
export async function discoverGoWorkspaceModules(workspaceRoot, opts = {}) {
|
|
420
|
+
const root = path.resolve(workspaceRoot);
|
|
421
|
+
const goWork = path.join(root, 'go.work');
|
|
422
|
+
if (!fs.existsSync(goWork)) {
|
|
423
|
+
return [];
|
|
424
|
+
}
|
|
425
|
+
const goBin = getCustomPath('go', opts);
|
|
426
|
+
let output;
|
|
427
|
+
try {
|
|
428
|
+
output = invokeCommand(goBin, ['work', 'edit', '-json', goWork], { cwd: root });
|
|
429
|
+
}
|
|
430
|
+
catch {
|
|
431
|
+
return [];
|
|
432
|
+
}
|
|
433
|
+
let workspace;
|
|
434
|
+
try {
|
|
435
|
+
workspace = JSON.parse(output.toString().trim());
|
|
436
|
+
}
|
|
437
|
+
catch {
|
|
438
|
+
return [];
|
|
439
|
+
}
|
|
440
|
+
const useEntries = workspace.Use || [];
|
|
441
|
+
if (useEntries.length === 0) {
|
|
442
|
+
return [];
|
|
443
|
+
}
|
|
444
|
+
const manifestPaths = [];
|
|
445
|
+
for (const entry of useEntries) {
|
|
446
|
+
const diskPath = entry.DiskPath;
|
|
447
|
+
if (!diskPath) {
|
|
448
|
+
continue;
|
|
449
|
+
}
|
|
450
|
+
const moduleDir = path.resolve(root, diskPath);
|
|
451
|
+
const goMod = path.join(moduleDir, 'go.mod');
|
|
452
|
+
if (fs.existsSync(goMod)) {
|
|
453
|
+
manifestPaths.push(goMod);
|
|
454
|
+
}
|
|
455
|
+
}
|
|
456
|
+
const ignorePatterns = resolveWorkspaceDiscoveryIgnore(opts);
|
|
457
|
+
return filterManifestPathsByDiscoveryIgnore(manifestPaths, root, ignorePatterns);
|
|
458
|
+
}
|
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Discover all build.gradle[.kts] manifest paths in a Gradle multi-project build.
|
|
3
|
+
* Uses a custom init script to get structured project listing.
|
|
4
|
+
*
|
|
5
|
+
* @param {string} workspaceRoot - Absolute or relative path to workspace root (must contain settings.gradle[.kts])
|
|
6
|
+
* @param {import('../index.js').Options} [opts={}]
|
|
7
|
+
* @returns {Promise<string[]>} Paths to build.gradle[.kts] files (absolute)
|
|
8
|
+
*/
|
|
9
|
+
export function discoverGradleSubprojects(workspaceRoot: string, opts?: import("../index.js").Options): Promise<string[]>;
|
|
10
|
+
/**
|
|
11
|
+
* Parse the structured output from the Gradle init script.
|
|
12
|
+
*
|
|
13
|
+
* @param {string} raw - Raw stdout from gradle
|
|
14
|
+
* @returns {{ path: string, dir: string }[]}
|
|
15
|
+
*/
|
|
16
|
+
export function parseGradleInitScriptOutput(raw: string): {
|
|
17
|
+
path: string;
|
|
18
|
+
dir: string;
|
|
19
|
+
}[];
|
|
1
20
|
/**
|
|
2
21
|
* This class provides common functionality for Groovy and Kotlin DSL files.
|
|
3
22
|
*/
|
|
@@ -1,9 +1,13 @@
|
|
|
1
|
+
import crypto from 'node:crypto';
|
|
1
2
|
import fs from 'node:fs';
|
|
3
|
+
import os from 'node:os';
|
|
2
4
|
import path from 'node:path';
|
|
3
5
|
import { EOL } from 'os';
|
|
4
|
-
import
|
|
6
|
+
import { parse as parseToml } from 'smol-toml';
|
|
5
7
|
import { readLicenseFile } from '../license/license_utils.js';
|
|
6
8
|
import Sbom from '../sbom.js';
|
|
9
|
+
import { invokeCommand } from '../tools.js';
|
|
10
|
+
import { filterManifestPathsByDiscoveryIgnore, resolveWorkspaceDiscoveryIgnore } from '../workspace.js';
|
|
7
11
|
import Base_java, { ecosystem_gradle } from "./base_java.js";
|
|
8
12
|
/** @typedef {import('../provider.js').Provider} */
|
|
9
13
|
/** @typedef {import('../provider.js').Provided} Provided */
|
|
@@ -362,7 +366,7 @@ export default class Java_gradle extends Base_java {
|
|
|
362
366
|
// Read and parse the TOML file
|
|
363
367
|
let pathOfToml = path.join(path.dirname(manifestPath), "gradle", "libs.versions.toml");
|
|
364
368
|
const tomlString = fs.readFileSync(pathOfToml).toString();
|
|
365
|
-
let tomlObject =
|
|
369
|
+
let tomlObject = parseToml(tomlString);
|
|
366
370
|
let groupPlusArtifactObject = tomlObject.libraries[alias];
|
|
367
371
|
let parts = groupPlusArtifactObject.module.split(":");
|
|
368
372
|
let groupId = parts[0];
|
|
@@ -407,3 +411,113 @@ export default class Java_gradle extends Base_java {
|
|
|
407
411
|
return undefined;
|
|
408
412
|
}
|
|
409
413
|
}
|
|
414
|
+
const DEFAULT_GRADLE_DISCOVERY_IGNORE = [
|
|
415
|
+
'**/build/**',
|
|
416
|
+
'**/.gradle/**',
|
|
417
|
+
];
|
|
418
|
+
/** Gradle init script that emits structured project listing. */
|
|
419
|
+
const GRADLE_INIT_SCRIPT = `allprojects {
|
|
420
|
+
task daListProjects {
|
|
421
|
+
doLast {
|
|
422
|
+
println "::DA_PROJECT::\${project.path}::\${project.projectDir}"
|
|
423
|
+
}
|
|
424
|
+
}
|
|
425
|
+
}
|
|
426
|
+
`;
|
|
427
|
+
/**
|
|
428
|
+
* Discover all build.gradle[.kts] manifest paths in a Gradle multi-project build.
|
|
429
|
+
* Uses a custom init script to get structured project listing.
|
|
430
|
+
*
|
|
431
|
+
* @param {string} workspaceRoot - Absolute or relative path to workspace root (must contain settings.gradle[.kts])
|
|
432
|
+
* @param {import('../index.js').Options} [opts={}]
|
|
433
|
+
* @returns {Promise<string[]>} Paths to build.gradle[.kts] files (absolute)
|
|
434
|
+
*/
|
|
435
|
+
export async function discoverGradleSubprojects(workspaceRoot, opts = {}) {
|
|
436
|
+
const root = path.resolve(workspaceRoot);
|
|
437
|
+
const hasSettings = fs.existsSync(path.join(root, 'settings.gradle'))
|
|
438
|
+
|| fs.existsSync(path.join(root, 'settings.gradle.kts'));
|
|
439
|
+
if (!hasSettings) {
|
|
440
|
+
return [];
|
|
441
|
+
}
|
|
442
|
+
const manifestPaths = [];
|
|
443
|
+
const rootBuildKts = path.join(root, 'build.gradle.kts');
|
|
444
|
+
const rootBuild = path.join(root, 'build.gradle');
|
|
445
|
+
const rootManifest = fs.existsSync(rootBuildKts) ? rootBuildKts : fs.existsSync(rootBuild) ? rootBuild : null;
|
|
446
|
+
if (rootManifest) {
|
|
447
|
+
manifestPaths.push(rootManifest);
|
|
448
|
+
}
|
|
449
|
+
let gradleBin;
|
|
450
|
+
try {
|
|
451
|
+
gradleBin = new Java_gradle().selectToolBinary(rootManifest || rootBuild, opts);
|
|
452
|
+
}
|
|
453
|
+
catch {
|
|
454
|
+
const ignorePatterns = [...resolveWorkspaceDiscoveryIgnore(opts), ...DEFAULT_GRADLE_DISCOVERY_IGNORE];
|
|
455
|
+
return filterManifestPathsByDiscoveryIgnore(manifestPaths, root, ignorePatterns);
|
|
456
|
+
}
|
|
457
|
+
const initScriptPath = path.join(os.tmpdir(), `da-list-projects-${crypto.randomUUID()}.gradle`);
|
|
458
|
+
try {
|
|
459
|
+
fs.writeFileSync(initScriptPath, GRADLE_INIT_SCRIPT);
|
|
460
|
+
let output;
|
|
461
|
+
try {
|
|
462
|
+
output = invokeCommand(gradleBin, [
|
|
463
|
+
'-q', '--no-daemon',
|
|
464
|
+
'--init-script', initScriptPath,
|
|
465
|
+
'daListProjects',
|
|
466
|
+
], { cwd: root });
|
|
467
|
+
}
|
|
468
|
+
catch {
|
|
469
|
+
const ignorePatterns = [...resolveWorkspaceDiscoveryIgnore(opts), ...DEFAULT_GRADLE_DISCOVERY_IGNORE];
|
|
470
|
+
return filterManifestPathsByDiscoveryIgnore(manifestPaths, root, ignorePatterns);
|
|
471
|
+
}
|
|
472
|
+
const projects = parseGradleInitScriptOutput(output.toString());
|
|
473
|
+
for (const proj of projects) {
|
|
474
|
+
if (proj.path === ':') {
|
|
475
|
+
continue;
|
|
476
|
+
}
|
|
477
|
+
const projDir = path.resolve(proj.dir);
|
|
478
|
+
const buildKts = path.join(projDir, 'build.gradle.kts');
|
|
479
|
+
const buildGroovy = path.join(projDir, 'build.gradle');
|
|
480
|
+
if (fs.existsSync(buildKts)) {
|
|
481
|
+
manifestPaths.push(buildKts);
|
|
482
|
+
}
|
|
483
|
+
else if (fs.existsSync(buildGroovy)) {
|
|
484
|
+
manifestPaths.push(buildGroovy);
|
|
485
|
+
}
|
|
486
|
+
}
|
|
487
|
+
}
|
|
488
|
+
finally {
|
|
489
|
+
try {
|
|
490
|
+
fs.unlinkSync(initScriptPath);
|
|
491
|
+
}
|
|
492
|
+
catch { /* ignore */ }
|
|
493
|
+
}
|
|
494
|
+
const ignorePatterns = [...resolveWorkspaceDiscoveryIgnore(opts), ...DEFAULT_GRADLE_DISCOVERY_IGNORE];
|
|
495
|
+
return filterManifestPathsByDiscoveryIgnore(manifestPaths, root, ignorePatterns);
|
|
496
|
+
}
|
|
497
|
+
/**
|
|
498
|
+
* Parse the structured output from the Gradle init script.
|
|
499
|
+
*
|
|
500
|
+
* @param {string} raw - Raw stdout from gradle
|
|
501
|
+
* @returns {{ path: string, dir: string }[]}
|
|
502
|
+
*/
|
|
503
|
+
export function parseGradleInitScriptOutput(raw) {
|
|
504
|
+
const projects = [];
|
|
505
|
+
for (const rawLine of raw.split('\n')) {
|
|
506
|
+
const line = rawLine.trimEnd();
|
|
507
|
+
if (!line.startsWith('::DA_PROJECT::')) {
|
|
508
|
+
continue;
|
|
509
|
+
}
|
|
510
|
+
const prefix = '::DA_PROJECT::';
|
|
511
|
+
const remainder = line.substring(prefix.length);
|
|
512
|
+
const lastSep = remainder.lastIndexOf('::');
|
|
513
|
+
if (lastSep < 0) {
|
|
514
|
+
continue;
|
|
515
|
+
}
|
|
516
|
+
const projPath = remainder.substring(0, lastSep);
|
|
517
|
+
const dir = remainder.substring(lastSep + 2);
|
|
518
|
+
if (projPath && dir) {
|
|
519
|
+
projects.push({ path: projPath, dir });
|
|
520
|
+
}
|
|
521
|
+
}
|
|
522
|
+
return projects;
|
|
523
|
+
}
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Discover all pom.xml manifest paths in a Maven multi-module project.
|
|
3
|
+
*
|
|
4
|
+
* @param {string} workspaceRoot - Absolute or relative path to workspace root (must contain pom.xml)
|
|
5
|
+
* @param {object} [opts={}]
|
|
6
|
+
* @returns {Promise<string[]>} Paths to pom.xml files (absolute)
|
|
7
|
+
*/
|
|
8
|
+
export function discoverMavenModules(workspaceRoot: string, opts?: object): Promise<string[]>;
|
|
1
9
|
/** @typedef {import('../provider').Provider} */
|
|
2
10
|
/** @typedef {import('../provider').Provided} Provided */
|
|
3
11
|
/** @typedef {{name: string, version: string}} Package */
|