Package org.apache.jetspeed.layout.impl

Source Code of org.apache.jetspeed.layout.impl.MovePortletAction

/*
* Copyright 2000-2004 The Apache Software Foundation.
*
* Licensed 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 org.apache.jetspeed.layout.impl;

import java.util.Map;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.jetspeed.ajax.AJAXException;
import org.apache.jetspeed.ajax.AjaxAction;
import org.apache.jetspeed.ajax.AjaxBuilder;
import org.apache.jetspeed.layout.Coordinate;
import org.apache.jetspeed.layout.PortletPlacementContext;
import org.apache.jetspeed.om.common.SecuredResource;
import org.apache.jetspeed.om.page.Fragment;
import org.apache.jetspeed.om.page.Page;
import org.apache.jetspeed.page.PageManager;
import org.apache.jetspeed.request.RequestContext;

/**
* Move Portlet portlet placement action
*
* AJAX Parameters:
*    id = the fragment id of the portlet to move
*    page = (implied in the URL)
* Additional Absolute Parameters: 
*    row = the new row to move to
*    col = the new column to move to
* Additional Relative Parameters: (move left, right, up, down)
*    none
*   
* @author <a>David Gurney</a>
* @author <a href="mailto:taylor@apache.org">David Sean Taylor</a>
* @version $Id: $
*/
public class MovePortletAction
    extends BasePortletAction
    implements AjaxAction, AjaxBuilder, Constants
{
    /** Logger */
    protected Log log = LogFactory.getLog(MovePortletAction.class);

    private int iMoveType = -1;

    private String sMoveType = null;
   
    private PageManager pageManager = null;

    public MovePortletAction(String template,
            String errorTemplate,
            String sMoveType)
    throws AJAXException   
    {
        this(template, errorTemplate, sMoveType, null);
    }
   
    public MovePortletAction(String template,
                             String errorTemplate,
                             String sMoveType,
                             PageManager pageManager)
    throws AJAXException
    {
        super(template, errorTemplate);
        this.pageManager = pageManager;
        setMoveType(sMoveType);
    }

    // Convert the move type into an integer
    public void setMoveType(String p_sMoveType) throws AJAXException
    {
        sMoveType = p_sMoveType;

        if (p_sMoveType.equalsIgnoreCase("moveabs"))
        {
            iMoveType = ABS;
        } else if (p_sMoveType.equalsIgnoreCase("moveup"))
        {
            iMoveType = UP;
        } else if (p_sMoveType.equalsIgnoreCase("movedown"))
        {
            iMoveType = DOWN;
        } else if (p_sMoveType.equalsIgnoreCase("moveleft"))
        {
            iMoveType = LEFT;
        } else if (p_sMoveType.equalsIgnoreCase("moveright"))
        {
            iMoveType = RIGHT;
        } else
        {
            throw new AJAXException("invalid move type of:" + p_sMoveType);
        }
    }

    public boolean run(RequestContext requestContext, Map resultMap)
    {
        boolean success = true;

        try
        {
            resultMap.put(ACTION, sMoveType);

            // Get the necessary parameters off of the request
            String portletId = requestContext
                    .getRequestParameter(PORTLETID);
            if (portletId == null)
            {
                throw new Exception("portlet id not provided");
            }
           
            resultMap.put(PORTLETID, portletId);

            if (false == checkAccess(requestContext, SecuredResource.EDIT_ACTION))
            {
                success = false;
                resultMap.put(REASON, "Insufficient access to edit page");
                return success;
            }
           
            PortletPlacementContext placement = new PortletPlacementContextImpl(requestContext);
            Fragment fragment = placement.getFragmentById(portletId);
            Coordinate returnCoordinate = null;

            // Only required for moveabs
            if (iMoveType == ABS)
            {
                String a_sCol = requestContext.getRequestParameter(COL);
                String a_sRow = requestContext.getRequestParameter(ROW);

                // Convert the col and row into integers
                int a_iCol = Integer.parseInt(a_sCol);
                int a_iRow = Integer.parseInt(a_sRow);

                Coordinate a_oCoordinate = new CoordinateImpl(0, 0, a_iCol,
                        a_iRow);
                returnCoordinate = placement.moveAbsolute(fragment, a_oCoordinate);
            }
            else if (iMoveType == LEFT)
            {
                returnCoordinate = placement.moveLeft(fragment);
            }
            else if (iMoveType == RIGHT)
            {
                returnCoordinate = placement.moveRight(fragment);
            }
            else if (iMoveType == UP)
            {
                returnCoordinate = placement.moveUp(fragment);
            }
            else if (iMoveType == DOWN)
            {
                returnCoordinate = placement.moveDown(fragment);
            }

            // synchronize back to the page layout root fragment
            Page page = placement.syncPageFragments();
           
            if (pageManager != null)
                pageManager.updatePage(page);
           
            // Use dummy values for now
            resultMap.put(STATUS, "success");

            // Need to determine what the old col and row were
            resultMap.put(OLDCOL, String.valueOf(returnCoordinate
                    .getOldCol()));
            resultMap.put(OLDROW, String.valueOf(returnCoordinate
                    .getOldRow()));

            // Need to determine what the new col and row were
            resultMap.put(NEWCOL, String.valueOf(returnCoordinate
                    .getNewCol()));
            resultMap.put(NEWROW, String.valueOf(returnCoordinate
                    .getNewRow()));
                                  

        }
        catch (Exception e)
        {
            // Log the exception
            log.error("exception while adding a portlet", e);
            resultMap.put(REASON, e.toString());
            // Return a failure indicator
            success = false;
        }

        return success;
    }
   
}
TOP

Related Classes of org.apache.jetspeed.layout.impl.MovePortletAction

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.