1 |
const { existsSync } = require('fs'); |
2 |
const fs = require('fs/promises'); |
3 |
const path = require('path'); |
4 |
|
5 |
const sourceDirectory = path.join(__dirname, existsSync(path.join(__dirname, "src")) ? "." : "../src"); |
6 |
|
7 |
const licenseComment = `/* |
8 |
* This file is part of SudoBot. |
9 |
* |
10 |
* Copyright (C) 2021-2023 OSN Developers. |
11 |
* |
12 |
* SudoBot is free software; you can redistribute it and/or modify it |
13 |
* under the terms of the GNU Affero General Public License as published by |
14 |
* the Free Software Foundation, either version 3 of the License, or |
15 |
* (at your option) any later version. |
16 |
* |
17 |
* SudoBot is distributed in the hope that it will be useful, but |
18 |
* WITHOUT ANY WARRANTY; without even the implied warranty of |
19 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
20 |
* GNU Affero General Public License for more details. |
21 |
* |
22 |
* You should have received a copy of the GNU Affero General Public License |
23 |
* along with SudoBot. If not, see <https://www.gnu.org/licenses/>. |
24 |
*/`; |
25 |
|
26 |
async function addLicenseComment(directory = sourceDirectory) { |
27 |
const files = await fs.readdir(directory); |
28 |
|
29 |
for await (const file of files) { |
30 |
const filePath = path.join(directory, file); |
31 |
const stat = await fs.lstat(filePath); |
32 |
|
33 |
if (stat.isDirectory()) { |
34 |
await addLicenseComment(filePath); |
35 |
continue; |
36 |
} |
37 |
|
38 |
if (!file.endsWith(".ts")) { |
39 |
continue; |
40 |
} |
41 |
|
42 |
const fileContents = await fs.readFile(filePath, { |
43 |
encoding: 'utf-8', |
44 |
}); |
45 |
|
46 |
if (fileContents.trim().startsWith('/*')) |
47 |
continue; |
48 |
|
49 |
console.log("Modifying: ", filePath); |
50 |
await fs.writeFile(filePath, `${licenseComment}\n\n${fileContents}`); |
51 |
} |
52 |
} |
53 |
|
54 |
addLicenseComment(); |