/* * $Id$ * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package mailreader2; import java.util.Map; import org.apache.struts.apps.mailreader.dao.ExpiredPasswordException; import org.apache.struts.apps.mailreader.dao.Subscription; import org.apache.struts.apps.mailreader.dao.User; import org.apache.struts.apps.mailreader.dao.UserDatabase; import org.apache.struts.apps.mailreader.dao.impl.memory.MemorySubscription; import org.apache.struts.apps.mailreader.dao.impl.memory.MemoryUser; import org.apache.struts2.interceptor.ApplicationAware; import org.apache.struts2.interceptor.SessionAware; import com.opensymphony.xwork2.ActionSupport; import com.opensymphony.xwork2.util.logging.Logger; import com.opensymphony.xwork2.util.logging.LoggerFactory; /** *

Base Action for MailreaderSupport application.

*

*

Note that this class does NOT implement model driven because of the way * the pre-existing model is designed. The MailReader DAO includes immutable * fields that can only be set on construction, and some objects do not have a * default construction. One approach would be to mirror all the DAO * properties on the Actions. As an alternative, this implementations uses the * DAO properties where possible, and uses local Action properties only as * needed. To create new objects, a blank temporary object is constructed, and * the page uses a mix of local Action properties and DAO properties. When the * new object is to be saved, the local Action properties are used to create * the object using the DAO factory methods, the input values are copied from * the temporary object, and the new object is saved. It's kludge, but it * avoids creating unnecessary local properties. Pick your poison.

*/ public class MailreaderSupport extends ActionSupport implements SessionAware, ApplicationAware { /** * Return CANCEL so apropriate result can be selected. * @return "cancel" so apropriate result can be selected. */ public String cancel() { return Constants.CANCEL; } /** * Convenience method to copy User properties. **/ protected void copyUser(User source, User target) { if ((source==null) || (target==null)) return; target.setFromAddress(source.getFromAddress()); target.setFullName(source.getFullName()); target.setPassword(source.getPassword()); target.setReplyToAddress(source.getReplyToAddress()); } /** * Convenience method to copy Subscription properties. **/ protected void copySubscription(Subscription source, Subscription target) { if ((source==null) || (target==null)) return; target.setAutoConnect(source.getAutoConnect()); target.setPassword(source.getPassword()); target.setType(source.getType()); target.setUsername(source.getUsername()); } // ---- ApplicationAware ---- /** *

Field to store application context or its proxy.

*

*

The application context lasts for the life of the application. A * reference to the database is stored in the application context at * startup.

*/ private Map application; /** *

Store a new application context.

* * @param value A Map representing application state */ public void setApplication(Map value) { application = value; } /** *

Provide application context.

*/ public Map getApplication() { return application; } // ---- SessionAware ---- /** *

Field to store session context, or its proxy.

*/ private Map session; /** *

Store a new session context.

* * @param value A Map representing session state */ public void setSession(Map value) { session = value; } /** *

Provide session context.

* * @return session context */ public Map getSession() { return session; } // ---- Task property (utilized by UI) ---- /** *

Field to store workflow task.

*

*

The Task is used to track the state of the CRUD workflows. It can be * set to Constant.CREATE, Constant.EDIT, or Constant.DELETE as * needed.

*/ private String task = null; /** *

Provide worklow task.

* * @return Returns the task. */ public String getTask() { return task; } /** *

Store new workflow task.

* * @param value The task to set. */ public void setTask(String value) { task = value; } // ---- Token property (utilized by UI) ---- /** *

Field to store double-submit guard.

*/ private String token = null; /** *

Provide Token.

* * @return Returns the token. */ public String getToken() { return token; } /** *

Store new Token.

* * @param value The token to set. */ public void setToken(String value) { token = value; } // ---- Host property ---- /** *

Field to store Subscription host.

*

*

The host is an immutable property of the Subscrtion DAP object, so * we need to store it locally until we are ready to create the * Subscription.

*/ private String host; /** *

Provide tSubscription host.

* * @return host property */ public String getHost() { return host; } /** *

Store new Subscription host.

* * @param value */ public void setHost(String value) { host = value; } // ---- Password property ---- /** *

Field to store User password property.

*

*

The User DAO object password proerty is immutable, so we store it * locally until we are ready to create the object.

*/ private String password = null; /** *

Provide User password

* * @return Returns the password. */ public String getPassword() { return password; } /** *

Store new User Password

* * @param value The password to set. */ public void setPassword(String value) { password = value; } // ---- Password2 property (confirmation) ---- /** *

Field to store the User password confirmation.

*

*

When a User object is created, we ask the client to enter the * password twice, to help ensure the password is being typed * correctly.

*/ private String password2 = null; /** *

Provide the User password confirmation.

* * @return Returns the confirmationpassword. */ public String getPassword2() { return password2; } /** *

Store a new User password confirmation.

* * @param value The confirmation password to set. */ public void setPassword2(String value) { password2 = value; } // ---- Username property ---- /** *

Field to store User username.

*

*

The User DAO object password proerty is immutable, so we store it * locally until we are ready to create the object.

*/ private String username = null; /** *

Provide User username.

* * @return Returns the User username. */ public String getUsername() { return username; } /** *

Store new User username

* * @param value The username to set. */ public void setUsername(String value) { username = value; } // ---- Database property ---- /** *

Provide reference to UserDatabase, or null if the database is not * available.

* * @return a reference to the UserDatabase or null if the database is not * available */ public UserDatabase getDatabase() { Object db = getApplication().get(Constants.DATABASE_KEY); if (db == null) { this.addActionError(getText("error.database.missing")); } return (UserDatabase) db; } /** *

Store a new reference to UserDatabase

* * @param database */ public void setDatabase(UserDatabase database) { getApplication().put(Constants.DATABASE_KEY, database); } // ---- User property ---- /** *

Provide reference to User object for authenticated user.

* * @return User object for authenticated user. */ public User getUser() { return (User) getSession().get(Constants.USER_KEY); } /** *

Store new reference to User Object.

* * @param user User object for authenticated user */ public void setUser(User user) { getSession().put(Constants.USER_KEY, user); } /** *

Obtain User object from database, or return null if the credentials * are not found or invalid.

* * @param username User username * @param password User password * @return User object or null if not found * @throws ExpiredPasswordException */ public User findUser(String username, String password) throws ExpiredPasswordException { // FIXME: Stupid testing hack to compensate for inadequate DAO layer if (Constants.EXPIRED_PASSWORD_EXCEPTION.equals(username)) { throw new ExpiredPasswordException(Constants.EXPIRED_PASSWORD_EXCEPTION); } User user = getDatabase().findUser(username); if ((user != null) && !user.getPassword().equals(password)) { user = null; } if (user == null) { this.addFieldError(Constants.PASSWORD_MISMATCH_FIELD, getText("error.password.mismatch")); } return user; } /** *

Log instance for this application.

*/ protected Logger log = LoggerFactory.getLogger(Constants.PACKAGE); /** *

Persist the User object, including subscriptions, to the database. *

* * @throws java.lang.Exception on database error */ public void saveUser() throws Exception { try { getDatabase().save(); } catch (Exception e) { String message = Constants.LOG_DATABASE_SAVE_ERROR + getUser() .getUsername(); log.error(message, e); throw new Exception(message, e); } } public void createInputUser() { User user = new MemoryUser(null, null); setUser(user); } /** *

Verify input for creating a new user, create the user, and process * the login.

* * @return A new User and empty Errors if create succeeds, or null and * Errors if create fails */ public User createUser(String username, String password) { UserDatabase database = getDatabase(); User user; try { user = database.findUser(username); } catch (ExpiredPasswordException e) { user = getUser(); // Just so that it is not null } if (user != null) { this.addFieldError("username", "error.username.unique"); return null; } return database.createUser(username); } // Since user.username is immutable, we have to use some local properties /** *

Use the current User object to create a new User object, and make * the new User object the authenticated user.

*

*

The "current" User object is usually a temporary object being used * to capture input.

* * @param _username User username * @param _password User password */ public void copyUser(String _username, String _password) { User input = getUser(); input.setPassword(_password); User user = createUser(_username, _password); if (null != user) { copyUser(input,user); setUser(user); } } // ---- Subscription property ---- /** *

Obtain the cached Subscription object, if any.

* * @return Cached Subscription object or null */ public Subscription getSubscription() { return (Subscription) getSession().get(Constants.SUBSCRIPTION_KEY); } /** *

Store new User Subscription.

* * @param subscription */ public void setSubscription(Subscription subscription) { getSession().put(Constants.SUBSCRIPTION_KEY, subscription); } /** *

Obtain User Subscription object for the given host, or return null * if not found.

* *

It would be possible for this code to throw a NullPointerException, * but the ExceptionHandler in the xwork.xml will catch that for us.

* * @return The matching Subscription or null */ public Subscription findSubscription(String host) { Subscription subscription; subscription = getUser().findSubscription(host); return subscription; } /** *

Obtain uSER Subscription for the local Host property.

*

*

Usually, the host property will be set from the client request, * because it was embedded in a link to the Subcription action. * * @return Subscription or null if not found */ public Subscription findSubscription() { return findSubscription(getHost()); } /** *

Provide a "temporary" User Subscription object that can be used to * capture input values.

*/ public void createInputSubscription() { Subscription sub = new MemorySubscription(getUser(), null); setSubscription(sub); setHost(sub.getHost()); } /** *

Provide new User Subscription object for the given host, or null if * the host is not unique.

* * @param host * @return New User Subscription object or null */ public Subscription createSubscription(String host) { Subscription sub; sub = findSubscription(host); if (null != sub) { // FIXME - localization - "error.host.unique") addFieldError(Constants.HOST,"That hostname is already defined"); return null; } return getUser().createSubscription(host); } /** *

Create a new Subscription from the current Subscription object, * making the new Subscription the current Subscription.

*

*

Usually, the "current" Subscription is a temporary object being used * to capture input values.

* * @param host */ public void copySubscription(String host) { Subscription input = getSubscription(); Subscription sub = createSubscription(host); if (null != sub) { copySubscription(input, sub); setSubscription(sub); setHost(sub.getHost()); } } /** *

Delete the current Subscription object from the database.

*/ public void removeSubscription() { getUser().removeSubscription(getSubscription()); getSession().remove(Constants.SUBSCRIPTION_KEY); } /** *

Provide MailServer Host for current User Subscription.

* * @return MailServer Host for current User Subscription */ public String getSubscriptionHost() { Subscription sub = getSubscription(); if (null == sub) { return null; } return sub.getHost(); } }