org.openrewrite.maven.AddCommentToMavenDependency Maven / Gradle / Ivy
Show all versions of rewrite-maven Show documentation
/*
* Copyright 2022 the original author or authors.
*
* 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
*
* https://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 org.openrewrite.maven;
import lombok.EqualsAndHashCode;
import lombok.Value;
import org.openrewrite.ExecutionContext;
import org.openrewrite.Option;
import org.openrewrite.Recipe;
import org.openrewrite.TreeVisitor;
import org.openrewrite.marker.Markers;
import org.openrewrite.xml.XPathMatcher;
import org.openrewrite.xml.tree.Content;
import org.openrewrite.xml.tree.Xml;
import java.util.ArrayList;
import java.util.List;
import static org.openrewrite.Tree.randomId;
@Value
@EqualsAndHashCode(callSuper = false)
public class AddCommentToMavenDependency extends Recipe {
@Option(displayName = "XPath",
description = "An XPath expression used to find matching tags.",
example = "/project/dependencies/dependency")
String xPath;
@Option(displayName = "Group",
description = "The first part of a dependency coordinate `com.google.guava:guava:VERSION`.",
example = "com.google.guava")
String groupId;
@Option(displayName = "Artifact",
description = "The second part of a dependency coordinate `com.google.guava:guava:VERSION`.",
example = "guava")
String artifactId;
@Option(displayName = "Comment text",
description = "The text to add as a comment..",
example = "This is excluded due to CVE and will be removed when we upgrade the next version is available.")
String commentText;
@Override
public String getDisplayName() {
return "Add a comment to a `Maven` dependency";
}
@Override
public String getDescription() {
return "Adds a comment as the first element in a `Maven` dependency.";
}
@Override
public TreeVisitor, ExecutionContext> getVisitor() {
return new MavenIsoVisitor() {
final XPathMatcher matcher = new XPathMatcher(xPath);
@Override
public Xml.Tag visitTag(Xml.Tag tag, ExecutionContext ctx) {
Xml.Tag t = super.visitTag(tag, ctx);
if (matcher.matches(getCursor()) && this.isDependencyTag(groupId, artifactId)) {
if (tag.getContent() != null) {
List contents = new ArrayList<>(tag.getContent());
boolean containsComment = contents.stream()
.anyMatch(c -> c instanceof Xml.Comment &&
commentText.equals(((Xml.Comment) c).getText()));
if (!containsComment) {
int insertPos = 0;
Xml.Comment customComment = new Xml.Comment(randomId(),
contents.get(insertPos).getPrefix(),
Markers.EMPTY,
commentText);
contents.add(insertPos, customComment);
t = t.withContent(contents);
}
}
}
return t;
}
};
}
}