com.liferay.source.formatter.check.PropertiesUpgradeLiferayPluginPackageFileCheck 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.portal.kernel.util.StringUtil;
import com.liferay.source.formatter.util.FileUtil;
import com.liferay.source.formatter.util.SourceFormatterUtil;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
* @author Kevin Lee
*/
public class PropertiesUpgradeLiferayPluginPackageFileCheck
extends BaseFileCheck {
@Override
protected String doProcess(
String fileName, String absolutePath, String content)
throws Exception {
String suffix = "/liferay-plugin-package.properties";
if (!fileName.endsWith(suffix) ||
FileUtil.exists(
StringUtil.replace(
fileName, suffix, "/liferay-look-and-feel.xml"))) {
return content;
}
String upgradeToVersion = getAttributeValue(
SourceFormatterUtil.UPGRADE_TO_LIFERAY_VERSION, absolutePath);
if (upgradeToVersion == null) {
return content;
}
return _formatPluginPackageProperties(content);
}
private String _addNoEEProperty(String content) {
Matcher matcher = _noEEPattern.matcher(content);
if (matcher.find()) {
String value = matcher.group(1);
if (value.equals("false")) {
content = StringUtil.replace(
content, value, "true", matcher.start(1));
}
}
else {
content += "\n\n-noee: true";
}
return content;
}
private String _formatPluginPackageProperties(String content) {
content = _removePortalDependencyJarsProperty(content);
content = _addNoEEProperty(content);
return content;
}
private String _removePortalDependencyJarsProperty(String content) {
Matcher matcher = _portalDependencyJarsPattern.matcher(content);
if (!matcher.find()) {
return content;
}
return StringUtil.removeSubstring(content, matcher.group(0));
}
private static final Pattern _noEEPattern = Pattern.compile(
"-noee:\\s*(true|false)\n*");
private static final Pattern _portalDependencyJarsPattern = Pattern.compile(
"portal-dependency-jars=\\\\(\n[\t| ]+.+){2,}\n*");
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy