-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGitReleaseRollback.java
238 lines (201 loc) · 6.91 KB
/
GitReleaseRollback.java
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
package org.jclarity;
/*
* Copyright 2013 John Oliver.
*
* 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.
*/
import static org.twdata.maven.mojoexecutor.MojoExecutor.artifactId;
import static org.twdata.maven.mojoexecutor.MojoExecutor.configuration;
import static org.twdata.maven.mojoexecutor.MojoExecutor.executeMojo;
import static org.twdata.maven.mojoexecutor.MojoExecutor.executionEnvironment;
import static org.twdata.maven.mojoexecutor.MojoExecutor.goal;
import static org.twdata.maven.mojoexecutor.MojoExecutor.groupId;
import static org.twdata.maven.mojoexecutor.MojoExecutor.plugin;
import static org.twdata.maven.mojoexecutor.MojoExecutor.version;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.Arrays;
import java.util.List;
import java.util.Properties;
import org.apache.http.HttpStatus;
import org.apache.http.client.fluent.Executor;
import org.apache.http.client.fluent.Request;
import org.apache.maven.artifact.InvalidRepositoryException;
import org.apache.maven.artifact.repository.ArtifactRepository;
import org.apache.maven.execution.MavenSession;
import org.apache.maven.model.DistributionManagement;
import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugin.BuildPluginManager;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.project.MavenProject;
import org.apache.maven.repository.RepositorySystem;
import org.eclipse.jgit.api.Git;
import org.eclipse.jgit.api.errors.GitAPIException;
import org.eclipse.jgit.storage.file.FileRepository;
import org.eclipse.jgit.storage.file.FileRepositoryBuilder;
/**
* @author John Oliver
* @goal rollback
*/
public class GitReleaseRollback extends AbstractMojo {
/**
* The Maven Project Object
*
* @parameter property="project"
* @required
* @readonly
*/
private MavenProject project;
/**
* The Maven Session Object
*
* @parameter property="session"
* @required
* @readonly
*/
private MavenSession session;
/**
* The Maven PluginManager component.
*
* @component
* @required
*/
private BuildPluginManager pluginManager;
/**
* The Maven Session Object
*
* @parameter default-value="2.4"
*/
private String releasePluginVersion;
/**
*
* @component
* @required
*/
private RepositorySystem repositorySystem;
/**
* @component
* @required
*/
private MavenSession projectBuilderConfiguration;
private File baseDir;
private Properties releaseProperties;
/**
* Whether or not to delete the deployed artifact
*
* @parameter
*/
protected boolean deleteArtifact = true;
/**
* Whether or not to delete the git tag created
*
* @parameter
*/
protected boolean deleteTag = true;
/**
* Whether or not to perform maven rollback
*
* @parameter
*/
protected boolean performRollBack = true;
public void execute() throws MojoExecutionException {
baseDir = project.getBasedir();
releaseProperties = loadProperties();
if(deleteTag)
deleteTag();
if(deleteArtifact)
deleteDeployment();
if(performRollBack)
executeReleaseRollback();
}
private void executeReleaseRollback() throws MojoExecutionException {
executeMojo(
plugin( groupId("org.apache.maven.plugins"),
artifactId("maven-release-plugin"),
version(releasePluginVersion)),
goal("rollback"),
configuration(),
executionEnvironment(project, session, pluginManager));
}
private void deleteTag() {
try {
FileRepositoryBuilder builder = new FileRepositoryBuilder();
FileRepository db = builder .findGitDir(baseDir)
.readEnvironment()
.findGitDir()
.build();
Git git = new Git(db);
String scmTag = releaseProperties.getProperty("scm.tag");
List<String> result = git.tagDelete().setTags(scmTag).call();
for (String tag : result) {
git.push().add(":" + tag).call();
}
} catch (IOException e) {
throw new RuntimeException("Failed to read git repo data", e);
} catch (GitAPIException e) {
throw new RuntimeException("Failed to remove tag", e);
}
}
protected void deleteDeployment() {
String version = releaseProperties.getProperty("project.rel."+project.getGroupId()+":"+project.getArtifactId());
ArtifactRepository releaseArtifactRepository = getReleaseRepo();
if(releaseArtifactRepository == null) {
getLog().warn("Failed to find the release repo, any released artifacts will not be deleted");
return;
}
String username = releaseArtifactRepository.getAuthentication().getUsername();
String password = releaseArtifactRepository.getAuthentication().getPassword();
String url = releaseArtifactRepository.getUrl()+"/"+project.getGroupId()+"/"+project.getArtifactId()+"/"+version;
try {
int resposeCode = Executor.newInstance()
.auth(username, password)
.execute(Request.Delete(url))
.returnResponse()
.getStatusLine()
.getStatusCode();
if(resposeCode != HttpStatus.SC_NO_CONTENT) {
getLog().warn("Could not delete artifact, it may not have been deployed");
}
} catch (Exception e) {
getLog().warn("Failed to delete artifact");
}
}
private ArtifactRepository getReleaseRepo() {
DistributionManagement distributionManagement = project.getDistributionManagement();
if ( distributionManagement != null && distributionManagement.getRepository() != null ) {
try {
ArtifactRepository repo = repositorySystem.buildArtifactRepository(distributionManagement.getRepository());
repositorySystem.injectProxy( projectBuilderConfiguration.getRepositorySession(), Arrays.asList( repo ) );
repositorySystem.injectAuthentication( projectBuilderConfiguration.getRepositorySession(),
Arrays.asList( repo ) );
return repo;
} catch (InvalidRepositoryException e) {}
}
return null;
}
private Properties loadProperties() {
File releasePropertiesFile = new File(baseDir, "release.properties");
try {
FileInputStream inStream = new FileInputStream(releasePropertiesFile);
Properties properties = new Properties();
properties.load(inStream);
return properties;
} catch (FileNotFoundException e) {
throw new RuntimeException("Release properties file could not be found", e);
} catch (IOException e) {
throw new RuntimeException("Failed to read release properties file", e);
}
}
}