-
Notifications
You must be signed in to change notification settings - Fork 2
/
copyright-header.ts
289 lines (261 loc) · 9 KB
/
copyright-header.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
/******************************************************************************
*
* Copyright (c) 2019-2023 Fraunhofer IOSB-INA Lemgo,",
* eine rechtlich nicht selbstaendige Einrichtung der Fraunhofer-Gesellschaft",
* zur Foerderung der angewandten Forschung e.V.",
*
*****************************************************************************/
import fs from 'fs';
import * as $path from 'path';
import readline from 'readline';
import os from 'os';
const jsHeader = [
'/******************************************************************************',
' *',
' * Copyright (c) 2019-2024 Fraunhofer IOSB-INA Lemgo,',
' * eine rechtlich nicht selbstaendige Einrichtung der Fraunhofer-Gesellschaft',
' * zur Foerderung der angewandten Forschung e.V.',
' *',
' *****************************************************************************/',
'',
];
const htmlHeader = [
'<!-----------------------------------------------------------------------------',
' !',
' ! Copyright (c) 2019-2024 Fraunhofer IOSB-INA Lemgo,',
' ! eine rechtlich nicht selbstaendige Einrichtung der Fraunhofer-Gesellschaft',
' ! zur Foerderung der angewandten Forschung e.V.',
' !',
' !---------------------------------------------------------------------------->',
'',
];
checkFilesAsync([
'./projects/aas-portal/src',
'./projects/aas-server/src',
'./projects/aas-lib/src',
'./projects/aas-core/src',
]);
async function checkFilesAsync(dirs: string[]): Promise<void> {
const files: string[] = [];
for (const dir of dirs) {
await traverseFilesAsync(dir, ['.ts', '.js', '.html', '.css', '.scss'], files);
}
for (const file of files) {
const extension = $path.extname(file).toLowerCase();
const text = await readFileAsync(file);
if (hasValidCopyrightHeader(text, extension)) {
console.log(`${file}: header is Ok`);
} else {
const removed = removeCopyrightHeader(text, extension);
insertCopyrightHeader(text, extension);
await writeFileAsync(file, text);
console.log(`${file}: ${removed ? 'header updated' : 'header inserted'}`);
}
}
async function traverseFilesAsync(dir: string, extensions: string[], files: string[]): Promise<void> {
const entries = await fs.promises.readdir(dir);
for (const entry of entries) {
const path = $path.join(dir, entry);
const stat = fs.statSync(path);
if (stat.isFile() && matchExtensions(path, extensions)) {
files.push(path);
} else if (stat.isDirectory()) {
await traverseFilesAsync(path, extensions, files);
}
}
}
function matchExtensions(file: string, extensions: string[]): boolean {
const extension = $path.extname(file).toLowerCase();
return extensions.indexOf(extension) >= 0;
}
async function readFileAsync(path: string): Promise<string[]> {
const text: string[] = [];
return await new Promise((result, reject) => {
const file = readline.createInterface({
input: fs.createReadStream(path),
output: process.stdout,
terminal: false,
});
file.on('line', line => {
text.push(line);
});
file.on('error', error => {
reject(error);
});
file.on('close', () => {
result(text);
});
});
}
/**
* Determines wether the specified text has a valid copyright header.
* @param {string[]} text The current text.
* @param {string} extension The file type.
* @returns `true` if the existing header is valid.
*/
function hasValidCopyrightHeader(text: string[], extension: string): boolean {
switch (extension) {
case '.ts':
case '.js':
case '.css':
case '.scss':
return hasValidJsCopyrightHeader(text);
case '.html':
return hasValidHtmlCopyrightHeader(text);
default:
return true;
}
}
/**
* Determines wether the specified text has a valid copyright header.
* @param {string[]} text The current text.
* @returns `true` if the existing header is valid.
*/
function hasValidJsCopyrightHeader(text: string[]): boolean {
let result = Array.isArray(text) && text.length >= jsHeader.length;
for (let i = 0; i < jsHeader.length; i++) {
if (jsHeader[i] !== text[i]) {
result = false;
break;
}
}
return result;
}
/**
* Determines wether the specified text has a valid copyright header.
* @param {string[]} text The current text.
* @returns `true` if the existing header is valid.
*/
function hasValidHtmlCopyrightHeader(text: string[]): boolean {
let result = Array.isArray(text) && text.length >= htmlHeader.length;
for (let i = 0; i < htmlHeader.length; i++) {
if (htmlHeader[i] !== text[i]) {
result = false;
break;
}
}
return result;
}
/**
* Removes an existing header from the specified text.
* @param {string} text The current text.
* @returns `true` if an existing header has been removed.
*/
function removeCopyrightHeader(text: string[], extension: string): boolean {
switch (extension) {
case '.ts':
case '.js':
case '.css':
case '.scss':
return removeJsCopyrightHeader(text);
case '.html':
return removeHtmlCopyrightHeader(text);
default:
return false;
}
}
/**
* Removes an existing header from the specified text.
* @param {string} text The current text.
* @returns `true` if an existing header has been removed.
*/
function removeJsCopyrightHeader(text: string[]): boolean {
let count = 0;
let start = false;
let end = false;
for (let line of text) {
line = line.trim();
if (line.length === 0) {
++count;
} else if (!start && !end && line.startsWith('/**********')) {
++count;
start = true;
} else if (start && !end && line.startsWith('*')) {
++count;
} else if (start && !end && line.endsWith('**********/')) {
++count;
end = true;
} else {
break;
}
}
if (count > 0) {
text.splice(0, count);
}
return count > 0;
}
/**
* Removes an existing header from the specified text.
* @param {string} text The current text.
* @returns `true` if an existing header has been removed.
*/
function removeHtmlCopyrightHeader(text: string[]): boolean {
let count = 0;
let start = false;
let end = false;
for (let line of text) {
line = line.trim();
if (line.length === 0) {
++count;
} else if (!start && !end && line.startsWith('<!-------')) {
++count;
start = true;
} else if (start && !end && line.startsWith('!')) {
++count;
} else if (start && !end && line.endsWith('--------->')) {
++count;
end = true;
} else {
break;
}
}
if (count > 0) {
text.splice(0, count);
}
return count > 0;
}
/**
* Inserts a copyright header.
* @param {string[]} text The text.
* @param {string} extension The file type.
*/
function insertCopyrightHeader(text: string[], extension: string): void {
switch (extension) {
case '.ts':
case '.js':
case '.css':
case '.scss':
insertJsCopyrightHeader(text);
break;
case '.html':
insertHtmlCopyrightHeader(text);
break;
}
}
/**
* Inserts a copyright header.
* @param {string[]} text The text.
*/
function insertJsCopyrightHeader(text: string[]): void {
for (let i = 0; i < jsHeader.length; i++) {
text.splice(i, 0, jsHeader[i]);
}
}
/**
* Inserts a copyright header.
* @param {string[]} text The text.
*/
function insertHtmlCopyrightHeader(text: string[]): void {
for (let i = 0; i < htmlHeader.length; i++) {
text.splice(i, 0, htmlHeader[i]);
}
}
/**
* Write the text to the specified file.
* @param {string} file The destination file.
* @param {string[]} text The text;
*/
async function writeFileAsync(file: string, text: string[]) {
await fs.promises.writeFile(file, text.join(os.EOL));
}
}