001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portal.deploy.auto;
016    
017    import com.liferay.portal.kernel.deploy.auto.AutoDeployException;
018    import com.liferay.portal.kernel.deploy.auto.BaseAutoDeployListener;
019    import com.liferay.portal.kernel.log.Log;
020    import com.liferay.portal.kernel.log.LogFactoryUtil;
021    
022    import java.io.File;
023    
024    /**
025     * @author Brian Wing Shun Chan
026     */
027    public class HookAutoDeployListener extends BaseAutoDeployListener {
028    
029            public HookAutoDeployListener() {
030                    _deployer = new HookAutoDeployer();
031            }
032    
033            public void deploy(File file) throws AutoDeployException {
034                    if (_log.isDebugEnabled()) {
035                            _log.debug("Invoking deploy for " + file.getPath());
036                    }
037    
038                    if (!isHookPlugin(file)) {
039                            return;
040                    }
041    
042                    if (_log.isInfoEnabled()) {
043                            _log.info("Copying web plugin for " + file.getPath());
044                    }
045    
046                    _deployer.autoDeploy(file.getName());
047    
048                    if (_log.isInfoEnabled()) {
049                            _log.info(
050                                    "Hook for " +  file.getPath() + " copied successfully. " +
051                                            "Deployment will start in a few seconds.");
052                    }
053            }
054    
055            private static Log _log = LogFactoryUtil.getLog(
056                    HookAutoDeployListener.class);
057    
058            private AutoDeployer _deployer;
059    
060    }