com.liferay.source.formatter.check.BNDWebContextPathCheck Maven / Gradle / Ivy
The newest version!
/**
* 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.StringPool;
import com.liferay.source.formatter.check.util.BNDSourceUtil;
import com.liferay.source.formatter.util.FileUtil;
import java.io.File;
import java.io.IOException;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
* @author Hugo Huijser
*/
public class BNDWebContextPathCheck extends BaseFileCheck {
@Override
public boolean isModuleSourceCheck() {
return true;
}
@Override
protected String doProcess(
String fileName, String absolutePath, String content)
throws IOException {
if (fileName.endsWith("/bnd.bnd") &&
!isModulesApp(absolutePath, true) &&
!absolutePath.contains("/testIntegration/") &&
!absolutePath.contains("/third-party/")) {
_checkWebContextPath(fileName, absolutePath, content);
}
return content;
}
private void _checkWebContextPath(
String fileName, String absolutePath, String content)
throws IOException {
String moduleName = BNDSourceUtil.getModuleName(absolutePath);
if (moduleName.contains("-default-") ||
moduleName.contains("-import-") ||
moduleName.contains("-private-")) {
return;
}
String webContextPath = BNDSourceUtil.getDefinitionValue(
content, "Web-ContextPath");
if (_hasPackageJSONNameProperty(absolutePath)) {
if (webContextPath == null) {
addMessage(fileName, "Missing Web-ContextPath");
}
}
else if ((webContextPath != null) &&
!webContextPath.equals("/" + moduleName)) {
addMessage(
fileName,
"Incorrect Web-ContextPath \"" + webContextPath + "\"");
}
}
private boolean _hasPackageJSONNameProperty(String absolutePath)
throws IOException {
int pos = absolutePath.lastIndexOf(StringPool.SLASH);
File file = new File(
absolutePath.substring(0, pos + 1) + "package.json");
if (!file.exists()) {
return false;
}
String content = FileUtil.read(file);
Matcher matcher = _jsonNamePattern.matcher(content);
while (matcher.find()) {
if (getLevel(content.substring(0, matcher.start()), "{", "}") ==
1) {
return true;
}
}
return false;
}
private static final Pattern _jsonNamePattern = Pattern.compile(
"\n\\s*['\"]name['\"]:");
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy