@trustify-da/trustify-da-javascript-client 0.3.0-ea.d349baa → 0.3.0-ea.d84439a

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.
Files changed (60) hide show
  1. package/README.md +191 -11
  2. package/dist/package.json +19 -6
  3. package/dist/src/analysis.d.ts +16 -0
  4. package/dist/src/analysis.js +74 -80
  5. package/dist/src/batch_opts.d.ts +24 -0
  6. package/dist/src/batch_opts.js +35 -0
  7. package/dist/src/cli.js +241 -8
  8. package/dist/src/cyclone_dx_sbom.d.ts +10 -1
  9. package/dist/src/cyclone_dx_sbom.js +32 -5
  10. package/dist/src/index.d.ts +79 -4
  11. package/dist/src/index.js +288 -7
  12. package/dist/src/license/index.d.ts +28 -0
  13. package/dist/src/license/index.js +100 -0
  14. package/dist/src/license/license_utils.d.ts +40 -0
  15. package/dist/src/license/license_utils.js +134 -0
  16. package/dist/src/license/licenses_api.d.ts +34 -0
  17. package/dist/src/license/licenses_api.js +98 -0
  18. package/dist/src/license/project_license.d.ts +20 -0
  19. package/dist/src/license/project_license.js +62 -0
  20. package/dist/src/oci_image/utils.js +11 -2
  21. package/dist/src/provider.d.ts +17 -5
  22. package/dist/src/provider.js +27 -5
  23. package/dist/src/providers/base_javascript.d.ts +29 -7
  24. package/dist/src/providers/base_javascript.js +129 -22
  25. package/dist/src/providers/base_pyproject.d.ts +170 -0
  26. package/dist/src/providers/base_pyproject.js +338 -0
  27. package/dist/src/providers/golang_gomodules.d.ts +19 -12
  28. package/dist/src/providers/golang_gomodules.js +112 -114
  29. package/dist/src/providers/gomod_parser.d.ts +4 -0
  30. package/dist/src/providers/gomod_parser.js +16 -0
  31. package/dist/src/providers/java_gradle.d.ts +6 -0
  32. package/dist/src/providers/java_gradle.js +12 -2
  33. package/dist/src/providers/java_maven.d.ts +8 -1
  34. package/dist/src/providers/java_maven.js +32 -4
  35. package/dist/src/providers/javascript_pnpm.d.ts +1 -1
  36. package/dist/src/providers/javascript_pnpm.js +2 -2
  37. package/dist/src/providers/manifest.d.ts +2 -0
  38. package/dist/src/providers/manifest.js +22 -4
  39. package/dist/src/providers/processors/yarn_berry_processor.js +82 -3
  40. package/dist/src/providers/python_controller.d.ts +5 -2
  41. package/dist/src/providers/python_controller.js +56 -58
  42. package/dist/src/providers/python_pip.d.ts +11 -4
  43. package/dist/src/providers/python_pip.js +47 -54
  44. package/dist/src/providers/python_poetry.d.ts +42 -0
  45. package/dist/src/providers/python_poetry.js +169 -0
  46. package/dist/src/providers/python_uv.d.ts +27 -0
  47. package/dist/src/providers/python_uv.js +146 -0
  48. package/dist/src/providers/requirements_parser.d.ts +6 -0
  49. package/dist/src/providers/requirements_parser.js +24 -0
  50. package/dist/src/providers/rust_cargo.d.ts +52 -0
  51. package/dist/src/providers/rust_cargo.js +614 -0
  52. package/dist/src/providers/tree-sitter-gomod.wasm +0 -0
  53. package/dist/src/providers/tree-sitter-requirements.wasm +0 -0
  54. package/dist/src/sbom.d.ts +10 -1
  55. package/dist/src/sbom.js +12 -2
  56. package/dist/src/tools.d.ts +18 -0
  57. package/dist/src/tools.js +56 -1
  58. package/dist/src/workspace.d.ts +61 -0
  59. package/dist/src/workspace.js +256 -0
  60. package/package.json +20 -7
@@ -1,11 +1,12 @@
1
1
  import fs from 'node:fs';
2
2
  import os from "node:os";
3
3
  import path from 'node:path';
4
+ import { getLicense } from '../license/license_utils.js';
4
5
  import Sbom from '../sbom.js';
5
- import { getCustom, getCustomPath, invokeCommand, toPurl, toPurlFromString } from "../tools.js";
6
+ import { getCustom, getCustomPath, invokeCommand, toPurl, toPurlFromString } from '../tools.js';
6
7
  import Manifest from './manifest.js';
7
- /** @typedef {import('../provider.js').Provider} Provider */
8
- /** @typedef {import('../provider.js').Provided} Provided */
8
+ /** @typedef {import('../provider').Provider} */
9
+ /** @typedef {import('../provider').Provided} Provided */
9
10
  /**
10
11
  * The ecosystem identifier for JavaScript/npm packages
11
12
  * @type {string}
@@ -96,13 +97,63 @@ export default class Base_javascript {
96
97
  return 'package.json' === manifestName;
97
98
  }
98
99
  /**
99
- * Checks if a required lock file exists in the same path as the manifest
100
+ * Walks up the directory tree from manifestDir looking for the lock file.
101
+ * Stops when the lock file is found, when a package.json with a "workspaces"
102
+ * field is encountered without a lock file (workspace root boundary), or
103
+ * when the filesystem root is reached.
104
+ *
105
+ * When TRUSTIFY_DA_WORKSPACE_DIR is set, checks only that directory (no walk-up).
106
+ *
107
+ * @param {string} manifestDir - The directory to start searching from
108
+ * @param {Object} [opts={}] - optional; may contain TRUSTIFY_DA_WORKSPACE_DIR
109
+ * @returns {string|null} The directory containing the lock file, or null
110
+ * @protected
111
+ */
112
+ _isWorkspaceRoot(dir) {
113
+ if (fs.existsSync(path.join(dir, 'pnpm-workspace.yaml'))) {
114
+ return true;
115
+ }
116
+ const pkgJsonPath = path.join(dir, 'package.json');
117
+ if (fs.existsSync(pkgJsonPath)) {
118
+ try {
119
+ const content = JSON.parse(fs.readFileSync(pkgJsonPath, 'utf-8'));
120
+ if (content.workspaces) {
121
+ return true;
122
+ }
123
+ }
124
+ catch (_) {
125
+ // ignore parse errors
126
+ }
127
+ }
128
+ return false;
129
+ }
130
+ _findLockFileDir(manifestDir, opts = {}) {
131
+ const workspaceDir = getCustom('TRUSTIFY_DA_WORKSPACE_DIR', null, opts);
132
+ if (workspaceDir) {
133
+ const dir = path.resolve(workspaceDir);
134
+ return fs.existsSync(path.join(dir, this._lockFileName())) ? dir : null;
135
+ }
136
+ let dir = path.resolve(manifestDir);
137
+ let parent = dir;
138
+ do {
139
+ dir = parent;
140
+ if (fs.existsSync(path.join(dir, this._lockFileName()))) {
141
+ return dir;
142
+ }
143
+ if (this._isWorkspaceRoot(dir)) {
144
+ return null;
145
+ }
146
+ parent = path.dirname(dir);
147
+ } while (parent !== dir);
148
+ return null;
149
+ }
150
+ /**
100
151
  * @param {string} manifestDir - The base directory where the manifest is located
152
+ * @param {Object} [opts={}] - optional; may contain TRUSTIFY_DA_WORKSPACE_DIR
101
153
  * @returns {boolean} True if the lock file exists
102
154
  */
103
- validateLockFile(manifestDir) {
104
- const lock = path.join(manifestDir, this._lockFileName());
105
- return fs.existsSync(lock);
155
+ validateLockFile(manifestDir, opts = {}) {
156
+ return this._findLockFileDir(manifestDir, opts) !== null;
106
157
  }
107
158
  /**
108
159
  * Provides content and content type for stack analysis
@@ -132,17 +183,42 @@ export default class Base_javascript {
132
183
  contentType: 'application/vnd.cyclonedx+json'
133
184
  };
134
185
  }
186
+ /**
187
+ * Read license from manifest (package.json). Reused by npm, pnpm, yarn.
188
+ * @param {string} manifestPath - path to package.json
189
+ * @returns {string|null}
190
+ */
191
+ readLicenseFromManifest(manifestPath) {
192
+ let manifestLicense;
193
+ try {
194
+ const content = JSON.parse(fs.readFileSync(manifestPath, 'utf-8'));
195
+ if (typeof content.license === 'string') {
196
+ manifestLicense = content.license.trim() || null;
197
+ }
198
+ else if (Array.isArray(content.licenses) && content.licenses.length > 0) {
199
+ const first = content.licenses[0];
200
+ const name = first.type || first.name;
201
+ manifestLicense = (typeof name === 'string' ? name.trim() : null);
202
+ }
203
+ }
204
+ catch {
205
+ manifestLicense = null;
206
+ }
207
+ return getLicense(manifestLicense, manifestPath);
208
+ }
135
209
  /**
136
210
  * Builds the dependency tree for the project
137
211
  * @param {boolean} includeTransitive - Whether to include transitive dependencies
212
+ * @param {Object} [opts={}] - Configuration options; when `TRUSTIFY_DA_WORKSPACE_DIR` is set, commands run from workspace root
138
213
  * @returns {Object} The dependency tree
139
214
  * @protected
140
215
  */
141
- _buildDependencyTree(includeTransitive) {
216
+ _buildDependencyTree(includeTransitive, opts = {}) {
142
217
  this._version();
143
- let manifestDir = path.dirname(this.#manifest.manifestPath);
144
- this.#createLockFile(manifestDir);
145
- let output = this.#executeListCmd(includeTransitive, manifestDir);
218
+ const manifestDir = path.dirname(this.#manifest.manifestPath);
219
+ const cmdDir = this._findLockFileDir(manifestDir, opts) || manifestDir;
220
+ this.#createLockFile(cmdDir);
221
+ let output = this.#executeListCmd(includeTransitive, cmdDir);
146
222
  output = this._parseDepTreeOutput(output);
147
223
  return JSON.parse(output);
148
224
  }
@@ -153,14 +229,38 @@ export default class Base_javascript {
153
229
  * @private
154
230
  */
155
231
  #getSBOM(opts = {}) {
156
- const depsObject = this._buildDependencyTree(true);
232
+ const depsObject = this._buildDependencyTree(true, opts);
157
233
  let mainComponent = toPurl(purlType, this.#manifest.name, this.#manifest.version);
234
+ const license = this.readLicenseFromManifest(this.#manifest.manifestPath);
158
235
  let sbom = new Sbom();
159
- sbom.addRoot(mainComponent);
236
+ sbom.addRoot(mainComponent, license);
160
237
  this._addDependenciesToSbom(sbom, depsObject);
238
+ this.#ensurePeerAndOptionalDeps(sbom);
161
239
  sbom.filterIgnoredDeps(this.#manifest.ignored);
162
240
  return sbom.getAsJsonString(opts);
163
241
  }
242
+ /**
243
+ * Ensures peer and optional dependencies declared in the manifest are
244
+ * present in the SBOM, even when the package manager does not resolve them
245
+ * (e.g. yarn does not include peer deps in its dependency listing).
246
+ * @param {Sbom} sbom - The SBOM to supplement
247
+ * @private
248
+ */
249
+ #ensurePeerAndOptionalDeps(sbom) {
250
+ const rootPurl = toPurl(purlType, this.#manifest.name, this.#manifest.version);
251
+ const depSources = [this.#manifest.peerDependencies, this.#manifest.optionalDependencies];
252
+ for (const source of depSources) {
253
+ for (const [name, version] of Object.entries(source)) {
254
+ // Build the purl prefix for exact matching (e.g. "pkg:npm/minimist@"
255
+ // or "pkg:npm/%40hapi/joi@") to avoid substring false positives
256
+ const probe = toPurl(purlType, name, version);
257
+ const purlPrefix = probe.toString().replace(/@[^@]*$/, '@');
258
+ if (!sbom.checkDependsOnByPurlPrefix(rootPurl, purlPrefix)) {
259
+ sbom.addDependency(rootPurl, probe);
260
+ }
261
+ }
262
+ }
263
+ }
164
264
  /**
165
265
  * Recursively builds the Sbom from the JSON that npm listing returns
166
266
  * @param {Sbom} sbom - The SBOM object to add dependencies to
@@ -168,7 +268,10 @@ export default class Base_javascript {
168
268
  * @protected
169
269
  */
170
270
  _addDependenciesToSbom(sbom, depTree) {
171
- const dependencies = depTree["dependencies"] || {};
271
+ const dependencies = {
272
+ ...depTree["dependencies"],
273
+ ...depTree["optionalDependencies"],
274
+ };
172
275
  Object.entries(dependencies)
173
276
  .forEach(entry => {
174
277
  const [name, artifact] = entry;
@@ -204,10 +307,11 @@ export default class Base_javascript {
204
307
  * @private
205
308
  */
206
309
  #getDirectDependencySbom(opts = {}) {
207
- const depTree = this._buildDependencyTree(false);
310
+ const depTree = this._buildDependencyTree(false, opts);
208
311
  let mainComponent = toPurl(purlType, this.#manifest.name, this.#manifest.version);
312
+ const license = this.readLicenseFromManifest(this.#manifest.manifestPath);
209
313
  let sbom = new Sbom();
210
- sbom.addRoot(mainComponent);
314
+ sbom.addRoot(mainComponent, license);
211
315
  const rootDeps = this._getRootDependencies(depTree);
212
316
  const sortedDepsKeys = Array
213
317
  .from(rootDeps.keys())
@@ -217,6 +321,7 @@ export default class Base_javascript {
217
321
  const rootPurl = toPurlFromString(sbom.getRoot().purl);
218
322
  sbom.addDependency(rootPurl, rootDeps.get(key));
219
323
  }
324
+ this.#ensurePeerAndOptionalDeps(sbom);
220
325
  sbom.filterIgnoredDeps(this.#manifest.ignored);
221
326
  return sbom.getAsJsonString(opts);
222
327
  }
@@ -227,10 +332,14 @@ export default class Base_javascript {
227
332
  * @protected
228
333
  */
229
334
  _getRootDependencies(depTree) {
230
- if (!depTree.dependencies) {
335
+ const allDeps = {
336
+ ...depTree.dependencies,
337
+ ...depTree.optionalDependencies,
338
+ };
339
+ if (Object.keys(allDeps).length === 0) {
231
340
  return new Map();
232
341
  }
233
- return new Map(Object.entries(depTree.dependencies).map(([key, value]) => [key, toPurl(purlType, key, value.version)]));
342
+ return new Map(Object.entries(allDeps).map(([key, value]) => [key, toPurl(purlType, key, value.version)]));
234
343
  }
235
344
  /**
236
345
  * Executes the list command to get dependencies
@@ -241,7 +350,7 @@ export default class Base_javascript {
241
350
  */
242
351
  #executeListCmd(includeTransitive, manifestDir) {
243
352
  const listArgs = this._listCmdArgs(includeTransitive, manifestDir);
244
- return this.#invokeCommand(listArgs);
353
+ return this.#invokeCommand(listArgs, { cwd: manifestDir });
245
354
  }
246
355
  /**
247
356
  * Gets the version of the package manager
@@ -260,13 +369,11 @@ export default class Base_javascript {
260
369
  const originalDir = process.cwd();
261
370
  const isWindows = os.platform() === 'win32';
262
371
  if (isWindows) {
263
- // On Windows, --prefix flag doesn't work as expected
264
- // Instead of installing from the prefix folder, it installs from current working directory
265
372
  process.chdir(manifestDir);
266
373
  }
267
374
  try {
268
375
  const args = this._updateLockFileCmdArgs(manifestDir);
269
- this.#invokeCommand(args);
376
+ this.#invokeCommand(args, { cwd: manifestDir });
270
377
  }
271
378
  finally {
272
379
  if (isWindows) {
@@ -0,0 +1,170 @@
1
+ /** @typedef {{name: string, version: string, children: string[]}} GraphEntry */
2
+ /** @typedef {{name: string, version: string, dependencies: DepTreeEntry[]}} DepTreeEntry */
3
+ /** @typedef {{directDeps: string[], graph: Map<string, GraphEntry>}} DependencyData */
4
+ /** @typedef {{ecosystem: string, content: string, contentType: string}} Provided */
5
+ export default class Base_pyproject {
6
+ /**
7
+ * @param {string} manifestName
8
+ * @returns {boolean}
9
+ */
10
+ isSupported(manifestName: string): boolean;
11
+ /**
12
+ * @param {string} manifestDir
13
+ * @param {Object} [opts={}]
14
+ * @returns {boolean}
15
+ */
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;
36
+ /**
37
+ * Read project license from pyproject.toml, with fallback to LICENSE file.
38
+ * @param {string} manifestPath
39
+ * @returns {string|null}
40
+ */
41
+ readLicenseFromManifest(manifestPath: string): string | null;
42
+ /**
43
+ * @param {string} manifest - path to pyproject.toml
44
+ * @param {Object} [opts={}]
45
+ * @returns {Promise<Provided>}
46
+ */
47
+ provideStack(manifest: string, opts?: any): Promise<Provided>;
48
+ /**
49
+ * @param {string} manifest - path to pyproject.toml
50
+ * @param {Object} [opts={}]
51
+ * @returns {Promise<Provided>}
52
+ */
53
+ provideComponent(manifest: string, opts?: any): Promise<Provided>;
54
+ /**
55
+ * @returns {string}
56
+ * @protected
57
+ */
58
+ protected _lockFileName(): string;
59
+ /**
60
+ * @returns {string}
61
+ * @protected
62
+ */
63
+ protected _cmdName(): string;
64
+ /**
65
+ * Resolve dependencies using the tool-specific command and parser.
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)
70
+ * @param {object} parsed - parsed pyproject.toml
71
+ * @param {Object} opts
72
+ * @returns {Promise<DependencyData>}
73
+ * @protected
74
+ */
75
+ protected _getDependencyData(manifestDir: string, workspaceDir: string, parsed: object, opts: any): Promise<DependencyData>;
76
+ /**
77
+ * Canonicalize a Python package name per PEP 503.
78
+ * @param {string} name
79
+ * @returns {string}
80
+ * @protected
81
+ */
82
+ protected _canonicalize(name: string): string;
83
+ /**
84
+ * Get the project name from pyproject.toml.
85
+ * @param {object} parsed
86
+ * @returns {string|null}
87
+ * @protected
88
+ */
89
+ protected _getProjectName(parsed: object): string | null;
90
+ /**
91
+ * Get the project version from pyproject.toml.
92
+ * @param {object} parsed
93
+ * @returns {string|null}
94
+ * @protected
95
+ */
96
+ protected _getProjectVersion(parsed: object): string | null;
97
+ /**
98
+ * Scan raw pyproject.toml text for dependencies with ignore markers.
99
+ * @param {string} manifestPath
100
+ * @returns {Set<string>}
101
+ * @protected
102
+ */
103
+ protected _getIgnoredDeps(manifestPath: string): Set<string>;
104
+ /**
105
+ * Build dependency tree from graph, starting from direct deps.
106
+ * @param {Map<string, GraphEntry>} graph
107
+ * @param {string[]} directDeps - canonical names of direct deps
108
+ * @param {Set<string>} ignoredDeps
109
+ * @param {boolean} includeTransitive
110
+ * @returns {DepTreeEntry[]}
111
+ * @protected
112
+ */
113
+ protected _buildDependencyTree(graph: Map<string, GraphEntry>, directDeps: string[], ignoredDeps: Set<string>, includeTransitive: boolean): DepTreeEntry[];
114
+ /**
115
+ * Recursively collect transitive dependencies.
116
+ * @param {Map<string, GraphEntry>} graph
117
+ * @param {string[]} childKeys
118
+ * @param {DepTreeEntry[]} result - mutated in place
119
+ * @param {Set<string>} ignoredDeps
120
+ * @param {Set<string>} visited
121
+ * @returns {void}
122
+ * @protected
123
+ */
124
+ protected _collectTransitive(graph: Map<string, GraphEntry>, childKeys: string[], result: DepTreeEntry[], ignoredDeps: Set<string>, visited: Set<string>): void;
125
+ /**
126
+ * @param {string} name
127
+ * @param {string} version
128
+ * @returns {PackageURL}
129
+ * @protected
130
+ */
131
+ protected _toPurl(name: string, version: string): PackageURL;
132
+ /**
133
+ * Recursively add a dependency and its transitive deps to the SBOM.
134
+ * @param {PackageURL} source
135
+ * @param {DepTreeEntry} dep
136
+ * @param {Sbom} sbom
137
+ * @returns {void}
138
+ * @private
139
+ */
140
+ private _addAllDependencies;
141
+ /**
142
+ * Create SBOM json string for a pyproject.toml project.
143
+ * @param {string} manifest - path to pyproject.toml
144
+ * @param {Object} opts
145
+ * @param {boolean} includeTransitive
146
+ * @returns {Promise<string>}
147
+ * @private
148
+ */
149
+ private _createSbom;
150
+ }
151
+ export type GraphEntry = {
152
+ name: string;
153
+ version: string;
154
+ children: string[];
155
+ };
156
+ export type DepTreeEntry = {
157
+ name: string;
158
+ version: string;
159
+ dependencies: DepTreeEntry[];
160
+ };
161
+ export type DependencyData = {
162
+ directDeps: string[];
163
+ graph: Map<string, GraphEntry>;
164
+ };
165
+ export type Provided = {
166
+ ecosystem: string;
167
+ content: string;
168
+ contentType: string;
169
+ };
170
+ import { PackageURL } from 'packageurl-js';