chore: add license headers (#384)
* feat: check for license headers * add headers * formatpull/387/head
parent
95329dded1
commit
5914fb9f36
@ -0,0 +1,28 @@
|
|||||||
|
# Copyright 2019-2023 Tauri Programme within The Commons Conservancy
|
||||||
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
|
name: Check generated files
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
check:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: dorny/paths-filter@v2
|
||||||
|
id: filter
|
||||||
|
with:
|
||||||
|
list-files: shell
|
||||||
|
filters: |
|
||||||
|
added:
|
||||||
|
- added: '**'
|
||||||
|
- name: check header license on new files
|
||||||
|
if: ${{ steps.filter.outputs.added == 'true' }}
|
||||||
|
run: node .scripts/ci/check-license-header.js ${{ steps.filter.outputs.added_files }}
|
@ -0,0 +1,118 @@
|
|||||||
|
// Copyright 2019-2023 Tauri Programme within The Commons Conservancy
|
||||||
|
// SPDX-License-Identifier: Apache-2.0
|
||||||
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
|
import fs from "fs";
|
||||||
|
import path from "path";
|
||||||
|
import readline from "readline";
|
||||||
|
|
||||||
|
const header = `Copyright 2019-2023 Tauri Programme within The Commons Conservancy
|
||||||
|
SPDX-License-Identifier: Apache-2.0
|
||||||
|
SPDX-License-Identifier: MIT`;
|
||||||
|
const ignoredLicense = "// Copyright 2021 Jonas Kruckenberg";
|
||||||
|
|
||||||
|
const extensions = [".rs", ".js", ".ts", ".yml", ".swift", ".kt"];
|
||||||
|
const ignore = [
|
||||||
|
"target",
|
||||||
|
"templates",
|
||||||
|
"node_modules",
|
||||||
|
"gen",
|
||||||
|
"dist",
|
||||||
|
"dist-js",
|
||||||
|
".svelte-kit",
|
||||||
|
"api-iife.js",
|
||||||
|
];
|
||||||
|
|
||||||
|
async function checkFile(file) {
|
||||||
|
if (extensions.some((e) => file.endsWith(e))) {
|
||||||
|
const fileStream = fs.createReadStream(file);
|
||||||
|
const rl = readline.createInterface({
|
||||||
|
input: fileStream,
|
||||||
|
crlfDelay: Infinity,
|
||||||
|
});
|
||||||
|
|
||||||
|
let contents = ``;
|
||||||
|
let i = 0;
|
||||||
|
for await (let line of rl) {
|
||||||
|
// ignore empty lines, allow shebang, swift-tools-version and bundler license
|
||||||
|
if (
|
||||||
|
line.length === 0 ||
|
||||||
|
line.startsWith("#!") ||
|
||||||
|
line.startsWith("// swift-tools-version:") ||
|
||||||
|
line === ignoredLicense
|
||||||
|
) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
// strip comment marker
|
||||||
|
if (line.startsWith("// ")) {
|
||||||
|
line = line.substring(3);
|
||||||
|
} else if (line.startsWith("# ")) {
|
||||||
|
line = line.substring(2);
|
||||||
|
}
|
||||||
|
|
||||||
|
contents += line;
|
||||||
|
if (++i === 3) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
contents += "\n";
|
||||||
|
}
|
||||||
|
if (contents !== header) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
async function check(src) {
|
||||||
|
const missingHeader = [];
|
||||||
|
|
||||||
|
for (const entry of fs.readdirSync(src, { withFileTypes: true })) {
|
||||||
|
const p = path.join(src, entry.name);
|
||||||
|
|
||||||
|
if (entry.isSymbolicLink() || ignore.includes(entry.name)) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (entry.isDirectory()) {
|
||||||
|
const missing = await check(p);
|
||||||
|
missingHeader.push(...missing);
|
||||||
|
} else {
|
||||||
|
const isMissing = await checkFile(p);
|
||||||
|
if (isMissing) {
|
||||||
|
missingHeader.push(p);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return missingHeader;
|
||||||
|
}
|
||||||
|
|
||||||
|
const [_bin, _script, ...files] = process.argv;
|
||||||
|
|
||||||
|
if (files.length > 0) {
|
||||||
|
async function run() {
|
||||||
|
const missing = [];
|
||||||
|
for (const f of files) {
|
||||||
|
const isMissing = await checkFile(f);
|
||||||
|
if (isMissing) {
|
||||||
|
missing.push(f);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (missing.length > 0) {
|
||||||
|
console.log(missing.join("\n"));
|
||||||
|
process.exit(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
run();
|
||||||
|
} else {
|
||||||
|
check(path.resolve(new URL(import.meta.url).pathname, "../../..")).then(
|
||||||
|
(missing) => {
|
||||||
|
if (missing.length > 0) {
|
||||||
|
console.log(missing.join("\n"));
|
||||||
|
process.exit(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
@ -1,3 +1,7 @@
|
|||||||
|
// Copyright 2019-2023 Tauri Programme within The Commons Conservancy
|
||||||
|
// SPDX-License-Identifier: Apache-2.0
|
||||||
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
tauri_build::build()
|
tauri_build::build()
|
||||||
}
|
}
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue