All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.adobe.acs.commons.mcp.impl.processes.renovator.MovingNode Maven / Gradle / Ivy

There is a newer version: 6.6.0
Show newest version
/*
 * #%L
 * ACS AEM Commons Bundle
 * %%
 * Copyright (C) 2017 Adobe
 * %%
 * 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.
 * #L%
 */
package com.adobe.acs.commons.mcp.impl.processes.renovator;

import com.day.cq.wcm.commons.ReferenceSearch;
import org.apache.sling.api.resource.Resource;
import org.apache.sling.api.resource.ResourceResolver;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import java.util.function.Consumer;
import java.util.function.Function;
import java.util.regex.Pattern;
import java.util.stream.Collectors;

import static com.adobe.acs.commons.mcp.impl.processes.renovator.Util.isActivated;
import static com.adobe.acs.commons.util.visitors.SimpleFilteringResourceVisitor.toList;

/**
 * Represents a node in the process of moving.
 */
public abstract class MovingNode {

    private String sourcePath;
    private String destinationPath;
    private String previousSibling;
    private MovingNode parent;
    private List children = new ArrayList<>();
    private final List allReferences = new ArrayList<>();
    private final List publishedReferences = new ArrayList<>();
    private boolean destinationAlreadyExists;
    private boolean sourceActivated;

    public abstract boolean isCopiedBeforeMove();

    public abstract boolean isSupposedToBeReferenced();

    public abstract boolean isAbleToHaveChildren();

    public void addChild(MovingNode child) {
        if (child != this) {
            children.add(child);
            child.setParent(this);
        }
    }

    public boolean isLeaf() {
        return getChildren().isEmpty();
    }

    public boolean isSourceActivated() {
        return sourceActivated;
    }

    /**
     * @return the sourcePath
     */
    public String getSourcePath() {
        return sourcePath;
    }

    /**
     * @param sourcePath the sourcePath to set
     */
    public void setSourcePath(String sourcePath) {
        this.sourcePath = sourcePath;
    }

    /**
     * @return the destinationPath
     */
    public String getDestinationPath() {
        return destinationPath;
    }

    /**
     * @param destinationPath the destinationPath to set
     */
    public void setDestinationPath(String destinationPath) {
        this.destinationPath = destinationPath;
    }

    /**
     * @return the parent
     */
    public MovingNode getParent() {
        return parent;
    }

    /**
     * @param parent the parent to set
     */
    public void setParent(MovingNode parent) {
        this.parent = parent;
        if (parent != null && parent != this) {
            setDestinationPath(sourcePath.replaceFirst(Pattern.quote(parent.getSourcePath()), parent.getDestinationPath()));
        }
    }

    /**
     * @return the children
     */
    public List getChildren() {
        return children;
    }

    /**
     * @param children the children to set
     */
    public void setChildren(List children) {
        this.children = children;
    }

    /**
     * @return the references
     */
    public List getAllReferences() {
        return allReferences;
    }

    /**
     * @return the references
     */
    public List getPublishedReferences() {
        return publishedReferences;
    }

    /**
     * @return the destinationAlreadyExists
     */
    public boolean isDestinationAlreadyExists() {
        return destinationAlreadyExists;
    }

    /**
     * @param destinationAlreadyExists the destinationAlreadyExists to set
     */
    public void setDestinationAlreadyExists(boolean destinationAlreadyExists) {
        this.destinationAlreadyExists = destinationAlreadyExists;
    }

    public String getPreviousSibling() {
        return previousSibling;
    }

    public abstract void move(ReplicatorQueue replicatorQueue, ResourceResolver rr) throws IllegalAccessException, MovingException;

    public void findReferences(ResourceResolver rr, String referenceSearchRoot, int maxReferences) throws IllegalAccessException {
        ReferenceSearch refSearch = new ReferenceSearch();
        refSearch.setExact(true);
        refSearch.setHollow(true);
        refSearch.setMaxReferencesPerPage(maxReferences);
        refSearch.setSearchRoot(referenceSearchRoot);
        refSearch.search(rr, sourcePath).values().stream()
                .peek(p -> allReferences.add(p.getPagePath()))
                .filter(p -> isActivated(rr, p.getPagePath()))
                .map(ReferenceSearch.Info::getPagePath)
                .collect(Collectors.toCollection(() -> publishedReferences));
    }

    /**
     * Depth-first visitor, provide consumer function every node in the tree
     *
     * @param consumer Consumer which accepts nodes
     */
    public void visit(Consumer consumer) {
        visit(consumer, consumer, null);
    }

    /**
     * Depth-first visitor
     *
     * @param consumer        Consumer for traversed nodes
     * @param leafConsumer    Consumer for leaf nodes (first level after
     *                        traversalFilter returns false), if no traversal function this is never
     *                        called
     * @param traversalFilter Function which determines if the tree should be
     *                        evaluated any deeper, Null means always true
     */
    public void visit(Consumer consumer, Consumer leafConsumer, Function traversalFilter) {
        LinkedList stack = new LinkedList<>();
        stack.clear();
        stack.add(this);

        while (!stack.isEmpty()) {
            MovingNode node = stack.poll();
            if (traversalFilter == null || traversalFilter.apply(node)) {
                stack.addAll(toList(node.getChildren()));
                consumer.accept(node);
            } else if (leafConsumer != null) {
                leafConsumer.accept(node);
            }
        }
    }

    public Optional findByPath(String path) {
        if (path.equals(getSourcePath())) {
            return Optional.of(this);
        }
        String[] parts = path.replaceFirst(getSourcePath() + "/", "").split("/");
        MovingNode current = this;
        for (String part : parts) {
            String childPath = current.getSourcePath() + "/" + part;
            boolean found = false;
            for (MovingNode child : current.getChildren()) {
                if (child.getSourcePath().equals(childPath)) {
                    current = child;
                    found = true;
                }
            }
            if (!found) {
                return Optional.empty();
            }
        }
        return Optional.of(current);
    }

    public boolean hasChild(String path) {
        return getChildren().stream().anyMatch(n -> n.getSourcePath().equals(path));
    }

    protected Map getClonedProperties(Resource source) {
        HashMap props = new HashMap<>(source.getValueMap());
        props.remove("jcr:versionHistory");
        props.remove("jcr:uuid");
        props.remove("jcr:baseVersion");
        props.remove("jcr:predecessors");
        props.remove("jcr:isCheckedOut");
        return props;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy