@trustify-da/trustify-da-javascript-client 0.3.0-ea.e12bc82 → 0.3.0-ea.e5bb86c
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 +191 -11
- package/dist/package.json +23 -10
- package/dist/src/analysis.d.ts +21 -5
- package/dist/src/analysis.js +74 -80
- package/dist/src/batch_opts.d.ts +24 -0
- package/dist/src/batch_opts.js +35 -0
- package/dist/src/cli.js +192 -8
- package/dist/src/cyclone_dx_sbom.d.ts +10 -2
- package/dist/src/cyclone_dx_sbom.js +32 -5
- package/dist/src/index.d.ts +128 -11
- package/dist/src/index.js +272 -7
- package/dist/src/license/index.d.ts +28 -0
- package/dist/src/license/index.js +100 -0
- package/dist/src/license/license_utils.d.ts +40 -0
- package/dist/src/license/license_utils.js +134 -0
- package/dist/src/license/licenses_api.d.ts +34 -0
- package/dist/src/license/licenses_api.js +98 -0
- package/dist/src/license/project_license.d.ts +20 -0
- package/dist/src/license/project_license.js +62 -0
- package/dist/src/oci_image/images.d.ts +4 -5
- package/dist/src/oci_image/utils.d.ts +4 -4
- package/dist/src/provider.d.ts +17 -5
- package/dist/src/provider.js +27 -5
- package/dist/src/providers/base_java.d.ts +3 -5
- package/dist/src/providers/base_javascript.d.ts +29 -7
- package/dist/src/providers/base_javascript.js +129 -22
- package/dist/src/providers/base_pyproject.d.ts +147 -0
- package/dist/src/providers/base_pyproject.js +279 -0
- package/dist/src/providers/golang_gomodules.d.ts +20 -13
- package/dist/src/providers/golang_gomodules.js +112 -114
- package/dist/src/providers/gomod_parser.d.ts +4 -0
- package/dist/src/providers/gomod_parser.js +16 -0
- package/dist/src/providers/java_gradle.d.ts +9 -3
- package/dist/src/providers/java_gradle.js +12 -2
- package/dist/src/providers/java_gradle_groovy.d.ts +1 -1
- package/dist/src/providers/java_gradle_kotlin.d.ts +1 -1
- package/dist/src/providers/java_maven.d.ts +12 -5
- package/dist/src/providers/java_maven.js +33 -5
- package/dist/src/providers/javascript_pnpm.d.ts +1 -1
- package/dist/src/providers/javascript_pnpm.js +2 -2
- package/dist/src/providers/manifest.d.ts +2 -0
- package/dist/src/providers/manifest.js +22 -4
- package/dist/src/providers/processors/yarn_berry_processor.js +82 -3
- package/dist/src/providers/python_controller.d.ts +5 -2
- package/dist/src/providers/python_controller.js +56 -58
- package/dist/src/providers/python_pip.d.ts +11 -4
- package/dist/src/providers/python_pip.js +47 -54
- package/dist/src/providers/python_poetry.d.ts +42 -0
- package/dist/src/providers/python_poetry.js +146 -0
- package/dist/src/providers/python_uv.d.ts +26 -0
- package/dist/src/providers/python_uv.js +118 -0
- package/dist/src/providers/requirements_parser.d.ts +6 -0
- package/dist/src/providers/requirements_parser.js +24 -0
- package/dist/src/providers/rust_cargo.d.ts +52 -0
- package/dist/src/providers/rust_cargo.js +614 -0
- package/dist/src/providers/tree-sitter-gomod.wasm +0 -0
- package/dist/src/providers/tree-sitter-requirements.wasm +0 -0
- package/dist/src/sbom.d.ts +10 -1
- package/dist/src/sbom.js +12 -2
- package/dist/src/tools.d.ts +22 -6
- package/dist/src/tools.js +56 -1
- package/dist/src/workspace.d.ts +61 -0
- package/dist/src/workspace.js +256 -0
- package/package.json +24 -11
|
@@ -3,6 +3,7 @@ import os from 'node:os';
|
|
|
3
3
|
import path from 'node:path';
|
|
4
4
|
import { EOL } from 'os';
|
|
5
5
|
import { XMLParser } from 'fast-xml-parser';
|
|
6
|
+
import { getLicense } from '../license/license_utils.js';
|
|
6
7
|
import Sbom from '../sbom.js';
|
|
7
8
|
import { getCustom } from '../tools.js';
|
|
8
9
|
import Base_java, { ecosystem_maven } from "./base_java.js";
|
|
@@ -51,6 +52,30 @@ export default class Java_maven extends Base_java {
|
|
|
51
52
|
contentType: 'application/vnd.cyclonedx+json'
|
|
52
53
|
};
|
|
53
54
|
}
|
|
55
|
+
/**
|
|
56
|
+
* Read license from pom.xml manifest, with fallback to LICENSE file
|
|
57
|
+
* @param {string} manifestPath - path to pom.xml
|
|
58
|
+
* @returns {string|null}
|
|
59
|
+
*/
|
|
60
|
+
readLicenseFromManifest(manifestPath) {
|
|
61
|
+
let fromPom = null;
|
|
62
|
+
try {
|
|
63
|
+
const xml = fs.readFileSync(manifestPath, 'utf-8');
|
|
64
|
+
const parser = new XMLParser({ ignoreAttributes: false });
|
|
65
|
+
const obj = parser.parse(xml);
|
|
66
|
+
const project = obj?.project;
|
|
67
|
+
if (project?.licenses?.license) {
|
|
68
|
+
const license = Array.isArray(project.licenses.license)
|
|
69
|
+
? project.licenses.license[0]
|
|
70
|
+
: project.licenses.license;
|
|
71
|
+
fromPom = (license?.name && license.name.trim()) || null;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
catch {
|
|
75
|
+
// leave fromPom as null
|
|
76
|
+
}
|
|
77
|
+
return getLicense(fromPom, manifestPath);
|
|
78
|
+
}
|
|
54
79
|
/**
|
|
55
80
|
* Create a Dot Graph dependency tree for a manifest path.
|
|
56
81
|
* @param {string} manifest - path for pom.xml
|
|
@@ -105,7 +130,7 @@ export default class Java_maven extends Base_java {
|
|
|
105
130
|
if (process.env["TRUSTIFY_DA_DEBUG"] === "true") {
|
|
106
131
|
console.error("Dependency tree that will be used as input for creating the BOM =>" + EOL + EOL + content.toString());
|
|
107
132
|
}
|
|
108
|
-
let sbom = this.createSbomFileFromTextFormat(content.toString(), ignoredDeps, opts);
|
|
133
|
+
let sbom = this.createSbomFileFromTextFormat(content.toString(), ignoredDeps, opts, manifest);
|
|
109
134
|
// delete temp file and directory
|
|
110
135
|
fs.rmSync(tmpDir, { recursive: true, force: true });
|
|
111
136
|
// return dependency graph as string
|
|
@@ -115,15 +140,17 @@ export default class Java_maven extends Base_java {
|
|
|
115
140
|
*
|
|
116
141
|
* @param {String} textGraphList Text graph String of the manifest
|
|
117
142
|
* @param {[String]} ignoredDeps List of ignored dependencies to be omitted from sbom
|
|
143
|
+
* @param {String} manifestPath Path to the pom.xml manifest
|
|
118
144
|
* @return {String} formatted sbom Json String with all dependencies
|
|
119
145
|
*/
|
|
120
|
-
createSbomFileFromTextFormat(textGraphList, ignoredDeps, opts) {
|
|
146
|
+
createSbomFileFromTextFormat(textGraphList, ignoredDeps, opts, manifestPath) {
|
|
121
147
|
let lines = textGraphList.split(EOL);
|
|
122
148
|
// get root component
|
|
123
149
|
let root = lines[0];
|
|
124
150
|
let rootPurl = this.parseDep(root);
|
|
151
|
+
const license = this.readLicenseFromManifest(manifestPath);
|
|
125
152
|
let sbom = new Sbom();
|
|
126
|
-
sbom.addRoot(rootPurl);
|
|
153
|
+
sbom.addRoot(rootPurl, license);
|
|
127
154
|
this.parseDependencyTree(root, 0, lines.slice(1), sbom);
|
|
128
155
|
return sbom.filterIgnoredDeps(ignoredDeps).getAsJsonString(opts);
|
|
129
156
|
}
|
|
@@ -156,7 +183,8 @@ export default class Java_maven extends Base_java {
|
|
|
156
183
|
let sbom = new Sbom();
|
|
157
184
|
let rootDependency = this.#getRootFromPom(tmpEffectivePom, manifestPath);
|
|
158
185
|
let purlRoot = this.toPurl(rootDependency.groupId, rootDependency.artifactId, rootDependency.version);
|
|
159
|
-
|
|
186
|
+
const license = this.readLicenseFromManifest(manifestPath);
|
|
187
|
+
sbom.addRoot(purlRoot, license);
|
|
160
188
|
dependencies.forEach(dep => {
|
|
161
189
|
let currentPurl = this.toPurl(dep.groupId, dep.artifactId, dep.version);
|
|
162
190
|
sbom.addDependency(purlRoot, currentPurl);
|
|
@@ -209,7 +237,7 @@ export default class Java_maven extends Base_java {
|
|
|
209
237
|
let ignored = [];
|
|
210
238
|
// build xml parser with options
|
|
211
239
|
let parser = new XMLParser({
|
|
212
|
-
commentPropName: '#comment',
|
|
240
|
+
commentPropName: '#comment', // mark comments with #comment
|
|
213
241
|
isArray: (_, jpath) => 'project.dependencies.dependency' === jpath,
|
|
214
242
|
parseTagValue: false
|
|
215
243
|
});
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export default class Javascript_pnpm extends Base_javascript {
|
|
2
2
|
_listCmdArgs(includeTransitive: any): string[];
|
|
3
|
-
_buildDependencyTree(includeTransitive: any,
|
|
3
|
+
_buildDependencyTree(includeTransitive: any, opts?: {}): any;
|
|
4
4
|
}
|
|
5
5
|
import Base_javascript from './base_javascript.js';
|
|
@@ -12,8 +12,8 @@ export default class Javascript_pnpm extends Base_javascript {
|
|
|
12
12
|
_updateLockFileCmdArgs() {
|
|
13
13
|
return ['install', '--frozen-lockfile'];
|
|
14
14
|
}
|
|
15
|
-
_buildDependencyTree(includeTransitive,
|
|
16
|
-
const tree = super._buildDependencyTree(includeTransitive,
|
|
15
|
+
_buildDependencyTree(includeTransitive, opts = {}) {
|
|
16
|
+
const tree = super._buildDependencyTree(includeTransitive, opts);
|
|
17
17
|
if (Array.isArray(tree) && tree.length > 0) {
|
|
18
18
|
return tree[0];
|
|
19
19
|
}
|
|
@@ -9,6 +9,8 @@ export default class Manifest {
|
|
|
9
9
|
this.manifestPath = manifestPath;
|
|
10
10
|
const content = this.loadManifest();
|
|
11
11
|
this.dependencies = this.loadDependencies(content);
|
|
12
|
+
this.peerDependencies = content.peerDependencies || {};
|
|
13
|
+
this.optionalDependencies = content.optionalDependencies || {};
|
|
12
14
|
this.name = content.name;
|
|
13
15
|
this.version = content.version || DEFAULT_VERSION;
|
|
14
16
|
this.ignored = this.loadIgnored(content);
|
|
@@ -27,11 +29,27 @@ export default class Manifest {
|
|
|
27
29
|
}
|
|
28
30
|
loadDependencies(content) {
|
|
29
31
|
let deps = [];
|
|
30
|
-
|
|
31
|
-
|
|
32
|
+
const depSources = [
|
|
33
|
+
content.dependencies,
|
|
34
|
+
content.peerDependencies,
|
|
35
|
+
content.optionalDependencies,
|
|
36
|
+
];
|
|
37
|
+
for (const source of depSources) {
|
|
38
|
+
if (source) {
|
|
39
|
+
for (let dep in source) {
|
|
40
|
+
if (!deps.includes(dep)) {
|
|
41
|
+
deps.push(dep);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
32
45
|
}
|
|
33
|
-
|
|
34
|
-
|
|
46
|
+
// bundledDependencies is an array of package names (subset of dependencies)
|
|
47
|
+
if (Array.isArray(content.bundledDependencies)) {
|
|
48
|
+
for (const dep of content.bundledDependencies) {
|
|
49
|
+
if (!deps.includes(dep)) {
|
|
50
|
+
deps.push(dep);
|
|
51
|
+
}
|
|
52
|
+
}
|
|
35
53
|
}
|
|
36
54
|
return deps;
|
|
37
55
|
}
|
|
@@ -48,13 +48,15 @@ export default class Yarn_berry_processor extends Yarn_processor {
|
|
|
48
48
|
if (!depTree) {
|
|
49
49
|
return new Map();
|
|
50
50
|
}
|
|
51
|
-
return new Map(depTree.filter(dep => !this.#isRoot(dep.value))
|
|
51
|
+
return new Map(depTree.filter(dep => !this.#isRoot(dep.value))
|
|
52
|
+
.map(dep => {
|
|
52
53
|
const depName = dep.value;
|
|
53
54
|
const idx = depName.lastIndexOf('@');
|
|
54
55
|
const name = depName.substring(0, idx);
|
|
55
56
|
const version = dep.children.Version;
|
|
56
57
|
return [name, toPurl(purlType, name, version)];
|
|
57
|
-
})
|
|
58
|
+
})
|
|
59
|
+
.filter(([name]) => this._manifest.dependencies.includes(name)));
|
|
58
60
|
}
|
|
59
61
|
/**
|
|
60
62
|
* Checks if a dependency is the root package
|
|
@@ -77,14 +79,58 @@ export default class Yarn_berry_processor extends Yarn_processor {
|
|
|
77
79
|
if (!depTree) {
|
|
78
80
|
return;
|
|
79
81
|
}
|
|
82
|
+
// Build index of nodes by their value for quick lookup
|
|
83
|
+
const nodeIndex = new Map();
|
|
84
|
+
depTree.forEach(n => nodeIndex.set(n.value, n));
|
|
85
|
+
// Determine the set of node values reachable from root via production deps
|
|
86
|
+
const prodDeps = new Set(this._manifest.dependencies);
|
|
87
|
+
const reachable = new Set();
|
|
88
|
+
const queue = [];
|
|
89
|
+
// Seed with root's production dependencies
|
|
90
|
+
const rootNode = depTree.find(n => this.#isRoot(n.value));
|
|
91
|
+
if (rootNode?.children?.Dependencies) {
|
|
92
|
+
for (const d of rootNode.children.Dependencies) {
|
|
93
|
+
const to = this.#purlFromLocator(d.locator);
|
|
94
|
+
if (to) {
|
|
95
|
+
const fullName = to.namespace ? `${to.namespace}/${to.name}` : to.name;
|
|
96
|
+
if (prodDeps.has(fullName)) {
|
|
97
|
+
queue.push(d.locator);
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
// BFS to find all transitively reachable packages
|
|
103
|
+
while (queue.length > 0) {
|
|
104
|
+
const locator = queue.shift();
|
|
105
|
+
if (reachable.has(locator)) {
|
|
106
|
+
continue;
|
|
107
|
+
}
|
|
108
|
+
reachable.add(locator);
|
|
109
|
+
const node = nodeIndex.get(this.#nodeValueFromLocator(locator));
|
|
110
|
+
if (node?.children?.Dependencies) {
|
|
111
|
+
for (const d of node.children.Dependencies) {
|
|
112
|
+
if (!reachable.has(d.locator)) {
|
|
113
|
+
queue.push(d.locator);
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
// Only emit edges for root and reachable nodes
|
|
80
119
|
depTree.forEach(n => {
|
|
81
120
|
const depName = n.value;
|
|
82
|
-
const
|
|
121
|
+
const isRoot = this.#isRoot(depName);
|
|
122
|
+
if (!isRoot && !this.#isReachableNode(depName, reachable)) {
|
|
123
|
+
return;
|
|
124
|
+
}
|
|
125
|
+
const from = isRoot ? toPurlFromString(sbom.getRoot().purl) : this.#purlFromNode(depName, n);
|
|
83
126
|
const deps = n.children?.Dependencies;
|
|
84
127
|
if (!deps) {
|
|
85
128
|
return;
|
|
86
129
|
}
|
|
87
130
|
deps.forEach(d => {
|
|
131
|
+
if (!reachable.has(d.locator)) {
|
|
132
|
+
return;
|
|
133
|
+
}
|
|
88
134
|
const to = this.#purlFromLocator(d.locator);
|
|
89
135
|
if (to) {
|
|
90
136
|
sbom.addDependency(from, to);
|
|
@@ -92,6 +138,39 @@ export default class Yarn_berry_processor extends Yarn_processor {
|
|
|
92
138
|
});
|
|
93
139
|
});
|
|
94
140
|
}
|
|
141
|
+
/**
|
|
142
|
+
* Converts a locator to the node value format used in yarn info output
|
|
143
|
+
* @param {string} locator - e.g. "express@npm:4.17.1"
|
|
144
|
+
* @returns {string} The node value, same as locator for non-virtual
|
|
145
|
+
* @private
|
|
146
|
+
*/
|
|
147
|
+
#nodeValueFromLocator(locator) {
|
|
148
|
+
// Virtual locators: "@scope/name@virtual:hash#npm:version" → "@scope/name@npm:version"
|
|
149
|
+
const virtualMatch = Yarn_berry_processor.VIRTUAL_LOCATOR_PATTERN.exec(locator);
|
|
150
|
+
if (virtualMatch) {
|
|
151
|
+
return `${virtualMatch[1]}@npm:${virtualMatch[2]}`;
|
|
152
|
+
}
|
|
153
|
+
return locator;
|
|
154
|
+
}
|
|
155
|
+
/**
|
|
156
|
+
* Checks if a node is in the reachable set by matching its value against reachable locators
|
|
157
|
+
* @param {string} depName - The node value (e.g. "express@npm:4.17.1")
|
|
158
|
+
* @param {Set<string>} reachable - Set of reachable locators
|
|
159
|
+
* @returns {boolean}
|
|
160
|
+
* @private
|
|
161
|
+
*/
|
|
162
|
+
#isReachableNode(depName, reachable) {
|
|
163
|
+
if (reachable.has(depName)) {
|
|
164
|
+
return true;
|
|
165
|
+
}
|
|
166
|
+
// Check if any reachable locator resolves to this node value
|
|
167
|
+
for (const locator of reachable) {
|
|
168
|
+
if (this.#nodeValueFromLocator(locator) === depName) {
|
|
169
|
+
return true;
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
return false;
|
|
173
|
+
}
|
|
95
174
|
/**
|
|
96
175
|
* Creates a PackageURL from a dependency locator
|
|
97
176
|
* @param {string} locator - The dependency locator
|
|
@@ -15,13 +15,16 @@ export default class Python_controller {
|
|
|
15
15
|
realEnvironment: boolean;
|
|
16
16
|
pathToRequirements: string;
|
|
17
17
|
options: {};
|
|
18
|
+
parser: Promise<import("web-tree-sitter").Parser>;
|
|
19
|
+
requirementsQuery: Promise<import("web-tree-sitter").Query>;
|
|
20
|
+
pinnedVersionQuery: Promise<import("web-tree-sitter").Query>;
|
|
18
21
|
prepareEnvironment(): void;
|
|
19
22
|
/**
|
|
20
23
|
*
|
|
21
24
|
* @param {boolean} includeTransitive - whether to return include in returned object transitive dependencies or not
|
|
22
|
-
* @return {[DependencyEntry]}
|
|
25
|
+
* @return {Promise<[DependencyEntry]>}
|
|
23
26
|
*/
|
|
24
|
-
getDependencies(includeTransitive: boolean): [DependencyEntry]
|
|
27
|
+
getDependencies(includeTransitive: boolean): Promise<[DependencyEntry]>;
|
|
25
28
|
#private;
|
|
26
29
|
}
|
|
27
30
|
export type DependencyEntry = {
|
|
@@ -2,6 +2,7 @@ import fs from "node:fs";
|
|
|
2
2
|
import path from 'node:path';
|
|
3
3
|
import os, { EOL } from "os";
|
|
4
4
|
import { environmentVariableIsPopulated, getCustom, invokeCommand } from "../tools.js";
|
|
5
|
+
import { getParser, getRequirementQuery, getPinnedVersionQuery } from './requirements_parser.js';
|
|
5
6
|
function getPipFreezeOutput() {
|
|
6
7
|
try {
|
|
7
8
|
return environmentVariableIsPopulated("TRUSTIFY_DA_PIP_FREEZE") ? new Buffer.from(process.env["TRUSTIFY_DA_PIP_FREEZE"], 'base64').toString('ascii') : invokeCommand(this.pathToPipBin, ['freeze', '--all']).toString();
|
|
@@ -26,6 +27,9 @@ export default class Python_controller {
|
|
|
26
27
|
realEnvironment;
|
|
27
28
|
pathToRequirements;
|
|
28
29
|
options;
|
|
30
|
+
parser;
|
|
31
|
+
requirementsQuery;
|
|
32
|
+
pinnedVersionQuery;
|
|
29
33
|
/**
|
|
30
34
|
* Constructor to create new python controller instance to interact with pip package manager
|
|
31
35
|
* @param {boolean} realEnvironment - whether to use real environment supplied by client or to create virtual environment
|
|
@@ -41,6 +45,9 @@ export default class Python_controller {
|
|
|
41
45
|
this.prepareEnvironment();
|
|
42
46
|
this.pathToRequirements = pathToRequirements;
|
|
43
47
|
this.options = options;
|
|
48
|
+
this.parser = getParser();
|
|
49
|
+
this.requirementsQuery = getRequirementQuery();
|
|
50
|
+
this.pinnedVersionQuery = getPinnedVersionQuery();
|
|
44
51
|
}
|
|
45
52
|
prepareEnvironment() {
|
|
46
53
|
if (!this.realEnvironment) {
|
|
@@ -86,6 +93,23 @@ export default class Python_controller {
|
|
|
86
93
|
}
|
|
87
94
|
}
|
|
88
95
|
}
|
|
96
|
+
/**
|
|
97
|
+
* Parse the requirements.txt file using tree-sitter and return structured requirement data.
|
|
98
|
+
* @return {Promise<{name: string, version: string|null}[]>}
|
|
99
|
+
*/
|
|
100
|
+
async #parseRequirements() {
|
|
101
|
+
const content = fs.readFileSync(this.pathToRequirements).toString();
|
|
102
|
+
const tree = (await this.parser).parse(content);
|
|
103
|
+
return Promise.all((await this.requirementsQuery).matches(tree.rootNode).map(async (match) => {
|
|
104
|
+
const reqNode = match.captures.find(c => c.name === 'req').node;
|
|
105
|
+
const name = match.captures.find(c => c.name === 'name').node.text;
|
|
106
|
+
const versionMatches = (await this.pinnedVersionQuery).matches(reqNode);
|
|
107
|
+
const version = versionMatches.length > 0
|
|
108
|
+
? versionMatches[0].captures.find(c => c.name === 'version').node.text
|
|
109
|
+
: null;
|
|
110
|
+
return { name, version };
|
|
111
|
+
}));
|
|
112
|
+
}
|
|
89
113
|
#decideIfWindowsOrLinuxPath(fileName) {
|
|
90
114
|
if (os.platform() === "win32") {
|
|
91
115
|
return fileName + ".exe";
|
|
@@ -97,9 +121,9 @@ export default class Python_controller {
|
|
|
97
121
|
/**
|
|
98
122
|
*
|
|
99
123
|
* @param {boolean} includeTransitive - whether to return include in returned object transitive dependencies or not
|
|
100
|
-
* @return {[DependencyEntry]}
|
|
124
|
+
* @return {Promise<[DependencyEntry]>}
|
|
101
125
|
*/
|
|
102
|
-
getDependencies(includeTransitive) {
|
|
126
|
+
async getDependencies(includeTransitive) {
|
|
103
127
|
let startingTime;
|
|
104
128
|
let endingTime;
|
|
105
129
|
if (process.env["TRUSTIFY_DA_DEBUG"] === "true") {
|
|
@@ -124,10 +148,10 @@ export default class Python_controller {
|
|
|
124
148
|
if (matchManifestVersions === "true") {
|
|
125
149
|
throw new Error("Conflicting settings, TRUSTIFY_DA_PYTHON_INSTALL_BEST_EFFORTS=true can only work with MATCH_MANIFEST_VERSIONS=false");
|
|
126
150
|
}
|
|
127
|
-
this.#installingRequirementsOneByOne();
|
|
151
|
+
await this.#installingRequirementsOneByOne();
|
|
128
152
|
}
|
|
129
153
|
}
|
|
130
|
-
let dependencies = this.#getDependenciesImpl(includeTransitive);
|
|
154
|
+
let dependencies = await this.#getDependenciesImpl(includeTransitive);
|
|
131
155
|
this.#cleanEnvironment();
|
|
132
156
|
if (process.env["TRUSTIFY_DA_DEBUG"] === "true") {
|
|
133
157
|
endingTime = new Date();
|
|
@@ -137,16 +161,14 @@ export default class Python_controller {
|
|
|
137
161
|
}
|
|
138
162
|
return dependencies;
|
|
139
163
|
}
|
|
140
|
-
#installingRequirementsOneByOne() {
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
requirementsRows.filter((line) => !line.trim().startsWith("#")).filter((line) => line.trim() !== "").forEach((dependency) => {
|
|
144
|
-
let dependencyName = getDependencyName(dependency);
|
|
164
|
+
async #installingRequirementsOneByOne() {
|
|
165
|
+
const requirements = await this.#parseRequirements();
|
|
166
|
+
requirements.forEach(({ name }) => {
|
|
145
167
|
try {
|
|
146
|
-
invokeCommand(this.pathToPipBin, ['install',
|
|
168
|
+
invokeCommand(this.pathToPipBin, ['install', name]);
|
|
147
169
|
}
|
|
148
170
|
catch (error) {
|
|
149
|
-
throw new Error(`Failed in best-effort installing ${
|
|
171
|
+
throw new Error(`Failed in best-effort installing ${name} in virtual python environment`, { cause: error });
|
|
150
172
|
}
|
|
151
173
|
});
|
|
152
174
|
}
|
|
@@ -163,34 +185,26 @@ export default class Python_controller {
|
|
|
163
185
|
}
|
|
164
186
|
}
|
|
165
187
|
}
|
|
166
|
-
#getDependenciesImpl(includeTransitive) {
|
|
167
|
-
let dependencies =
|
|
188
|
+
async #getDependenciesImpl(includeTransitive) {
|
|
189
|
+
let dependencies = [];
|
|
168
190
|
let usePipDepTree = getCustom("TRUSTIFY_DA_PIP_USE_DEP_TREE", "false", this.options);
|
|
169
|
-
let freezeOutput;
|
|
170
|
-
let lines;
|
|
171
|
-
let depNames;
|
|
172
|
-
let pipShowOutput;
|
|
173
191
|
let allPipShowDeps;
|
|
174
192
|
let pipDepTreeJsonArrayOutput;
|
|
175
193
|
if (usePipDepTree !== "true") {
|
|
176
|
-
freezeOutput = getPipFreezeOutput.call(this);
|
|
177
|
-
lines = freezeOutput.split(EOL);
|
|
178
|
-
depNames = lines.map(line => getDependencyName(line));
|
|
194
|
+
const freezeOutput = getPipFreezeOutput.call(this);
|
|
195
|
+
const lines = freezeOutput.split(EOL);
|
|
196
|
+
const depNames = lines.map(line => getDependencyName(line));
|
|
197
|
+
const pipShowOutput = getPipShowOutput.call(this, depNames);
|
|
198
|
+
allPipShowDeps = pipShowOutput.split(EOL + "---" + EOL);
|
|
179
199
|
}
|
|
180
200
|
else {
|
|
181
201
|
pipDepTreeJsonArrayOutput = getDependencyTreeJsonFromPipDepTree(this.pathToPipBin, this.pathToPythonBin);
|
|
182
202
|
}
|
|
183
|
-
if (usePipDepTree !== "true") {
|
|
184
|
-
pipShowOutput = getPipShowOutput.call(this, depNames);
|
|
185
|
-
allPipShowDeps = pipShowOutput.split(EOL + "---" + EOL);
|
|
186
|
-
}
|
|
187
|
-
//debug
|
|
188
|
-
// pipShowOutput = "alternative pip show output goes here for debugging"
|
|
189
203
|
let matchManifestVersions = getCustom("MATCH_MANIFEST_VERSIONS", "true", this.options);
|
|
190
|
-
let
|
|
204
|
+
let parsedRequirements = await this.#parseRequirements();
|
|
191
205
|
let CachedEnvironmentDeps = {};
|
|
192
206
|
if (usePipDepTree !== "true") {
|
|
193
|
-
allPipShowDeps.forEach(
|
|
207
|
+
allPipShowDeps.forEach(record => {
|
|
194
208
|
let dependencyName = getDependencyNameShow(record).toLowerCase();
|
|
195
209
|
CachedEnvironmentDeps[dependencyName] = record;
|
|
196
210
|
CachedEnvironmentDeps[dependencyName.replace("-", "_")] = record;
|
|
@@ -210,40 +224,24 @@ export default class Python_controller {
|
|
|
210
224
|
CachedEnvironmentDeps[packageName.replace("_", "-")] = pipDepTreeEntryForCache;
|
|
211
225
|
});
|
|
212
226
|
}
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
if (matchManifestVersions === "true") {
|
|
216
|
-
let dependencyName;
|
|
217
|
-
let manifestVersion;
|
|
227
|
+
parsedRequirements.forEach(({ name: depName, version: manifestVersion }) => {
|
|
228
|
+
if (matchManifestVersions === "true" && manifestVersion != null) {
|
|
218
229
|
let installedVersion;
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
manifestVersion = dep.substring(doubleEqualSignPosition + 2).trim();
|
|
223
|
-
if (manifestVersion.includes("#")) {
|
|
224
|
-
let hashCharIndex = manifestVersion.indexOf("#");
|
|
225
|
-
manifestVersion = manifestVersion.substring(0, hashCharIndex);
|
|
230
|
+
if (CachedEnvironmentDeps[depName.toLowerCase()] !== undefined) {
|
|
231
|
+
if (usePipDepTree !== "true") {
|
|
232
|
+
installedVersion = getDependencyVersion(CachedEnvironmentDeps[depName.toLowerCase()]);
|
|
226
233
|
}
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
if (CachedEnvironmentDeps[dependencyName.toLowerCase()] !== undefined) {
|
|
230
|
-
if (usePipDepTree !== "true") {
|
|
231
|
-
installedVersion = getDependencyVersion(CachedEnvironmentDeps[dependencyName.toLowerCase()]);
|
|
232
|
-
}
|
|
233
|
-
else {
|
|
234
|
-
installedVersion = CachedEnvironmentDeps[dependencyName.toLowerCase()].version;
|
|
235
|
-
}
|
|
234
|
+
else {
|
|
235
|
+
installedVersion = CachedEnvironmentDeps[depName.toLowerCase()].version;
|
|
236
236
|
}
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
}
|
|
237
|
+
}
|
|
238
|
+
if (installedVersion) {
|
|
239
|
+
if (manifestVersion.trim() !== installedVersion.trim()) {
|
|
240
|
+
throw new Error(`Can't continue with analysis - versions mismatch for dependency name ${depName} (manifest version=${manifestVersion}, installed version=${installedVersion}).If you want to allow version mismatch for analysis between installed and requested packages, set environment variable/setting MATCH_MANIFEST_VERSIONS=false`);
|
|
241
241
|
}
|
|
242
242
|
}
|
|
243
243
|
}
|
|
244
|
-
let path =
|
|
245
|
-
let depName = getDependencyName(dep);
|
|
246
|
-
//array to track a path for each branch in the dependency tree
|
|
244
|
+
let path = [];
|
|
247
245
|
path.push(depName.toLowerCase());
|
|
248
246
|
bringAllDependencies(dependencies, depName, CachedEnvironmentDeps, includeTransitive, path, usePipDepTree);
|
|
249
247
|
});
|
|
@@ -347,11 +345,11 @@ function bringAllDependencies(dependencies, dependencyName, cachedEnvironmentDep
|
|
|
347
345
|
version = record.version;
|
|
348
346
|
directDeps = record.dependencies;
|
|
349
347
|
}
|
|
350
|
-
let targetDeps =
|
|
348
|
+
let targetDeps = [];
|
|
351
349
|
let entry = { "name": depName, "version": version, "dependencies": [] };
|
|
352
350
|
dependencies.push(entry);
|
|
353
351
|
directDeps.forEach((dep) => {
|
|
354
|
-
let depArray =
|
|
352
|
+
let depArray = [];
|
|
355
353
|
// to avoid infinite loop, check if the dependency not already on current path, before going recursively resolving its dependencies.
|
|
356
354
|
if (!path.includes(dep.toLowerCase())) {
|
|
357
355
|
// send to recurrsion the path + the current dep
|
|
@@ -3,6 +3,7 @@ declare namespace _default {
|
|
|
3
3
|
export { validateLockFile };
|
|
4
4
|
export { provideComponent };
|
|
5
5
|
export { provideStack };
|
|
6
|
+
export { readLicenseFromManifest };
|
|
6
7
|
}
|
|
7
8
|
export default _default;
|
|
8
9
|
export type DependencyEntry = {
|
|
@@ -23,13 +24,19 @@ declare function validateLockFile(): boolean;
|
|
|
23
24
|
* Provide content and content type for python-pip component analysis.
|
|
24
25
|
* @param {string} manifest - path to requirements.txt for component report
|
|
25
26
|
* @param {{}} [opts={}] - optional various options to pass along the application
|
|
26
|
-
* @returns {Provided}
|
|
27
|
+
* @returns {Promise<Provided>}
|
|
27
28
|
*/
|
|
28
|
-
declare function provideComponent(manifest: string, opts?: {}
|
|
29
|
+
declare function provideComponent(manifest: string, opts?: {}): Promise<Provided>;
|
|
29
30
|
/**
|
|
30
31
|
* Provide content and content type for python-pip stack analysis.
|
|
31
32
|
* @param {string} manifest - the manifest path or name
|
|
32
33
|
* @param {{}} [opts={}] - optional various options to pass along the application
|
|
33
|
-
* @returns {Provided}
|
|
34
|
+
* @returns {Promise<Provided>}
|
|
34
35
|
*/
|
|
35
|
-
declare function provideStack(manifest: string, opts?: {}
|
|
36
|
+
declare function provideStack(manifest: string, opts?: {}): Promise<Provided>;
|
|
37
|
+
/**
|
|
38
|
+
* Python requirements.txt has no standard license field
|
|
39
|
+
* @param {string} manifestPath - path to requirements.txt
|
|
40
|
+
* @returns {string|null}
|
|
41
|
+
*/
|
|
42
|
+
declare function readLicenseFromManifest(manifestPath: string): string | null;
|