All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.liferay.commerce.initializer.util.CPOptionsImporter 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.commerce.initializer.util;

import com.liferay.commerce.initializer.util.internal.CommerceInitializerUtil;
import com.liferay.commerce.product.model.CPOption;
import com.liferay.commerce.product.model.CPOptionValue;
import com.liferay.commerce.product.service.CPOptionLocalService;
import com.liferay.commerce.product.service.CPOptionValueLocalService;
import com.liferay.portal.kernel.exception.PortalException;
import com.liferay.portal.kernel.json.JSONArray;
import com.liferay.portal.kernel.json.JSONObject;
import com.liferay.portal.kernel.model.User;
import com.liferay.portal.kernel.service.ServiceContext;
import com.liferay.portal.kernel.service.UserLocalService;
import com.liferay.portal.kernel.util.LocaleUtil;
import com.liferay.portal.kernel.util.TextFormatter;

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Locale;
import java.util.Map;

import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.Reference;

/**
 * @author Andrea Di Giorgi
 */
@Component(service = CPOptionsImporter.class)
public class CPOptionsImporter {

	public List importCPOptions(
			JSONArray jsonArray, long scopeGroupId, long userId)
		throws PortalException {

		User user = _userLocalService.getUser(userId);

		ServiceContext serviceContext = new ServiceContext();

		serviceContext.setCompanyId(user.getCompanyId());
		serviceContext.setScopeGroupId(scopeGroupId);
		serviceContext.setUserId(userId);

		List cpOptions = new ArrayList<>(jsonArray.length());

		for (int i = 0; i < jsonArray.length(); i++) {
			CPOption cpOption = _importCPOption(
				jsonArray.getJSONObject(i), serviceContext);

			cpOptions.add(cpOption);
		}

		return cpOptions;
	}

	private CPOptionValue _addCPOptionValue(
			CPOption cpOption, double priority, String key,
			ServiceContext serviceContext)
		throws PortalException {

		Map nameMap = Collections.singletonMap(
			LocaleUtil.getSiteDefault(),
			TextFormatter.format(key, TextFormatter.J));

		return _cpOptionValueLocalService.addCPOptionValue(
			cpOption.getCPOptionId(), nameMap, priority, key, serviceContext);
	}

	private CPOption _importCPOption(
			JSONObject jsonObject, ServiceContext serviceContext)
		throws PortalException {

		// Commerce product option

		String key = jsonObject.getString("key");

		CPOption cpOption = _cpOptionLocalService.fetchCPOption(
			serviceContext.getCompanyId(), key);

		if (cpOption != null) {
			return cpOption;
		}

		Locale locale = LocaleUtil.getSiteDefault();

		Map nameMap = Collections.singletonMap(
			locale, CommerceInitializerUtil.getValue(jsonObject, "name", key));

		Map descriptionMap = Collections.singletonMap(
			locale, jsonObject.getString("description"));

		String commerceOptionTypeKey = jsonObject.getString(
			"commerceOptionTypeKey", "select");
		boolean facetable = jsonObject.getBoolean("facetable");
		boolean required = jsonObject.getBoolean("required");
		boolean skuContributor = jsonObject.getBoolean("skuContributor");

		cpOption = _cpOptionLocalService.addCPOption(
			null, serviceContext.getUserId(), nameMap, descriptionMap,
			commerceOptionTypeKey, facetable, required, skuContributor, key,
			serviceContext);

		// Commerce product option values

		JSONArray valuesJSONArray = jsonObject.getJSONArray("values");

		if (valuesJSONArray == null) {
			return cpOption;
		}

		for (int i = 0; i < valuesJSONArray.length(); i++) {
			JSONObject valueJSONObject = valuesJSONArray.getJSONObject(i);

			if (valueJSONObject != null) {
				_importCPOptionValue(
					valueJSONObject, cpOption, i, serviceContext);
			}
			else {
				_addCPOptionValue(
					cpOption, i, valuesJSONArray.getString(i), serviceContext);
			}
		}

		return cpOption;
	}

	private CPOptionValue _importCPOptionValue(
			JSONObject jsonObject, CPOption cpOption, double defaultPriority,
			ServiceContext serviceContext)
		throws PortalException {

		String key = jsonObject.getString("key");

		Map nameMap = Collections.singletonMap(
			LocaleUtil.getSiteDefault(),
			CommerceInitializerUtil.getValue(jsonObject, "name", key));

		double priority = jsonObject.getDouble("priority", defaultPriority);

		return _cpOptionValueLocalService.addCPOptionValue(
			cpOption.getCPOptionId(), nameMap, priority, key, serviceContext);
	}

	@Reference
	private CPOptionLocalService _cpOptionLocalService;

	@Reference
	private CPOptionValueLocalService _cpOptionValueLocalService;

	@Reference
	private UserLocalService _userLocalService;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy