com.liferay.source.formatter.check.PropertiesPortletFileCheck 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.StringPool;
import com.liferay.portal.kernel.io.unsync.UnsyncBufferedReader;
import com.liferay.portal.kernel.io.unsync.UnsyncStringReader;
import com.liferay.portal.kernel.util.StringUtil;
import com.liferay.portal.kernel.util.Validator;
import java.io.IOException;
/**
* @author Hugo Huijser
*/
public class PropertiesPortletFileCheck extends BaseFileCheck {
@Override
protected String doProcess(
String fileName, String absolutePath, String content)
throws IOException {
if (fileName.endsWith("/portlet.properties")) {
return _formatPortletProperties(fileName, content);
}
return content;
}
private String _formatPortletProperties(String fileName, String content)
throws IOException {
if (!content.contains("include-and-override=portlet-ext.properties")) {
content =
"include-and-override=portlet-ext.properties\n\n" + content;
}
if (!isPortalSource() && !isSubrepository()) {
return content;
}
try (UnsyncBufferedReader unsyncBufferedReader =
new UnsyncBufferedReader(new UnsyncStringReader(content))) {
int lineNumber = 0;
String line = null;
String previousProperty = StringPool.BLANK;
while ((line = unsyncBufferedReader.readLine()) != null) {
lineNumber++;
if ((lineNumber == 1) || line.startsWith(StringPool.POUND) ||
line.startsWith(StringPool.SPACE) ||
line.startsWith(StringPool.TAB)) {
continue;
}
int pos = line.indexOf(CharPool.EQUAL);
if (pos == -1) {
continue;
}
String property = StringUtil.trim(line.substring(0, pos));
pos = property.indexOf(CharPool.OPEN_BRACKET);
if (pos != -1) {
property = property.substring(0, pos);
}
if (Validator.isNotNull(previousProperty) &&
(previousProperty.compareToIgnoreCase(property) > 0)) {
addMessage(
fileName, "Unsorted property \"" + property + "\"",
lineNumber);
}
previousProperty = property;
}
}
return content;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy