-
Notifications
You must be signed in to change notification settings - Fork 4
/
attach_license_header.js
71 lines (64 loc) · 1.78 KB
/
attach_license_header.js
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
/*
* Copyright (c) 2020-2024 IBA Group.
*
* This program and the accompanying materials are made available under the terms of the
* Eclipse Public License v2.0 which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-v20.html
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBA Group
* Zowe Community
*/
const path = require('path')
const fs = require('fs')
const licenseHeader =
`/*
* Copyright (c) 2020-2024 IBA Group.
*
* This program and the accompanying materials are made available under the terms of the
* Eclipse Public License v2.0 which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-v20.html
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBA Group
* Zowe Community
*/
`
const srcPath = path.resolve(__dirname, 'src', 'main')
const testPath = path.resolve(__dirname, 'src', 'test')
let sources = [];
const walkThroughDir = (dir) => {
fs
.readdirSync(dir)
.forEach((source) => {
const absPath = path.join(dir, source)
if (fs.statSync(absPath).isDirectory()) {
return walkThroughDir(absPath)
} else {
if (!absPath.includes('resources')) {
return sources.push(absPath)
}
}
})
}
walkThroughDir(srcPath)
walkThroughDir(testPath)
sources.forEach((source) => {
fs.readFile(source, 'utf8', (err, fileData) => {
if (err) {
console.error(err)
return
}
const lines = fileData.split('\n')
if (!lines[1] || !lines[1].includes('* This program and the accompanying materials are made available under the terms of the')) {
const newFileData = `${licenseHeader}${fileData}`
fs.writeFile(source, newFileData, (err) => {
if (err) console.log(err)
})
}
})
})