-
Notifications
You must be signed in to change notification settings - Fork 96
/
license_helper.pl
executable file
·136 lines (114 loc) · 3.65 KB
/
license_helper.pl
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
#!/usr/bin/perl
# Copyright (c) 2023, 2024 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# http://www.eclipse.org/legal/epl-2.0
#
# SPDX-License-Identifier: EPL-2.0
use strict;
use utf8;
use File::Copy;
require File::Find;
binmode(STDOUT, ":encoding(utf8)");
binmode(STDIN, ":encoding(utf8)");
binmode(STDERR, ":encoding(utf8)");
my $tmp_path = '/tmp/.jifa_licence_tmp';
my $license_1 =
'/********************************************************************************
* Copyright (c) 2024 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
********************************************************************************/';
my $license_2 =
'# Copyright (c) 2024 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# http://www.eclipse.org/legal/epl-2.0
#
# SPDX-License-Identifier: EPL-2.0';
my $license_3 =
'<!--
Copyright (c) 2024 Contributors to the Eclipse Foundation
See the NOTICE file(s) distributed with this work for additional
information regarding copyright ownership.
This program and the accompanying materials are made available under the
terms of the Eclipse Public License 2.0 which is available at
http://www.eclipse.org/legal/epl-2.0
SPDX-License-Identifier: EPL-2.0
-->';
sub prepend_licence {
my $name = shift;
my $license = shift;
my $target_line = shift;
my $line = 1;
open(FH, "<$name") or die "Cannot open $name$!";
open(FH_TMP, ">$tmp_path") or die "Cannot open $tmp_path: $!";
while(<FH>) {
if ($_ =~ /SPDX-License-Identifier: EPL-2.0/) {
close(FH_TMP);
close(FH);
unlink($tmp_path);
return;
}
if ($line == $target_line) {
print FH_TMP "$license\n";
}
$line++;
print FH_TMP $_;
}
close(FH_TMP);
close(FH);
unlink($name);
move($tmp_path, $name);
}
sub callback {
unless (-d) {
my $dir = $File::Find::dir;
my $path = $File::Find::name;
my $name = $_;
if ($dir =~ /\.git/ ||
$dir =~ /node_modules/ ||
$dir =~ /.build/ ||
$dir =~ /.gradle/ ||
$dir =~ /.vscode/ ||
$dir =~ /.idea/ ||
$dir =~ /resources/ ||
$name eq '.gitignore' ||
$name eq 'auto-imports.d.ts' ||
$name eq 'components.d.ts') {
return;
}
if ($name =~ /\.java\z/ || $name =~ /\.gradle\z/ || $name =~ /\.ts\z/ || $name =~ /\.ts\z/) {
prepend_licence($name, $license_1, 1);
} elsif ($name =~ /\.xml\z/) {
# skip first line
prepend_licence($name, $license_3, 2);
} elsif ($name =~ /\.sh\z/) {
# skip first line
prepend_licence($name, $license_2, 2);
} elsif ($name =~ /\.yml\z/ || $name =~ /.yaml\z/) {
prepend_licence($name, $license_2, 1);
} elsif ($name =~ /\.vue\z/) {
prepend_licence($name, $license_3, 1);
} else {
print "Skip $path\n"
}
};
}
my @recursiveFolder = qw(.);
File::Find::find(\&callback, @recursiveFolder);