com.liferay.marketplace.store.web.internal.util.MarketplaceLicenseUtil.java Source code

Java tutorial

Introduction

Here is the source code for com.liferay.marketplace.store.web.internal.util.MarketplaceLicenseUtil.java

Source

/**
 * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
 *
 * This library is free software; you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License as published by the Free
 * Software Foundation; either version 2.1 of the License, or (at your option)
 * any later version.
 *
 * This library is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
 * details.
 */

package com.liferay.marketplace.store.web.internal.util;

import com.liferay.portal.kernel.json.JSONFactoryUtil;
import com.liferay.portal.kernel.json.JSONObject;
import com.liferay.portal.kernel.license.util.LicenseManagerUtil;
import com.liferay.portal.kernel.util.FileUtil;
import com.liferay.portal.kernel.util.PropsKeys;
import com.liferay.portal.kernel.util.PropsUtil;
import com.liferay.portal.kernel.util.StringUtil;
import com.liferay.portal.util.LicenseUtil;

import java.io.File;

import java.util.Arrays;

/**
 * @author Joan Kim
 */
public class MarketplaceLicenseUtil {

    public static String getOrder(String productEntryName) throws Exception {
        JSONObject jsonObject = JSONFactoryUtil.createJSONObject();

        jsonObject.put("cmd", "GET_ORDER");
        jsonObject.put("hostName", LicenseManagerUtil.getHostName());
        jsonObject.put("ipAddresses", StringUtil.merge(LicenseManagerUtil.getIpAddresses()));
        jsonObject.put("macAddresses", StringUtil.merge(LicenseManagerUtil.getMacAddresses()));
        jsonObject.put("productEntryName", productEntryName);
        jsonObject.put("serverId", Arrays.toString(getServerIdBytes()));

        String response = LicenseUtil.sendRequest(jsonObject.toString());

        JSONObject responseJSONObject = JSONFactoryUtil.createJSONObject(response);

        return responseJSONObject.getString("orderUuid");
    }

    public static byte[] getServerIdBytes() throws Exception {
        File serverIdFile = new File(_LICENSE_SERVER_ID_FILE_NAME);

        if (!serverIdFile.exists()) {
            return new byte[0];
        }

        return FileUtil.getBytes(serverIdFile);
    }

    public static void registerOrder(String orderUuid, String productEntryName) throws Exception {

        LicenseUtil.registerOrder(orderUuid, productEntryName, 0);
    }

    private static final String _LICENSE_SERVER_ID_FILE_NAME = PropsUtil.get(PropsKeys.LIFERAY_HOME)
            + "/data/license/server/serverId";

}