KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > blandware > atleap > webapp > action > core > layout > CallUpdateLayoutAction


1 /*
2  * Copyright 2004 Blandware (http://www.blandware.com)
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16 package com.blandware.atleap.webapp.action.core.layout;
17
18 import com.blandware.atleap.common.Constants;
19 import com.blandware.atleap.model.core.Layout;
20 import com.blandware.atleap.service.core.LayoutManager;
21 import com.blandware.atleap.webapp.action.core.BaseAction;
22 import com.blandware.atleap.webapp.form.LayoutForm;
23 import com.blandware.atleap.webapp.util.core.WebappConstants;
24 import com.blandware.atleap.webapp.util.core.WebappUtil;
25 import org.apache.struts.action.ActionForm;
26 import org.apache.struts.action.ActionForward;
27 import org.apache.struts.action.ActionMapping;
28 import org.apache.struts.action.ActionMessage;
29 import org.apache.struts.action.ActionMessages;
30
31 import javax.servlet.http.HttpServletRequest JavaDoc;
32 import javax.servlet.http.HttpServletResponse JavaDoc;
33
34 /**
35  * <p>Prepares form bean to update layout's data
36  * </p>
37  * <p><a HREF="CallUpdateLayoutAction.java.htm"><i>View Source</i></a></p>
38  * <p/>
39  *
40  * @author Sergey Zubtcovskii <a HREF="mailto:sergey.zubtcovskii@blandware.com">&lt;sergey.zubtcovskii@blandware.com&gt;</a>
41  * @version $Revision: 1.14 $ $Date: 2006/03/10 17:10:25 $
42  * @struts.action path="/core/layout/callUpdate"
43  * name="layoutForm"
44  * scope="request"
45  * validate="false"
46  * roles="core-layout-update, core-layout-view"
47  * @struts.action-forward name="updateLayout"
48  * path=".core.layout.update"
49  * @struts.action-forward name="listLayouts"
50  * path="/core/layout/list.do"
51  * redirect="true"
52  */

53 public final class CallUpdateLayoutAction extends BaseAction {
54     /**
55      * @param mapping The ActionMapping used to select this instance
56      * @param form The optional ActionForm bean for this request (if any)
57      * @param request The HTTP request we are proceeding
58      * @param response The HTTP response we are creating
59      * @return an ActionForward instance describing where and how
60      * control should be forwarded, or null if response
61      * has already been completed
62      */

63     public ActionForward execute(ActionMapping mapping, ActionForm form,
64                                  HttpServletRequest JavaDoc request, HttpServletResponse JavaDoc response) throws Exception JavaDoc {
65
66         if ( isCancelled(request) ) {
67             return mapping.findForward("listLayouts");
68         }
69
70         if ( !request.isUserInRole("core-layout-update") ) {
71             response.sendError(HttpServletResponse.SC_FORBIDDEN);
72             return null;
73         }
74
75         LayoutForm layoutForm = (LayoutForm) form;
76         Long JavaDoc layoutId = null;
77         if ( layoutForm.getId() != null ) {
78             layoutId = Long.valueOf(layoutForm.getId());
79         } else if ( request.getSession().getAttribute(WebappConstants.LAYOUT_ID_KEY) != null ) {
80             layoutId = (Long JavaDoc) request.getSession().getAttribute(WebappConstants.LAYOUT_ID_KEY);
81         } else {
82             if ( log.isWarnEnabled() ) {
83                 log.warn("Missing layout ID. Returning to list...");
84             }
85             return mapping.findForward("listLayouts");
86         }
87
88         LayoutManager layoutManager = (LayoutManager) getBean(Constants.LAYOUT_MANAGER_BEAN);
89         Layout layout = layoutManager.retrieveLayout(layoutId);
90         if ( layout == null ) {
91             // layout not found. it might be deleted by someone else
92
ActionMessages errors = new ActionMessages();
93             errors.add("layoutNotFound", new ActionMessage("core.layout.errors.notFound"));
94             saveErrors(request, errors);
95             return mapping.findForward("listLayouts");
96         }
97         WebappUtil.copyProperties(layoutForm, layout, request);
98
99         // save transaction token in request
100
saveToken(request);
101         return mapping.findForward("updateLayout");
102     }
103
104 }
Popular Tags