forked from hierynomus/license-gradle-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLicense.groovy
More file actions
199 lines (167 loc) · 6.8 KB
/
Copy pathLicense.groovy
File metadata and controls
199 lines (167 loc) · 6.8 KB
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
/* License added by: GRADLE-LICENSE-PLUGIN
*
* Copyright 2012 Justin Ryan <jryan@netflix.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package nl.javadude.gradle.plugins.license
import com.google.code.mojo.license.header.HeaderDefinition
import nl.javadude.gradle.plugins.license.header.HeaderDefinitionBuilder
import nl.javadude.gradle.plugins.license.maven.AbstractLicenseMojo
import nl.javadude.gradle.plugins.license.maven.CallbackWithFailure
import nl.javadude.gradle.plugins.license.maven.LicenseCheckMojo
import nl.javadude.gradle.plugins.license.maven.LicenseFormatMojo
import org.gradle.api.GradleException
import org.gradle.api.NamedDomainObjectContainer
import org.gradle.api.file.FileCollection
import org.gradle.api.tasks.*
/**
* Task to back License. Using convention of naming Task types with just their name, which makes calls
* like tasks.withType(License) nicer, consistent with most internal Gradle tasks.
*
* TODO: See if removing headers is valuable to add in
*
* @author jryan
*/
public class License extends SourceTask implements VerificationTask {
/**
* Whether or not to allow the build to continue if there are warnings.
*/
boolean ignoreFailures
/**
* Check determines if we doing mutation on the files or just looking
*/
boolean check;
/**
* Whether to create new files which have changes or to make them inline
*/
boolean dryRun = false;
/**
* Whether to skip file where a header has been detected
*/
boolean skipExistingHeaders = false;
// TODO useDefaultExcludes, not necessary because we're using source sets
/**
* @link {AbstractLicenseMojo.useDefaultMappings}
*/
boolean useDefaultMappings
boolean strictCheck
/**
* The encoding used to open files
*/
String encoding
@Optional
@InputFile
File header
/**
* In lieu of a header file on the local filesystem, this property lets you provide a URL that could be
* in the classpath or on a remote system. When configured across a few projects, it would mean that a
* header file doesn't have to be in each project.
*/
@Optional
@Input
URI headerURI
@OutputFiles
Iterable<File> altered = new ArrayList<File>()
// Backing AbstraceLicenseMojo
FileCollection validHeaders;
Map<String, String> inheritedProperties;
Map<String, String> inheritedMappings;
// Container for all custom header definitions
NamedDomainObjectContainer<HeaderDefinitionBuilder> headerDefinitions;
@TaskAction
protected void process() {
// Plain weird, but this ensures that the lazy closure from the extension is properly wired into the excludes field of the SourceTask.
this.excludes = getExcludes()
this.includes = getIncludes()
if (!enabled) {
didWork = false;
return;
}
CallbackWithFailure callback;
if (isCheck()) {
callback = new LicenseCheckMojo(getProject().rootDir, isSkipExistingHeaders())
} else {
callback = new LicenseFormatMojo(getProject().rootDir, isDryRun(), isSkipExistingHeaders())
}
Map<String, String> initial = combineVariables();
Map<String, String> combinedMappings = combinedMappings();
URI uri = getURI()
new AbstractLicenseMojo(validHeaders, getProject().rootDir, initial, isDryRun(), isSkipExistingHeaders(), isUseDefaultMappings(), isStrictCheck(), uri, source, combinedMappings, getEncoding(), buildHeaderDefinitions())
.execute(callback);
altered = callback.getAffected()
didWork = !altered.isEmpty()
if (!isIgnoreFailures() && callback.hadFailure()) {
throw new GradleException("License violations were found: ${callback.affected.join(',')}}")
}
}
URI getURI() {
def uri = getHeaderURI() ?: getHeader().toURI()
if (!uri) {
throw new GradleException("A headerUri or header has to be provided to the License task")
}
uri
}
// Setup up variables
// Use properties on this task over the ones from the extension
private Map combineVariables() {
Map<String, String> initial = new HashMap<String, String>();
if (getInheritedProperties() != null ) { // Convention will pull these from the extension
initial.putAll(getInheritedProperties());
}
initial.putAll(ext.properties)
return initial
}
// Setup mappings
Map<String,String> combinedMappings() {
Map<String, String> combinedMappings = new HashMap<String, String>();
if (isUseDefaultMappings()) {
// Sprinkle in some other well known types, which maven-license-plugin doesn't have
combinedMappings.put('gradle', 'JAVADOC_STYLE')
combinedMappings.put('json', 'JAVADOC_STYLE')
combinedMappings.put('scala', 'JAVADOC_STYLE')
combinedMappings.put('gsp', 'DYNASCRIPT_STYLE')
combinedMappings.put('groovy', 'SLASHSTAR_STYLE')
combinedMappings.put('clj', 'SEMICOLON_STYLE')
combinedMappings.put('yaml', 'SCRIPT_STYLE')
combinedMappings.put('yml', 'SCRIPT_STYLE')
}
if (getInheritedMappings() != null) {
combinedMappings.putAll(getInheritedMappings());
}
combinedMappings.putAll(internalMappings)
return combinedMappings
}
List<HeaderDefinition> buildHeaderDefinitions() {
List<HeaderDefinition> definitions = new ArrayList<>();
getHeaderDefinitions().all { headerDefinition ->
logger.debug("Adding extra header definition ${headerDefinition.toString()}")
definitions.add(headerDefinition.build())
}
return definitions
}
Map<String, String> internalMappings = new HashMap<String, String>();
public void mapping(String fileType, String headerType) {
internalMappings.put(fileType, headerType);
}
public void mapping(Map<String, String> provided) {
internalMappings.putAll(provided);
}
public void mapping(Closure closure) {
Map<String,String> tmpMap = new HashMap<String,String>();
closure.delegate = tmpMap;
closure.resolveStrategy = Closure.DELEGATE_FIRST
closure();
internalMappings.putAll(tmpMap);
}
}