/**
* 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.portal.events;
import com.liferay.portal.deploy.DeployUtil;
import com.liferay.portal.deploy.RequiredPluginsUtil;
import com.liferay.portal.kernel.deploy.auto.AutoDeployDir;
import com.liferay.portal.kernel.deploy.auto.AutoDeployListener;
import com.liferay.portal.kernel.deploy.auto.AutoDeployUtil;
import com.liferay.portal.kernel.deploy.hot.HotDeployListener;
import com.liferay.portal.kernel.deploy.hot.HotDeployUtil;
import com.liferay.portal.kernel.events.SimpleAction;
import com.liferay.portal.kernel.javadoc.JavadocManagerUtil;
import com.liferay.portal.kernel.jsonwebservice.JSONWebServiceActionsManagerUtil;
import com.liferay.portal.kernel.log.Log;
import com.liferay.portal.kernel.log.LogFactoryUtil;
import com.liferay.portal.kernel.servlet.ServletContextPool;
import com.liferay.portal.kernel.util.BasePortalLifecycle;
import com.liferay.portal.kernel.util.ClassLoaderUtil;
import com.liferay.portal.kernel.util.InfrastructureUtil;
import com.liferay.portal.kernel.util.InstanceFactory;
import com.liferay.portal.kernel.util.PortalLifecycle;
import com.liferay.portal.kernel.util.PortalLifecycleUtil;
import com.liferay.portal.kernel.util.PropsKeys;
import com.liferay.portal.kernel.util.ServerDetector;
import com.liferay.portal.kernel.util.StringPool;
import com.liferay.portal.kernel.util.Validator;
import com.liferay.portal.spring.context.PortalContextLoaderListener;
import com.liferay.portal.struts.AuthPublicPathRegistry;
import com.liferay.portal.util.BrowserLauncher;
import com.liferay.portal.util.PrefsPropsUtil;
import com.liferay.portal.util.PropsUtil;
import com.liferay.portal.util.PropsValues;
import java.io.File;
import java.util.ArrayList;
import java.util.List;
import javax.servlet.ServletContext;
/**
* @author Brian Wing Shun Chan
*/
public class GlobalStartupAction extends SimpleAction {
public static List<AutoDeployListener> getAutoDeployListeners(
boolean reset) {
if ((_autoDeployListeners != null) && !reset) {
return _autoDeployListeners;
}
List<AutoDeployListener> autoDeployListeners = new ArrayList<>();
String[] autoDeployListenerClassNames = PropsUtil.getArray(
PropsKeys.AUTO_DEPLOY_LISTENERS);
for (String autoDeployListenerClassName :
autoDeployListenerClassNames) {
try {
if (_log.isDebugEnabled()) {
_log.debug("Instantiating " + autoDeployListenerClassName);
}
AutoDeployListener autoDeployListener =
(AutoDeployListener)InstanceFactory.newInstance(
autoDeployListenerClassName);
autoDeployListeners.add(autoDeployListener);
}
catch (Exception e) {
_log.error(e);
}
}
_autoDeployListeners = autoDeployListeners;
return _autoDeployListeners;
}
public static List<HotDeployListener> getHotDeployListeners() {
if (_hotDeployListeners != null) {
return _hotDeployListeners;
}
List<HotDeployListener> hotDeployListeners = new ArrayList<>();
String[] hotDeployListenerClassNames = PropsUtil.getArray(
PropsKeys.HOT_DEPLOY_LISTENERS);
for (String hotDeployListenerClassName : hotDeployListenerClassNames) {
try {
if (_log.isDebugEnabled()) {
_log.debug("Instantiating " + hotDeployListenerClassName);
}
HotDeployListener hotDeployListener =
(HotDeployListener)InstanceFactory.newInstance(
hotDeployListenerClassName);
hotDeployListeners.add(hotDeployListener);
}
catch (Exception e) {
_log.error(e);
}
}
_hotDeployListeners = hotDeployListeners;
return _hotDeployListeners;
}
@Override
public void run(String[] ids) {
// Auto deploy
try {
File deployDir = new File(
PrefsPropsUtil.getString(
PropsKeys.AUTO_DEPLOY_DEPLOY_DIR,
PropsValues.AUTO_DEPLOY_DEPLOY_DIR));
File destDir = new File(DeployUtil.getAutoDeployDestDir());
long interval = PrefsPropsUtil.getLong(
PropsKeys.AUTO_DEPLOY_INTERVAL,
PropsValues.AUTO_DEPLOY_INTERVAL);
List<AutoDeployListener> autoDeployListeners =
getAutoDeployListeners(false);
AutoDeployDir autoDeployDir = new AutoDeployDir(
AutoDeployDir.DEFAULT_NAME, deployDir, destDir, interval,
autoDeployListeners);
if (PrefsPropsUtil.getBoolean(
PropsKeys.AUTO_DEPLOY_ENABLED,
PropsValues.AUTO_DEPLOY_ENABLED)) {
if (_log.isInfoEnabled()) {
_log.info("Registering auto deploy directories");
}
AutoDeployUtil.registerDir(autoDeployDir);
}
else {
if (_log.isInfoEnabled()) {
_log.info("Not registering auto deploy directories");
}
}
}
catch (Exception e) {
_log.error(e);
}
// Hot deploy
if (_log.isDebugEnabled()) {
_log.debug("Registering hot deploy listeners");
}
for (HotDeployListener hotDeployListener : getHotDeployListeners()) {
HotDeployUtil.registerListener(hotDeployListener);
}
// Authentication
AuthPublicPathRegistry.register(PropsValues.AUTH_PUBLIC_PATHS);
// Javadoc
ClassLoader contextClassLoader =
ClassLoaderUtil.getContextClassLoader();
JavadocManagerUtil.load(StringPool.BLANK, contextClassLoader);
// JNDI
try {
InfrastructureUtil.getDataSource();
}
catch (Exception e) {
_log.error(e, e);
}
try {
if (!ServerDetector.isJOnAS()) {
InfrastructureUtil.getMailSession();
}
}
catch (Exception e) {
if (_log.isWarnEnabled()) {
_log.warn(e.getMessage());
}
}
// JSON web service
ServletContext servletContext = ServletContextPool.get(
PortalContextLoaderListener.getPortalServletContextName());
JSONWebServiceActionsManagerUtil.registerServletContext(servletContext);
// Plugins
PortalLifecycleUtil.register(
new BasePortalLifecycle() {
@Override
protected void doPortalDestroy() {
}
@Override
protected void doPortalInit() {
RequiredPluginsUtil.startCheckingRequiredPlugins();
}
},
PortalLifecycle.METHOD_INIT);
// Launch browser
if (Validator.isNotNull(PropsValues.BROWSER_LAUNCHER_URL)) {
Thread browserLauncherThread = new Thread(new BrowserLauncher());
browserLauncherThread.start();
}
}
private static final Log _log = LogFactoryUtil.getLog(
GlobalStartupAction.class);
private static List<AutoDeployListener> _autoDeployListeners;
private static List<HotDeployListener> _hotDeployListeners;
}