Skip to content

Commit

Permalink
Feat: 3rd-party licenses (#90)
Browse files Browse the repository at this point in the history
fixes #34

---------

Signed-off-by: Jan Kowalleck <jan.kowalleck@gmail.com>
  • Loading branch information
jkowalleck committed May 15, 2024
1 parent 128de7e commit ea6e4ba
Show file tree
Hide file tree
Showing 3 changed files with 151 additions and 97 deletions.
3 changes: 3 additions & 0 deletions tools/_tmp/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# this is a re-usable temp-dir
*
!/.gitignore
97 changes: 0 additions & 97 deletions tools/generate-components-licenses.mjs

This file was deleted.

148 changes: 148 additions & 0 deletions tools/write-3rd-party-licenses.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,148 @@
/*!
This file is part of CycloneDX SBOM plugin for yarn.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
SPDX-License-Identifier: Apache-2.0
Copyright (c) OWASP Foundation. All Rights Reserved.
*/

/*!
this tool is not for public use.
It's sole existence is tailored to the needs of this project... not general purpose, yet...
*/

const { spawnSync } = require('child_process')
const {
readFileSync,
existsSync,
mkdtempSync,
openSync,
writeSync
} = require('fs')
const { globSync } = require('fast-glob')

const {
join,
resolve,
dirname
} = require('path')

const projectRoot = join(__dirname, '..')
const tempDir = mkdtempSync(join(__dirname, '_tmp', 'w3pl'))

const metaFile = join(projectRoot, 'bundles', '@yarnpkg', 'plugin-cyclonedx.meta.json')
const metaDings = 'bundles/@yarnpkg/plugin-cyclonedx.js'

const outputFile = join(projectRoot, 'bundles', '@yarnpkg', 'plugin-cyclonedx.LICENSE.txt')

const metaData = JSON.parse(readFileSync(metaFile))

// -----

const unzipped = {}

/**
* @param {string} filePath
* @return {[undefined, undefined]|[string,*]}
*/
const getPackageMP = function (filePath) {
let searchRoot = projectRoot
const zipMatch = /^(.+\.zip)[\\/](.+)$/.exec(filePath)
if (zipMatch) {
searchRoot = unzipped[zipMatch[1]]
if (!searchRoot) {
searchRoot = unzipped[zipMatch[1]] = mkdtempSync(join(tempDir, 'unz'))
const unz = spawnSync('unzip', [zipMatch[1], '-d', searchRoot])
if (unz.status !== 0) {
throw new Error(`something off with ${filePath}`)
}
}
filePath = join(searchRoot, zipMatch[2])
}
let cPath = dirname(filePath)
while (cPath.startsWith(searchRoot)) {
const pmPC = join(cPath, 'package.json')
if (existsSync(pmPC)) {
const pmD = JSON.parse(readFileSync(pmPC))
if (pmD.name) {
return [cPath, pmD]
}
}
cPath = dirname(cPath)
}
return [undefined, undefined]
}

// ----

const packageMPs = new Map()

for (const [filePath, { bytesInOutput }] of Object.entries(metaData.outputs[metaDings].inputs)) {
if (bytesInOutput <= 0) {
continue
}
const [packageMP, PackageMD] = getPackageMP(resolve(projectRoot, filePath))
if (!packageMP) {
console.warn('ERROR: missing MP for:', filePath)
continue
}
if (packageMPs.has(packageMP)) {
continue
}
packageMPs.set(packageMP, PackageMD)
}

const tpLicenses = Array.from(
packageMPs.entries(),
function ([packageMP, packageMD]) {
return packageMP === projectRoot
? undefined
: {
name: packageMD.name,
version: packageMD.version,
homepage: packageMD.homepage || undefined,
licenseDeclared: packageMD.license,
licenseFiles: [
...globSync('LICEN{S,C}E*', { onlyFiles: true, caseSensitiveMatch: false, cwd: packageMP }).sort((a, b) => a.localeCompare(b)),
...globSync('NOTICE', { onlyFiles: true, caseSensitiveMatch: true, cwd: packageMP })
]
}
}
).filter(
i => i !== undefined
).sort(
(a, b) => `${a.name}@${a.version}`.localeCompare(`${b.name}@${b.version}`)
)

const outputFH = openSync(outputFile, 'w')

writeSync(outputFH, readFileSync(join(projectRoot, 'LICENSE')))
writeSync(outputFH, '\n')
writeSync(outputFH, readFileSync(join(projectRoot, 'NOTICE')))
writeSync(outputFH, '\n')
writeSync(outputFH, '\n\n----\n\n' +
'The @cyclonedx/yarn-plugin-cyclonedx distributions bundle several libraries that are compatibly licensed.\n' +
'We list these here.\n')
for (const tpLicense of tpLicenses) {
writeSync(outputFH, '\n')
writeSync(outputFH, `Name: ${tpLicense.name} (${tpLicense.version})\n`)
if (tpLicense.homepage) {
writeSync(outputFH, `Homepage: ${tpLicense.homepage}\n`)
}
writeSync(outputFH, `License: ${tpLicense.licenseDeclared}\n`)
writeSync(outputFH, ` For details see: https://www.npmjs.com/package/${tpLicense.name}/v/${tpLicense.version}?activeTab=code\n`)
for (const licenseFile of tpLicense.licenseFiles) {
writeSync(outputFH, ` - File: ${licenseFile}\n`)
}
}

0 comments on commit ea6e4ba

Please sign in to comment.