Package com.agiletec.plugins.jpwebmail.apsadmin.system

Source Code of com.agiletec.plugins.jpwebmail.apsadmin.system.WebMailStoreFactoryInterceptor

/*
*
* Copyright 2013 Entando S.r.l. (http://www.entando.com) All rights reserved.
*
* This file is part of Entando Enterprise Edition software.
* You can redistribute it and/or modify it
* under the terms of the Entando's EULA
*
* See the file License for the specific language governing permissions  
* and limitations under the License
*
*
*
* Copyright 2013 Entando S.r.l. (http://www.entando.com) All rights reserved.
*
*/
package com.agiletec.plugins.jpwebmail.apsadmin.system;

import javax.mail.Store;
import javax.servlet.http.HttpSession;

import org.apache.struts2.ServletActionContext;

import com.agiletec.aps.system.ApsSystemUtils;
import com.agiletec.aps.system.SystemConstants;
import com.agiletec.aps.system.services.user.UserDetails;
import com.agiletec.aps.util.ApsWebApplicationUtils;
import com.agiletec.plugins.jpwebmail.aps.system.JpwebmailSystemConstants;
import com.agiletec.plugins.jpwebmail.aps.system.services.webmail.IWebMailManager;
import com.agiletec.plugins.jpwebmail.apsadmin.webmail.IWebMailBaseAction;
import com.opensymphony.xwork2.ActionInvocation;
import com.opensymphony.xwork2.interceptor.AbstractInterceptor;

/**
* @author E.Santoboni
*/
public class WebMailStoreFactoryInterceptor extends AbstractInterceptor {
 
  @Override
  public String intercept(ActionInvocation invocation) throws Exception {
    IWebMailManager webmailManager = (IWebMailManager) ApsWebApplicationUtils.getBean(JpwebmailSystemConstants.WEBMAIL_MANAGER, ServletActionContext.getRequest());
    Store store = this.getStore(webmailManager);
    if (null == store) return "noStore";
    IWebMailBaseAction webMailAction = (IWebMailBaseAction) invocation.getAction();
    webMailAction.setStore(store);
    String result = invocation.invoke();
    webMailAction.closeFolders();
    webmailManager.closeConnection(store);
    return result;
  }
 
  private Store getStore(IWebMailManager webmailManager) {
    HttpSession session = ServletActionContext.getRequest().getSession();
    UserDetails currentUser = (UserDetails) session.getAttribute(SystemConstants.SESSIONPARAM_CURRENT_USER);
    Store store = null;
    try {
      store = webmailManager.initInboxConnection(currentUser.getUsername(), currentUser.getPassword());
    } catch (Throwable t) {
      ApsSystemUtils.logThrowable(t, this, "getStore");
      return null;
    }
    return store;
  }
 
}
TOP

Related Classes of com.agiletec.plugins.jpwebmail.apsadmin.system.WebMailStoreFactoryInterceptor

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.