com.liferay.source.formatter.check.JSONStylingCheck 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.StringPool;
import com.liferay.portal.json.JSONArrayImpl;
import com.liferay.portal.json.JSONObjectImpl;
import com.liferay.portal.kernel.json.JSONException;
import com.liferay.portal.kernel.json.JSONUtil;
import com.liferay.portal.kernel.log.Log;
import com.liferay.portal.kernel.log.LogFactoryUtil;
import com.liferay.portal.kernel.util.StringUtil;
import com.liferay.portal.kernel.util.Validator;
/**
* @author Hugo Huijser
*/
public class JSONStylingCheck extends BaseFileCheck {
@Override
protected String doProcess(
String fileName, String absolutePath, String content) {
if (Validator.isNull(content)) {
return StringPool.BLANK;
}
try {
if (StringUtil.startsWith(
StringUtil.trim(content), StringPool.OPEN_BRACKET)) {
return JSONUtil.toString(new JSONArrayImpl(content));
}
if (content.endsWith("\n") && fileName.endsWith("/package.json")) {
return JSONUtil.toString(new JSONObjectImpl(content)) + "\n";
}
return JSONUtil.toString(new JSONObjectImpl(content));
}
catch (JSONException jsonException) {
if (_log.isDebugEnabled()) {
_log.debug(jsonException);
}
return content;
}
}
private static final Log _log = LogFactoryUtil.getLog(
JSONStylingCheck.class);
}