Skip to content

Commit

Permalink
[MENFORCER-424] add enforcer rule which bans scope from
Browse files Browse the repository at this point in the history
dependencyManagement
  • Loading branch information
kwin committed Jun 29, 2022
1 parent 7e6f026 commit d49e4cb
Show file tree
Hide file tree
Showing 9 changed files with 574 additions and 21 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,218 @@
package org.apache.maven.plugins.enforcer;

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 java.util.ArrayList;
import java.util.Collections;
import java.util.List;

import org.apache.maven.artifact.versioning.InvalidVersionSpecificationException;
import org.apache.maven.enforcer.rule.api.EnforcerRule2;
import org.apache.maven.enforcer.rule.api.EnforcerRuleException;
import org.apache.maven.enforcer.rule.api.EnforcerRuleHelper;
import org.apache.maven.model.Dependency;
import org.apache.maven.model.DependencyManagement;
import org.apache.maven.model.InputLocation;
import org.apache.maven.plugin.logging.Log;
import org.apache.maven.plugins.enforcer.utils.ArtifactMatcher;
import org.apache.maven.project.MavenProject;
import org.codehaus.plexus.component.configurator.expression.ExpressionEvaluationException;

/**
* This rule bans all scope values except for {@code import} from dependencies within the dependency management.
* There is a configuration option to ignore certain dependencies in this check.
*/
public class BanDependencyManagementScope
extends AbstractNonCacheableEnforcerRule
implements EnforcerRule2
{

/**
* Specify the dependencies that will be ignored. This can be a list of artifacts in the format
* <code>groupId[:artifactId][:version][:type][:scope]</code>. Wildcard '*' can be used to in place of specific
* section (ie group:*:1.0 will match both 'group:artifact:1.0' and 'group:anotherArtifact:1.0'). Version is a
* string representing standard Maven version range. Empty patterns will be ignored.
*
* @see {@link #setExcludes(List)}
*/
private List<String> excludes = null;

/**
* If {@code true} the dependencyManagement from imported dependencyManagement and parent pom's is checked as well,
* otherwise only the local dependencyManagement defined in the current project's pom.xml.
*/
private boolean checkEffectivePom = false;

@Override
public void execute( EnforcerRuleHelper helper )
throws EnforcerRuleException
{
Log logger = helper.getLog();
MavenProject project;
try
{
project = (MavenProject) helper.evaluate( "${project}" );
if ( project == null )
{
throw new EnforcerRuleException( "${project} is null" );
}
// only evaluate local depMgmt, without taking into account inheritance and interpolation
DependencyManagement depMgmt = checkEffectivePom ? project.getModel().getDependencyManagement()
: project.getOriginalModel().getDependencyManagement();
if ( depMgmt != null && depMgmt.getDependencies() != null )
{
List<Dependency> violatingDependencies = getViolatingDependencies( logger, depMgmt );
if ( !violatingDependencies.isEmpty() )
{
String projectId = getProjectId( project );
String message = getMessage();
StringBuilder buf = new StringBuilder();
if ( message == null )
{
message = "Scope other than 'import' is not allowed in 'dependencyManagement'";
}
buf.append( message + System.lineSeparator() );
for ( Dependency violatingDependency : violatingDependencies )
{
buf.append( getErrorMessage( projectId, violatingDependency ) );
}
throw new EnforcerRuleException( buf.toString() );
}
}
}
catch ( ExpressionEvaluationException e )
{
throw new EnforcerRuleException( "Cannot resolve expression: " + e.getCause(), e );
}
catch ( InvalidVersionSpecificationException e )
{
throw new EnforcerRuleException( "Invalid version range give in excludes " + e.getCause(), e );
}
}

protected List<Dependency> getViolatingDependencies( Log logger, DependencyManagement depMgmt )
throws InvalidVersionSpecificationException
{
final ArtifactMatcher excludesMatcher;
if ( excludes != null )
{
excludesMatcher = new ArtifactMatcher( excludes, Collections.emptyList() );
}
else
{
excludesMatcher = null;
}
List<Dependency> violatingDependencies = new ArrayList<>();
for ( Dependency dependency : depMgmt.getDependencies() )
{
if ( dependency.getScope() != null && !"import".equals( dependency.getScope() ) )
{
if ( excludesMatcher != null && excludesMatcher.match( dependency ) )
{
logger.debug( "Skipping excluded dependency " + dependency + " with scope "
+ dependency.getScope() );
continue;
}
violatingDependencies.add( dependency );
}
}
return violatingDependencies;
}

private static CharSequence getErrorMessage( String projectId, Dependency violatingDependency )
{
return "Banned scope '" + violatingDependency.getScope() + "' used on dependency '"
+ violatingDependency.getManagementKey() + "' @ "
+ formatLocation( projectId, violatingDependency.getLocation( "" ) )
+ System.lineSeparator();
}

// Get the identifier of the POM in the format <groupId>:<artifactId>:<version>.
protected static String getProjectId( MavenProject project )
{
StringBuilder buffer = new StringBuilder( 128 );

buffer.append( ( project.getGroupId() != null && project.getGroupId().length() > 0 ) ? project.getGroupId()
: "[unknown-group-id]" );
buffer.append( ':' );
buffer.append( ( project.getArtifactId() != null && project.getArtifactId().length() > 0 )
? project.getArtifactId()
: "[unknown-artifact-id]" );
buffer.append( ':' );
buffer.append( ( project.getVersion() != null && project.getVersion().length() > 0 ) ? project.getVersion()
: "[unknown-version]" );

return buffer.toString();
}

/**
* Creates a string with line/column information for problems originating directly from this POM. Inspired by
* {@code o.a.m.model.building.ModelProblemUtils.formatLocation(...)}.
*
* @param projectId the id of the current project's pom.
* @param location The location which should be formatted, must not be {@code null}.
* @return The formatted problem location or an empty string if unknown, never {@code null}.
*/
protected static String formatLocation( String projectId, InputLocation location )
{
StringBuilder buffer = new StringBuilder();

if ( !location.getSource().getModelId().equals( projectId ) )
{
buffer.append( location.getSource().getModelId() );

if ( location.getSource().getLocation().length() > 0 )
{
if ( buffer.length() > 0 )
{
buffer.append( ", " );
}
buffer.append( location.getSource().getLocation() );
}
}
if ( location.getLineNumber() > 0 )
{
if ( buffer.length() > 0 )
{
buffer.append( ", " );
}
buffer.append( "line " ).append( location.getLineNumber() );
}
if ( location.getColumnNumber() > 0 )
{
if ( buffer.length() > 0 )
{
buffer.append( ", " );
}
buffer.append( "column " ).append( location.getColumnNumber() );
}
return buffer.toString();
}

public void setExcludes( List<String> theExcludes )
{
this.excludes = theExcludes;
}

public void setCheckEffectivePom( boolean checkEffectivePom )
{
this.checkEffectivePom = checkEffectivePom;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,11 @@
import org.apache.maven.artifact.versioning.DefaultArtifactVersion;
import org.apache.maven.artifact.versioning.InvalidVersionSpecificationException;
import org.apache.maven.artifact.versioning.VersionRange;
import org.apache.maven.model.Dependency;
import org.apache.maven.plugins.enforcer.AbstractVersionEnforcer;
import java.util.Collection;
import java.util.LinkedList;
import java.util.Objects;

/**
* This class is used for matching Artifacts against a list of patterns.
Expand Down Expand Up @@ -73,21 +75,31 @@ public Pattern( String pattern )
public boolean match( Artifact artifact )
throws InvalidVersionSpecificationException
{
if ( artifact == null )
{
throw new NullPointerException( "artifact" );
}
Objects.requireNonNull( artifact, "artifact must not be null" );
return match( artifact.getGroupId(), artifact.getArtifactId(), artifact.getVersion(),
artifact.getType(), artifact.getScope(), artifact.getClassifier() );
}

public boolean match( Dependency dependency )
throws InvalidVersionSpecificationException
{
Objects.requireNonNull( dependency, "dependency must not be null" );
return match( dependency.getGroupId(), dependency.getArtifactId(), dependency.getVersion(),
dependency.getType(), dependency.getScope(), dependency.getClassifier() );
}

private boolean match( String groupId, String artifactId, String version,
String type, String scope, String classifier )
throws InvalidVersionSpecificationException
{
switch ( parts.length )
{
case 6:
String classifier = artifact.getClassifier();
if ( !matches( parts[5], classifier ) )
{
return false;
}
case 5:
String scope = artifact.getScope();
if ( scope == null || scope.equals( "" ) )
{
scope = Artifact.SCOPE_COMPILE;
Expand All @@ -98,7 +110,6 @@ public boolean match( Artifact artifact )
return false;
}
case 4:
String type = artifact.getType();
if ( type == null || type.equals( "" ) )
{
type = "jar";
Expand All @@ -110,25 +121,24 @@ public boolean match( Artifact artifact )
}

case 3:
if ( !matches( parts[2], artifact.getVersion() ) )
if ( !matches( parts[2], version ) )
{
// CHECKSTYLE_OFF: LineLength
if ( !AbstractVersionEnforcer.containsVersion( VersionRange.createFromVersionSpec( parts[2] ),
new DefaultArtifactVersion(
artifact.getVersion() ) ) )
new DefaultArtifactVersion( version ) ) )
// CHECKSTYLE_ON: LineLength
{
return false;
}
}

case 2:
if ( !matches( parts[1], artifact.getArtifactId() ) )
if ( !matches( parts[1], artifactId ) )
{
return false;
}
case 1:
return matches( parts[0], artifact.getGroupId() );
return matches( parts[0], groupId );
default:
throw new AssertionError();
}
Expand Down Expand Up @@ -169,14 +179,8 @@ public String toString()
*/
public ArtifactMatcher( final Collection<String> patterns, final Collection<String> ignorePatterns )
{
if ( patterns == null )
{
throw new NullPointerException( "patterns" );
}
if ( ignorePatterns == null )
{
throw new NullPointerException( "ignorePatterns" );
}
Objects.requireNonNull( patterns, "patterns must not be null" );
Objects.requireNonNull( ignorePatterns, "ignorePatterns must not be null" );
for ( String pattern : patterns )
{
if ( pattern != null && !"".equals( pattern ) )
Expand Down Expand Up @@ -221,4 +225,32 @@ public boolean match( Artifact artifact )
}
return false;
}

/**
* Check if dependency matches patterns.
*
* @param dependency the dependency to match
* @return {@code true} if dependency matches any {@link #patterns} and none of the {@link #ignorePatterns},
* otherwise {@code false}
* @throws InvalidVersionSpecificationException if any pattern contains an invalid version range
*/
public boolean match( Dependency dependency )
throws InvalidVersionSpecificationException
{
for ( Pattern pattern : patterns )
{
if ( pattern.match( dependency ) )
{
for ( Pattern ignorePattern : ignorePatterns )
{
if ( ignorePattern.match( dependency ) )
{
return false;
}
}
return true;
}
}
return false;
}
}
Loading

0 comments on commit d49e4cb

Please sign in to comment.