org.hippoecm.frontend.plugins.console.menu.rename.RenameDialog.java Source code

Java tutorial

Introduction

Here is the source code for org.hippoecm.frontend.plugins.console.menu.rename.RenameDialog.java

Source

/*
 *  Copyright 2008-2014 Hippo B.V. (http://www.onehippo.com)
 * 
 *  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.hippoecm.frontend.plugins.console.menu.rename;

import javax.jcr.Node;
import javax.jcr.NodeIterator;
import javax.jcr.RepositoryException;
import javax.jcr.Session;

import org.apache.commons.lang.StringUtils;
import org.apache.wicket.model.IModel;
import org.apache.wicket.model.Model;
import org.apache.wicket.model.PropertyModel;
import org.apache.wicket.util.value.IValueMap;
import org.hippoecm.frontend.dialog.AbstractDialog;
import org.hippoecm.frontend.dialog.DialogConstants;
import org.hippoecm.frontend.model.IModelReference;
import org.hippoecm.frontend.model.JcrNodeModel;
import org.hippoecm.frontend.session.UserSession;
import org.hippoecm.frontend.widgets.AutoFocusSelectTextFieldWidget;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class RenameDialog extends AbstractDialog<Node> {

    private static final long serialVersionUID = 1L;

    static final Logger log = LoggerFactory.getLogger(RenameDialog.class);

    private String name;
    private final IModelReference modelReference;

    public RenameDialog(IModelReference<Node> modelReference) {
        this.modelReference = modelReference;

        final Node node = modelReference.getModel().getObject();

        if (node != null) {
            try {
                // get name of current node
                name = node.getName();
            } catch (RepositoryException e) {
                log.error(e.getMessage());
            }
        } else {
            setOkVisible(false);
        }

        add(new AutoFocusSelectTextFieldWidget("name", new PropertyModel<String>(this, "name")));
    }

    @Override
    protected void onOk() {
        try {
            JcrNodeModel nodeModel = (JcrNodeModel) modelReference.getModel();

            if (nodeModel.getParentModel() != null) {
                JcrNodeModel parentModel = nodeModel.getParentModel();
                Node parentNode = parentModel.getNode();

                //This will be used to position the renamed node exactly where it was before the rename
                String nextSiblingPath = parentNode.getPrimaryNodeType().hasOrderableChildNodes()
                        ? findNextSiblingPath(nodeModel.getNode())
                        : null;

                //The actual JCR move
                String oldPath = nodeModel.getNode().getPath();
                String newPath = parentNode.getPath();
                if (!newPath.endsWith("/")) {
                    newPath += "/";
                }
                newPath += getName();
                Session jcrSession = UserSession.get().getJcrSession();
                jcrSession.move(oldPath, newPath);

                JcrNodeModel newNodeModel = new JcrNodeModel(parentModel.getNode().getNode(getName()));

                //Re-order (because the rename action also positioned the renamed node last)
                if (nextSiblingPath != null) {
                    String nextSiblingRelPath = StringUtils.substringAfterLast(nextSiblingPath, "/");
                    try {
                        parentNode.orderBefore(getName(), nextSiblingRelPath);
                    } catch (RepositoryException e) {
                        log.error(e.getMessage(), e);
                    }
                }

                modelReference.setModel(newNodeModel);
            }
        } catch (RepositoryException ex) {
            error(ex.getMessage());
        }
    }

    protected String findNextSiblingPath(Node node) {
        try {
            Node parentNode = node.getParent();
            for (NodeIterator siblings = parentNode.getNodes(); siblings.hasNext();) {
                if (siblings.nextNode().isSame(node)) {
                    return siblings.hasNext() ? siblings.nextNode().getPath() : null;
                }
            }
        } catch (RepositoryException e) {
            log.error(e.getMessage(), e);
        }
        return null;
    }

    public IModel<String> getTitle() {
        return Model.of("Rename Node");
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    @Override
    public IValueMap getProperties() {
        return DialogConstants.SMALL;
    }
}