001: /**
002: * Copyright (c) 2000-2008 Liferay, Inc. All rights reserved.
003: *
004: * Permission is hereby granted, free of charge, to any person obtaining a copy
005: * of this software and associated documentation files (the "Software"), to deal
006: * in the Software without restriction, including without limitation the rights
007: * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
008: * copies of the Software, and to permit persons to whom the Software is
009: * furnished to do so, subject to the following conditions:
010: *
011: * The above copyright notice and this permission notice shall be included in
012: * all copies or substantial portions of the Software.
013: *
014: * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
015: * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
016: * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
017: * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
018: * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
019: * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
020: * SOFTWARE.
021: */package com.liferay.portlet.enterpriseadmin.action;
022:
023: import com.liferay.portal.EmailAddressException;
024: import com.liferay.portal.NoSuchEmailAddressException;
025: import com.liferay.portal.NoSuchListTypeException;
026: import com.liferay.portal.kernel.util.Constants;
027: import com.liferay.portal.kernel.util.ParamUtil;
028: import com.liferay.portal.security.auth.PrincipalException;
029: import com.liferay.portal.service.EmailAddressServiceUtil;
030: import com.liferay.portal.struts.PortletAction;
031: import com.liferay.util.servlet.SessionErrors;
032:
033: import javax.portlet.ActionRequest;
034: import javax.portlet.ActionResponse;
035: import javax.portlet.PortletConfig;
036: import javax.portlet.RenderRequest;
037: import javax.portlet.RenderResponse;
038:
039: import org.apache.struts.action.ActionForm;
040: import org.apache.struts.action.ActionForward;
041: import org.apache.struts.action.ActionMapping;
042:
043: /**
044: * <a href="EditEmailAddressAction.java.html"><b><i>View Source</i></b></a>
045: *
046: * @author Brian Wing Shun Chan
047: * @author Alexander Chow
048: *
049: */
050: public class EditEmailAddressAction extends PortletAction {
051:
052: public void processAction(ActionMapping mapping, ActionForm form,
053: PortletConfig config, ActionRequest req, ActionResponse res)
054: throws Exception {
055:
056: String cmd = ParamUtil.getString(req, Constants.CMD);
057:
058: try {
059: if (cmd.equals(Constants.ADD)
060: || cmd.equals(Constants.UPDATE)) {
061: updateEmailAddress(req);
062: } else if (cmd.equals(Constants.DELETE)) {
063: deleteEmailAddress(req);
064: }
065:
066: sendRedirect(req, res);
067: } catch (Exception e) {
068: if (e instanceof NoSuchEmailAddressException
069: || e instanceof PrincipalException) {
070:
071: SessionErrors.add(req, e.getClass().getName());
072:
073: setForward(req, "portlet.enterprise_admin.error");
074: } else if (e instanceof EmailAddressException
075: || e instanceof NoSuchListTypeException) {
076:
077: SessionErrors.add(req, e.getClass().getName());
078: } else {
079: throw e;
080: }
081: }
082: }
083:
084: public ActionForward render(ActionMapping mapping, ActionForm form,
085: PortletConfig config, RenderRequest req, RenderResponse res)
086: throws Exception {
087:
088: try {
089: ActionUtil.getEmailAddress(req);
090: } catch (Exception e) {
091: if (e instanceof NoSuchEmailAddressException
092: || e instanceof PrincipalException) {
093:
094: SessionErrors.add(req, e.getClass().getName());
095:
096: return mapping
097: .findForward("portlet.enterprise_admin.error");
098: } else {
099: throw e;
100: }
101: }
102:
103: return mapping.findForward(getForward(req,
104: "portlet.enterprise_admin.edit_email_address"));
105: }
106:
107: protected void deleteEmailAddress(ActionRequest req)
108: throws Exception {
109: long emailAddressId = ParamUtil.getLong(req, "emailAddressId");
110:
111: EmailAddressServiceUtil.deleteEmailAddress(emailAddressId);
112: }
113:
114: protected void updateEmailAddress(ActionRequest req)
115: throws Exception {
116: long emailAddressId = ParamUtil.getLong(req, "emailAddressId");
117:
118: String className = ParamUtil.getString(req, "className");
119: long classPK = ParamUtil.getLong(req, "classPK");
120:
121: String address = ParamUtil.getString(req, "address");
122: int typeId = ParamUtil.getInteger(req, "typeId");
123: boolean primary = ParamUtil.getBoolean(req, "primary");
124:
125: if (emailAddressId <= 0) {
126:
127: // Add email address
128:
129: EmailAddressServiceUtil.addEmailAddress(className, classPK,
130: address, typeId, primary);
131: } else {
132:
133: // Update email address
134:
135: EmailAddressServiceUtil.updateEmailAddress(emailAddressId,
136: address, typeId, primary);
137: }
138: }
139:
140: }
|