All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openrewrite.java.spring.security5.UpdateArgon2PasswordEncoder Maven / Gradle / Ivy

Go to download

Eliminate legacy Spring patterns and migrate between major Spring Boot versions. Automatically.

There is a newer version: 5.19.0
Show newest version
/*
 * Copyright 2023 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.java.spring.security5; import lombok.EqualsAndHashCode; import lombok.Value; import org.openrewrite.ExecutionContext; import org.openrewrite.Preconditions; import org.openrewrite.Recipe; import org.openrewrite.TreeVisitor; import org.openrewrite.java.JavaParser; import org.openrewrite.java.JavaTemplate; import org.openrewrite.java.JavaVisitor; import org.openrewrite.java.MethodMatcher; import org.openrewrite.java.search.UsesType; import org.openrewrite.java.tree.Expression; import org.openrewrite.java.tree.J; import org.openrewrite.java.tree.TypeUtils; import java.util.List; import java.util.Objects; import static org.openrewrite.java.spring.internal.LocalVariableUtils.resolveExpression; @Value @EqualsAndHashCode(callSuper = false) public class UpdateArgon2PasswordEncoder extends Recipe { private static final String ARGON2_PASSWORD_ENCODER_CLASS = "org.springframework.security.crypto.argon2.Argon2PasswordEncoder"; private static final MethodMatcher DEFAULT_CONSTRUCTOR_MATCHER = new MethodMatcher(ARGON2_PASSWORD_ENCODER_CLASS + " ()"); private static final MethodMatcher FULL_CONSTRUCTOR_MATCHER = new MethodMatcher(ARGON2_PASSWORD_ENCODER_CLASS + " (int, int, int, int, int)"); private static final Integer DEFAULT_SALT_LENGTH = 16; private static final Integer DEFAULT_HASH_LENGTH = 32; private static final Integer DEFAULT_PARALLELISM = 1; private static final Integer DEFAULT_MEMORY = 16_384; private static final Integer DEFAULT_ITERATIONS = 2; private static final Integer DEFAULT_V52_SALT_LENGTH = 16; private static final Integer DEFAULT_V52_HASH_LENGTH = 32; private static final Integer DEFAULT_V52_PARALLELISM = 1; private static final Integer DEFAULT_V52_MEMORY = 4_096; private static final Integer DEFAULT_V52_ITERATIONS = 3; @Override public String getDisplayName() { return "Use new `Argon2PasswordEncoder` factory methods"; } @Override public String getDescription() { return "In Spring Security 5.8 some `Argon2PasswordEncoder` constructors have been deprecated in favor of factory methods. " + "Refer to the [ Spring Security migration docs](https://docs.spring.io/spring-security/reference/5.8/migration/index.html#_update_argon2passwordencoder) for more information."; } @Override public TreeVisitor getVisitor() { return Preconditions.check(new UsesType<>(ARGON2_PASSWORD_ENCODER_CLASS, false), new JavaVisitor() { @Override public J visitNewClass(J.NewClass newClass, ExecutionContext ctx) { J j = super.visitNewClass(newClass, ctx); if (j instanceof J.NewClass && TypeUtils.isOfClassType(((J.NewClass) j).getType(), ARGON2_PASSWORD_ENCODER_CLASS)) { newClass = (J.NewClass) j; if (DEFAULT_CONSTRUCTOR_MATCHER.matches(newClass)) { maybeAddImport(ARGON2_PASSWORD_ENCODER_CLASS); return newV52FactoryMethodTemplate(ctx).apply(getCursor(), newClass.getCoordinates().replace()); } else { List arguments = newClass.getArguments(); if (FULL_CONSTRUCTOR_MATCHER.matches(newClass)) { Expression saltLength = arguments.get(0); Expression hashLength = arguments.get(1); Expression parallelism = arguments.get(2); Expression memory = arguments.get(3); Expression iterations = arguments.get(4); maybeAddImport(ARGON2_PASSWORD_ENCODER_CLASS); if (resolvedValueMatchesLiteral(saltLength, DEFAULT_SALT_LENGTH) && resolvedValueMatchesLiteral(hashLength, DEFAULT_HASH_LENGTH) && resolvedValueMatchesLiteral(parallelism, DEFAULT_PARALLELISM) && resolvedValueMatchesLiteral(memory, DEFAULT_MEMORY) && resolvedValueMatchesLiteral(iterations, DEFAULT_ITERATIONS)) { return newV58FactoryMethodTemplate(ctx).apply(getCursor(), newClass.getCoordinates().replace()); } else if (resolvedValueMatchesLiteral(saltLength, DEFAULT_V52_SALT_LENGTH) && resolvedValueMatchesLiteral(hashLength, DEFAULT_V52_HASH_LENGTH) && resolvedValueMatchesLiteral(parallelism, DEFAULT_V52_PARALLELISM) && resolvedValueMatchesLiteral(memory, DEFAULT_V52_MEMORY) && resolvedValueMatchesLiteral(iterations, DEFAULT_V52_ITERATIONS)) { return newV52FactoryMethodTemplate(ctx).apply(getCursor(), newClass.getCoordinates().replace()); } } } } return j; } boolean resolvedValueMatchesLiteral(Expression expression, Object value) { Expression resolvedExpression = resolveExpression(expression, getCursor()); return resolvedExpression instanceof J.Literal && Objects.equals(((J.Literal) resolvedExpression).getValue(), value); } private JavaTemplate newV52FactoryMethodTemplate(ExecutionContext ctx) { return JavaTemplate.builder("Argon2PasswordEncoder.defaultsForSpringSecurity_v5_2()") .imports(ARGON2_PASSWORD_ENCODER_CLASS) .javaParser(JavaParser.fromJavaVersion() .classpathFromResources(ctx, "spring-security-crypto-5.8.+")) .build(); } private JavaTemplate newV58FactoryMethodTemplate(ExecutionContext ctx) { return JavaTemplate.builder("Argon2PasswordEncoder.defaultsForSpringSecurity_v5_8()") .imports(ARGON2_PASSWORD_ENCODER_CLASS) .javaParser(JavaParser.fromJavaVersion() .classpathFromResources(ctx, "spring-security-crypto-5.8.+")) .build(); } }); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy