代码简化

This commit is contained in:
卢春梦 2025-02-27 09:18:49 +08:00
parent 81c6541968
commit 27eddbd879
2 changed files with 11 additions and 9 deletions

View File

@ -15,8 +15,6 @@
*/ */
package org.springblade.core.tool.sensitive; package org.springblade.core.tool.sensitive;
import lombok.Getter;
import java.util.regex.Pattern; import java.util.regex.Pattern;
/** /**
@ -24,7 +22,6 @@ import java.util.regex.Pattern;
* *
* @author BladeX * @author BladeX
*/ */
@Getter
public enum SensitiveType { public enum SensitiveType {
GLOBAL("全局", "(.{2}).*(.{2})", "$1****$2"), GLOBAL("全局", "(.{2}).*(.{2})", "$1****$2"),
MOBILE("手机号", "(\\d{3})\\d{4}(\\d{4})", "$1****$2"), MOBILE("手机号", "(\\d{3})\\d{4}(\\d{4})", "$1****$2"),
@ -35,15 +32,20 @@ public enum SensitiveType {
MAC_ADDRESS("MAC地址", "([0-9A-Fa-f]{2}:[0-9A-Fa-f]{2}):[0-9A-Fa-f]{2}:[0-9A-Fa-f]{2}:[0-9A-Fa-f]{2}:[0-9A-Fa-f]{2}", "$1:****"), MAC_ADDRESS("MAC地址", "([0-9A-Fa-f]{2}:[0-9A-Fa-f]{2}):[0-9A-Fa-f]{2}:[0-9A-Fa-f]{2}:[0-9A-Fa-f]{2}:[0-9A-Fa-f]{2}", "$1:****"),
; ;
private final String desc;
private final String regex;
private final String replacement; private final String replacement;
private final Pattern pattern; private final Pattern pattern;
SensitiveType(String desc, String regex, String replacement) { SensitiveType(String ignore, String regex, String replacement) {
this.desc = desc;
this.regex = regex;
this.replacement = replacement; this.replacement = replacement;
this.pattern = Pattern.compile(regex); this.pattern = Pattern.compile(regex);
} }
/**
* 替换文本
* @param content content
* @return 替换后的内容
*/
public String replaceAll(String content) {
return this.pattern.matcher(content).replaceAll(this.replacement);
}
} }

View File

@ -196,7 +196,7 @@ public class SensitiveUtil {
private static String processRegexPatterns(String content, Set<SensitiveType> types) { private static String processRegexPatterns(String content, Set<SensitiveType> types) {
String result = content; String result = content;
for (SensitiveType type : types) { for (SensitiveType type : types) {
result = type.getPattern().matcher(result).replaceAll(type.getReplacement()); result = type.replaceAll(result);
} }
return result; return result;
} }