1
+ /*
2
+ * Licensed to the Apache Software Foundation (ASF) under one
3
+ * or more contributor license agreements. See the NOTICE file
4
+ * distributed with this work for additional information
5
+ * regarding copyright ownership. The ASF licenses this file
6
+ * to you under the Apache License, Version 2.0 (the
7
+ * "License"); you may not use this file except in compliance
8
+ * with the License. You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing,
13
+ * software distributed under the License is distributed on an
14
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15
+ * KIND, either express or implied. See the License for the
16
+ * specific language governing permissions and limitations
17
+ * under the License.
18
+ */
19
+
20
+ const glob = require ( 'glob' ) ;
21
+ const fs = require ( 'fs' ) ;
22
+
23
+ const headerStr = `/*
24
+ * Licensed to the Apache Software Foundation (ASF) under one
25
+ * or more contributor license agreements. See the NOTICE file
26
+ * distributed with this work for additional information
27
+ * regarding copyright ownership. The ASF licenses this file
28
+ * to you under the Apache License, Version 2.0 (the
29
+ * "License"); you may not use this file except in compliance
30
+ * with the License. You may obtain a copy of the License at
31
+ *
32
+ * http://www.apache.org/licenses/LICENSE-2.0
33
+ *
34
+ * Unless required by applicable law or agreed to in writing,
35
+ * software distributed under the License is distributed on an
36
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
37
+ * KIND, either express or implied. See the License for the
38
+ * specific language governing permissions and limitations
39
+ * under the License.
40
+ */
41
+
42
+ ` ;
43
+
44
+ const lists = [
45
+ '../src/**/*.js' ,
46
+ '../build/*.js' ,
47
+ '../benchmark/src/*.js' ,
48
+ '../benchmark/src/gulpfile.js' ,
49
+ '../extension-src/**/*.js' ,
50
+ '../extension/**/*.js' ,
51
+ '../map/js/**/*.js' ,
52
+ '../test/build/**/*.js' ,
53
+ '../test/node/**/*.js' ,
54
+ '../test/ut/core/*.js' ,
55
+ '../test/ut/spe/*.js' ,
56
+ '../test/ut/ut.js' ,
57
+ '../test/*.js' ,
58
+ '../theme/*.js' ,
59
+ '../theme/tool/**/*.js' ,
60
+ '../echarts.all.js' ,
61
+ '../echarts.blank.js' ,
62
+ '../echarts.common.js' ,
63
+ '../echarts.simple.js' ,
64
+ '../index.js' ,
65
+ '../index.common.js' ,
66
+ '../index.simple.js'
67
+ ] ;
68
+
69
+ function extractLicense ( str ) {
70
+ str = str . trim ( ) ;
71
+ const regex = new RegExp ( '/\\*[\\S\\s]*?\\*/' , 'm' ) ;
72
+ const res = regex . exec ( str ) ;
73
+ const commentText = res && res [ 0 ] ;
74
+ if ( commentText ) {
75
+ if ( commentText . toLowerCase ( ) . includes ( 'apache license' ) || commentText . toLowerCase ( ) . includes ( 'apache commons' ) ) {
76
+ return 'Apache' ;
77
+ }
78
+ else if ( commentText . toUpperCase ( ) . includes ( 'BSD' ) ) {
79
+ return 'BSD' ;
80
+ }
81
+ else if ( commentText . toUpperCase ( ) . includes ( 'LGPL' ) ) {
82
+ return 'LGPL' ;
83
+ }
84
+ else if ( commentText . toUpperCase ( ) . includes ( 'GPL' ) ) {
85
+ return 'GPL' ;
86
+ }
87
+ else if ( commentText . toLowerCase ( ) . includes ( 'mozilla public' ) ) {
88
+ return 'Mozilla' ;
89
+ }
90
+ else if ( commentText . toLowerCase ( ) . includes ( 'mit license' ) ) {
91
+ return 'MIT' ;
92
+ }
93
+ }
94
+ }
95
+
96
+ lists . forEach ( function ( pattern ) {
97
+ glob ( pattern , function ( err , fileList ) {
98
+ if ( err ) {
99
+ throw new Error ( ) ;
100
+ }
101
+ fileList . forEach ( function ( fileUrl ) {
102
+ const str = fs . readFileSync ( fileUrl , 'utf-8' ) ;
103
+
104
+ const existLicense = extractLicense ( str ) ;
105
+ if ( existLicense ) {
106
+ console . log ( 'File ' + fileUrl + ' already have license ' + existLicense ) ;
107
+ return ;
108
+ }
109
+
110
+ fs . writeFileSync ( fileUrl , headerStr + str , 'utf-8' ) ;
111
+ } ) ;
112
+ } ) ;
113
+ } ) ;
0 commit comments