com.liferay.source.formatter.check.FTLLiferayVariableOrderCheck 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.portal.kernel.util.Validator;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
* @author Hugo Huijser
*/
public class FTLLiferayVariableOrderCheck extends BaseFileCheck {
@Override
protected String doProcess(
String fileName, String absolutePath, String content) {
return _sortLiferayVariables(content);
}
private String _sortLiferayVariables(String content) {
Matcher matcher1 = _liferayVariablesPattern.matcher(content);
while (matcher1.find()) {
String match = matcher1.group();
Matcher matcher2 = _liferayVariablePattern.matcher(match);
String previousVariable = null;
while (matcher2.find()) {
String variable = matcher2.group();
if (Validator.isNotNull(previousVariable) &&
(previousVariable.compareTo(variable) > 0)) {
String replacement = StringUtil.replaceFirst(
match, previousVariable, variable);
replacement = StringUtil.replaceLast(
replacement, variable, previousVariable);
return StringUtil.replace(content, match, replacement);
}
previousVariable = variable;
}
}
return content;
}
private static final Pattern _liferayVariablePattern = Pattern.compile(
"^\t*<#assign liferay_.*>\n", Pattern.MULTILINE);
private static final Pattern _liferayVariablesPattern = Pattern.compile(
"(^\t*<#assign liferay_.*>\n)+", Pattern.MULTILINE);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy