All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.liferay.source.formatter.check.PropertiesFeatureFlagsCheck Maven / Gradle / Ivy
/**
* SPDX-FileCopyrightText: (c) 2000 Liferay, Inc. https://liferay.com
* SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06
*/
package com.liferay.source.formatter.check;
import com.liferay.petra.string.CharPool;
import com.liferay.petra.string.StringBundler;
import com.liferay.petra.string.StringPool;
import com.liferay.portal.kernel.util.ListUtil;
import com.liferay.portal.kernel.util.NaturalOrderStringComparator;
import com.liferay.portal.kernel.util.StringUtil;
import com.liferay.portal.tools.ToolsUtil;
import com.liferay.source.formatter.check.util.BNDSourceUtil;
import com.liferay.source.formatter.check.util.JavaSourceUtil;
import com.liferay.source.formatter.util.FileUtil;
import com.liferay.source.formatter.util.SourceFormatterUtil;
import java.io.File;
import java.io.IOException;
import java.io.StringReader;
import java.util.ArrayList;
import java.util.Enumeration;
import java.util.List;
import java.util.Properties;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
* @author Alan Huang
*/
public class PropertiesFeatureFlagsCheck extends BaseFileCheck {
@Override
public void setAllFileNames(List allFileNames) {
_allFileNames = allFileNames;
}
@Override
protected String doProcess(
String fileName, String absolutePath, String content)
throws IOException {
if (!absolutePath.endsWith("/portal-impl/src/portal.properties")) {
return content;
}
_checkUnnecessaryFeatureFlags(fileName, content);
return _generateFeatureFlags(content);
}
private void _checkUnnecessaryFeatureFlags(String fileName, String content)
throws IOException {
Properties properties = new Properties();
properties.load(new StringReader(content));
Enumeration enumeration =
(Enumeration)properties.propertyNames();
while (enumeration.hasMoreElements()) {
String key = enumeration.nextElement();
if (!key.startsWith("feature.flag.") || !key.endsWith(".type")) {
continue;
}
String value = properties.getProperty(key);
if (StringUtil.equals(value, "dev")) {
addMessage(
fileName,
"Remove unnecessary property '" + key +
"', since 'dev' is the default value");
}
}
}
private String _generateFeatureFlags(String content) throws IOException {
List featureFlagKeys = new ArrayList<>();
List fileNames = SourceFormatterUtil.filterFileNames(
_allFileNames, new String[] {"**/test/**"},
new String[] {
"**/bnd.bnd", "**/*.java", "**/*.js", "**/*.json", "**/*.jsp",
"**/*.jspf", "**/*.jsx", "**/*.ts", "**/*.tsx"
},
getSourceFormatterExcludes(), true);
for (String fileName : fileNames) {
fileName = StringUtil.replace(
fileName, CharPool.BACK_SLASH, CharPool.SLASH);
String fileContent = FileUtil.read(new File(fileName));
if (fileName.endsWith("bnd.bnd")) {
String liferaySiteInitializerFeatureFlagKey =
BNDSourceUtil.getDefinitionValue(
fileContent, "Liferay-Site-Initializer-Feature-Flag");
if (liferaySiteInitializerFeatureFlagKey == null) {
continue;
}
featureFlagKeys.add(liferaySiteInitializerFeatureFlagKey);
}
else if (fileName.endsWith(".java")) {
featureFlagKeys.addAll(
_getFeatureFlagKeys(fileContent, _featureFlagPattern1));
featureFlagKeys.addAll(_getFeatureFlagKeys(fileContent, true));
}
else if (fileName.endsWith(".json")) {
featureFlagKeys.addAll(
_getFeatureFlagKeys(fileContent, _featureFlagPattern4));
}
else if (fileName.endsWith(".jsp") || fileName.endsWith(".jspf")) {
featureFlagKeys.addAll(
_getFeatureFlagKeys(fileContent, _featureFlagPattern3));
featureFlagKeys.addAll(_getFeatureFlagKeys(fileContent, false));
}
else {
featureFlagKeys.addAll(
_getFeatureFlagKeys(fileContent, _featureFlagPattern3));
}
}
ListUtil.distinct(featureFlagKeys, new NaturalOrderStringComparator());
Matcher matcher = _featureFlagsPattern.matcher(content);
if (matcher.find()) {
String matchedFeatureFlags = matcher.group(2);
if (featureFlagKeys.isEmpty()) {
if (matchedFeatureFlags.contains("feature.flag.")) {
return StringUtil.replaceFirst(
content, matchedFeatureFlags, StringPool.BLANK,
matcher.start(2));
}
return content;
}
List deprecationFeatureFlagKeys = new ArrayList<>();
Matcher deprecationFeatureFlagKeyMatcher =
_deprecationFeatureFlagPattern.matcher(content);
while (deprecationFeatureFlagKeyMatcher.find()) {
deprecationFeatureFlagKeys.add(
deprecationFeatureFlagKeyMatcher.group(1));
}
StringBundler sb = new StringBundler(featureFlagKeys.size() * 14);
for (String featureFlagKey : featureFlagKeys) {
String featureFlagPropertyKey =
"feature.flag." + featureFlagKey;
String environmentVariable =
ToolsUtil.encodeEnvironmentProperty(featureFlagPropertyKey);
sb.append(StringPool.NEW_LINE);
sb.append(StringPool.NEW_LINE);
sb.append(StringPool.FOUR_SPACES);
sb.append(StringPool.POUND);
sb.append(StringPool.NEW_LINE);
sb.append(" # Env: ");
sb.append(environmentVariable);
sb.append(StringPool.NEW_LINE);
sb.append(StringPool.FOUR_SPACES);
sb.append(StringPool.POUND);
sb.append(StringPool.NEW_LINE);
sb.append(StringPool.FOUR_SPACES);
sb.append(featureFlagPropertyKey);
sb.append(StringPool.EQUAL);
if (deprecationFeatureFlagKeys.contains(featureFlagKey)) {
sb.append(true);
}
else {
sb.append(false);
}
}
if (matchedFeatureFlags.contains("feature.flag.")) {
content = StringUtil.replaceFirst(
content, matchedFeatureFlags, sb.toString(),
matcher.start(2));
}
else {
content = StringUtil.insert(
content, sb.toString(), matcher.start(2));
}
}
return content;
}
private List _getFeatureFlagKeys(
String content, boolean javaSource) {
List featureFlagKeys = new ArrayList<>();
Matcher matcher = _featureFlagPattern2.matcher(content);
while (matcher.find()) {
String methodCall = null;
if (javaSource) {
methodCall = JavaSourceUtil.getMethodCall(
content, matcher.start());
}
else {
methodCall = JavaSourceUtil.getMethodCall(
content.substring(matcher.start()), 0);
}
List parameterList = JavaSourceUtil.getParameterList(
methodCall);
if (parameterList.isEmpty()) {
return featureFlagKeys;
}
String parameter = null;
if (parameterList.size() == 1) {
parameter = parameterList.get(0);
}
else {
parameter = parameterList.get(1);
}
if ((parameter != null) && parameter.endsWith(StringPool.QUOTE) &&
parameter.startsWith(StringPool.QUOTE)) {
featureFlagKeys.add(StringUtil.unquote(parameter));
}
}
return featureFlagKeys;
}
private List _getFeatureFlagKeys(String content, Pattern pattern) {
List featureFlagKeys = new ArrayList<>();
Matcher matcher = pattern.matcher(content);
while (matcher.find()) {
featureFlagKeys.add(matcher.group(1));
}
return featureFlagKeys;
}
private static final Pattern _deprecationFeatureFlagPattern =
Pattern.compile("feature\\.flag\\.([A-Z]+-\\d+)\\.type=deprecation");
private static final Pattern _featureFlagPattern1 = Pattern.compile(
"feature\\.flag[.=]([A-Z]+-\\d+)");
private static final Pattern _featureFlagPattern2 = Pattern.compile(
"FeatureFlagManagerUtil\\.isEnabled\\(");
private static final Pattern _featureFlagPattern3 = Pattern.compile(
"Liferay\\.FeatureFlags\\['(.+?)'\\]");
private static final Pattern _featureFlagPattern4 = Pattern.compile(
"\"featureFlag\": \"(.+?)\"");
private static final Pattern _featureFlagsPattern = Pattern.compile(
"(\n|\\A)##\n## Feature Flag\n##(\n\n[\\s\\S]*?)(?=(\n\n##|\\Z))");
private List _allFileNames;
}