github-desktop/script/licenses/update-license-dump.ts

59 lines
1.8 KiB
TypeScript
Raw Normal View History

import * as path from 'path'
import { promisify } from 'util'
import { licenseOverrides } from './license-overrides'
import _legalEagle from 'legal-eagle'
2019-01-16 16:16:15 +00:00
const legalEagle = promisify(_legalEagle)
import { getVersion } from '../../app/package-info'
import { readFile, writeFile } from 'fs/promises'
export async function updateLicenseDump(
projectRoot: string,
outRoot: string
): Promise<void> {
const appRoot = path.join(projectRoot, 'app')
const outPath = path.join(outRoot, 'static', 'licenses.json')
2019-01-16 16:16:15 +00:00
let summary = await legalEagle({
path: appRoot,
overrides: licenseOverrides,
omitPermissive: true,
})
if (Object.keys(summary).length > 0) {
let licensesMessage = ''
for (const key in summary) {
const license = summary[key]
licensesMessage += `${key} (${license.repository}): ${license.license}\n`
}
const overridesPath = path.join(__dirname, 'license-overrides.ts')
const message = `The following dependencies have unknown or non-permissive licenses. Check it out and update ${overridesPath} if appropriate:\n${licensesMessage}`
throw new Error(message)
}
2019-01-16 16:16:15 +00:00
summary = await legalEagle({
path: appRoot,
overrides: licenseOverrides,
})
// legal-eagle still chooses to ignore the LICENSE at the root
// this injects the current license and pins the source URL before we
// dump the JSON file to disk
const licenseSource = path.join(projectRoot, 'LICENSE')
const licenseText = await readFile(licenseSource, { encoding: 'utf-8' })
const appVersion = getVersion()
summary[`desktop@${appVersion}`] = {
repository: 'https://github.com/desktop/desktop',
license: 'MIT',
source: `https://github.com/desktop/desktop/blob/release-${appVersion}/LICENSE`,
sourceText: licenseText,
}
await writeFile(outPath, JSON.stringify(summary), { encoding: 'utf8' })
}