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

META-INF.resources.process_in_progress.init.jsp Maven / Gradle / Ivy

There is a newer version: 7.4.3.112-ga112
Show newest version
<%--
/**
 * 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.
 */
--%>

<%@ include file="/init.jsp" %>

<%
BackgroundTask backgroundTask = (BackgroundTask)request.getAttribute("liferay-staging:process-in-progress:backgroundTask");
boolean listView = GetterUtil.getBoolean(request.getAttribute("liferay-staging:process-in-progress:listView"));

BackgroundTaskStatus backgroundTaskStatus = null;

if (backgroundTask.isInProgress()) {
	backgroundTaskStatus = BackgroundTaskStatusRegistryUtil.getBackgroundTaskStatus(backgroundTask.getBackgroundTaskId());
}

String cmd = null;
String shortenedStagedModelName = null;
String localizedStagedModelType = null;

long allProgressBarCountersTotal = 0;
int percentage = 100;

if (backgroundTaskStatus != null) {
	cmd = ArrayUtil.toString(ExportImportConfigurationHelper.getExportImportConfigurationParameter(backgroundTask, Constants.CMD), StringPool.BLANK);

	long allModelAdditionCountersTotal = GetterUtil.getLong(backgroundTaskStatus.getAttribute("allModelAdditionCountersTotal"));
	long allPortletAdditionCounter = GetterUtil.getLong(backgroundTaskStatus.getAttribute("allPortletAdditionCounter"));
	long currentModelAdditionCountersTotal = GetterUtil.getLong(backgroundTaskStatus.getAttribute("currentModelAdditionCountersTotal"));
	long currentPortletAdditionCounter = GetterUtil.getLong(backgroundTaskStatus.getAttribute("currentPortletAdditionCounter"));

	allProgressBarCountersTotal = allModelAdditionCountersTotal + allPortletAdditionCounter;
	long currentProgressBarCountersTotal = currentModelAdditionCountersTotal + currentPortletAdditionCounter;

	if (allProgressBarCountersTotal > 0) {
		int base = 100;

		String phase = GetterUtil.getString(backgroundTaskStatus.getAttribute("phase"));

		if (phase.equals(Constants.EXPORT) && !Objects.equals(cmd, Constants.PUBLISH_TO_REMOTE)) {
			base = 50;
		}

		percentage = Math.round((float)currentProgressBarCountersTotal / allProgressBarCountersTotal * base);
	}

	String stagedModelName = (String)backgroundTaskStatus.getAttribute("stagedModelName");

	shortenedStagedModelName = stagedModelName;

	if (Validator.isNotNull(stagedModelName) && (stagedModelName.length() > (20 + StringPool.TRIPLE_PERIOD.length()))) {
		shortenedStagedModelName = StringPool.TRIPLE_PERIOD + stagedModelName.substring(stagedModelName.length() - 20);
	}

	String stagedModelType = (String)backgroundTaskStatus.getAttribute("stagedModelType");

	if (Validator.isNotNull(stagedModelType)) {
		localizedStagedModelType = ResourceActionsUtil.getModelResource(locale, stagedModelType);
	}
}
%>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy