com.liferay.commerce.product.internal.util.CPCompareHelperImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.commerce.product.service
Show all versions of com.liferay.commerce.product.service
Liferay Commerce Product Service
/**
* 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.commerce.product.internal.util;
import com.liferay.commerce.product.catalog.CPCatalogEntry;
import com.liferay.commerce.product.util.CPCompareHelper;
import com.liferay.commerce.product.util.CPDefinitionHelper;
import com.liferay.petra.string.StringPool;
import com.liferay.portal.kernel.exception.PortalException;
import com.liferay.portal.kernel.log.Log;
import com.liferay.portal.kernel.log.LogFactoryUtil;
import com.liferay.portal.kernel.util.ListUtil;
import com.liferay.portal.kernel.util.LocaleUtil;
import com.liferay.portal.kernel.util.StringUtil;
import java.util.ArrayList;
import java.util.List;
import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.Reference;
/**
* @author Alec Sloan
*/
@Component(service = CPCompareHelper.class)
public class CPCompareHelperImpl implements CPCompareHelper {
@Override
public List getCPCatalogEntries(
long groupId, long commerceAccountId,
String cpDefinitionIdsCookieValue)
throws PortalException {
List cpDefinitionIds = _getCpDefinitionIds(
cpDefinitionIdsCookieValue);
if (cpDefinitionIds.isEmpty()) {
return new ArrayList<>();
}
List cpCatalogEntries = new ArrayList<>();
for (long cpDefinitionId : cpDefinitionIds) {
CPCatalogEntry cpCatalogEntry = null;
try {
cpCatalogEntry = _cpDefinitionHelper.getCPCatalogEntry(
commerceAccountId, groupId, cpDefinitionId,
LocaleUtil.getDefault());
}
catch (PortalException portalException) {
if (_log.isWarnEnabled()) {
_log.warn(portalException);
}
continue;
}
if (cpCatalogEntry != null) {
cpCatalogEntries.add(cpCatalogEntry);
}
}
return cpCatalogEntries;
}
@Override
public List getCPDefinitionIds(
long groupId, long commerceAccountId,
String cpDefinitionIdsCookieValue) {
List cpDefinitionIds = _getCpDefinitionIds(
cpDefinitionIdsCookieValue);
if (cpDefinitionIds.isEmpty()) {
return new ArrayList<>();
}
List activeCPDefinitionIds = new ArrayList<>();
for (long cpDefinitionId : cpDefinitionIds) {
CPCatalogEntry cpCatalogEntry = null;
try {
cpCatalogEntry = _cpDefinitionHelper.getCPCatalogEntry(
commerceAccountId, groupId, cpDefinitionId,
LocaleUtil.getDefault());
}
catch (PortalException portalException) {
if (_log.isWarnEnabled()) {
_log.warn(portalException);
}
continue;
}
if (cpCatalogEntry != null) {
activeCPDefinitionIds.add(cpDefinitionId);
}
}
return activeCPDefinitionIds;
}
@Override
public String getCPDefinitionIdsCookieKey(long commerceChannelGroupId) {
return "COMMERCE_COMPARE_cpDefinitionIds_" + commerceChannelGroupId;
}
private List _getCpDefinitionIds(String cookieValue) {
return ListUtil.fromArray(
StringUtil.split(cookieValue, StringPool.COLON, -1L));
}
private static final Log _log = LogFactoryUtil.getLog(
CPCompareHelperImpl.class);
@Reference
private CPDefinitionHelper _cpDefinitionHelper;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy