Package org.vosao.filter

Source Code of org.vosao.filter.PluginCronFilter

/**
* Vosao CMS. Simple CMS for Google App Engine.
*
* Copyright (C) 2009-2010 Vosao development team.
*
* 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.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
*
* email: vosao.dev@gmail.com
*/

package org.vosao.filter;

import java.io.IOException;
import java.util.Date;

import javax.servlet.Filter;
import javax.servlet.FilterChain;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.vosao.business.mq.Topic;
import org.vosao.business.mq.message.SimpleMessage;

/**
* Execute plugin cron tasks.
* @author Alexander Oleynik
*
*/
public class PluginCronFilter extends AbstractFilter implements Filter {
   
    private static final Log logger = LogFactory.getLog(PluginCronFilter.class);

    private static final String PLUGIN_CRON_URL = "/_ah/cron/plugin";
    private static final String SESSION_CLEAN_CRON_URL = "/_ah/cron/session_clean";
    private static final String PAGE_PUBLISH_CRON_URL = "/_ah/cron/page_publish";
   
    public PluginCronFilter() {
      super();
    }
 
    public void doFilter(ServletRequest request, ServletResponse response,
        FilterChain chain) throws IOException, ServletException {
      Date now = new Date();
      HttpServletRequest httpRequest = (HttpServletRequest)request;
        HttpServletResponse httpResponse = (HttpServletResponse)response;
        String url = httpRequest.getServletPath();
        boolean processed = false;
        if (url.equals(PLUGIN_CRON_URL)) {
          getBusiness().getPluginBusiness().cronSchedule(now);
        processed = true;
        }
        if (url.equals(SESSION_CLEAN_CRON_URL)) {
        getMessageQueue().publish(new SimpleMessage(
            Topic.SESSION_CLEAN, "start"));
        logger.info("Added new session clean task");
        processed = true;
        }
        if (url.equals(PAGE_PUBLISH_CRON_URL)) {
        getMessageQueue().publish(new SimpleMessage(
            Topic.PAGE_PUBLISH_CRON));
        logger.info("Added new page publish task");
        processed = true;
        }
        if (processed) {
          writeContent(httpResponse, "<h4>OK</h4>");
          return;
        }
        chain.doFilter(request, response);
    }
   
    private void writeContent(HttpServletResponse response, String content)
        throws IOException {
      response.setContentType("text/html");
      response.setCharacterEncoding("UTF-8");
      response.getWriter().append("<html><body>" + content + "</body></html>");
    }
   
}
TOP

Related Classes of org.vosao.filter.PluginCronFilter

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.