⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cmsinternallinksvalidator.java

📁 找了很久才找到到源代码
💻 JAVA
字号:
/*
 * File   : $Source: /usr/local/cvs/opencms/src/org/opencms/relations/CmsInternalLinksValidator.java,v $
 * Date   : $Date: 2007-08-13 16:30:02 $
 * Version: $Revision: 1.3 $
 *
 * This library is part of OpenCms -
 * the Open Source Content Management System
 *
 * Copyright (c) 2002 - 2007 Alkacon Software GmbH (http://www.alkacon.com)
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * For further information about Alkacon Software GmbH, please see the
 * company website: http://www.alkacon.com
 *
 * For further information about OpenCms, please see the
 * project website: http://www.opencms.org
 * 
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

package org.opencms.relations;

import org.opencms.file.CmsObject;
import org.opencms.file.CmsResourceFilter;
import org.opencms.main.CmsException;
import org.opencms.main.CmsLog;

import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;

import org.apache.commons.logging.Log;

/**
 * Util class to find broken links in a bundle of resources.<p>
 * 
 * @author Michael Moossen
 * 
 * @version $Revision: 1.3 $
 * 
 * @since 6.5.3
 */
public class CmsInternalLinksValidator {

    /** The log object for this class. */
    private static final Log LOG = CmsLog.getLog(CmsInternalLinksValidator.class);

    /** The internal computed broken relations map. */
    protected Map m_brokenRelations;

    /** The cms context object. */
    private CmsObject m_cms;

    /** The number of not visible resources with broken links. */
    private int m_notVisibleResourcesCount;

    /** All resources with broken links. */
    private List m_resourcesWithBrokenLinks;

    /**
     * Creates a new helper object.<p>
     * 
     * @param cms the cms object
     * @param resourceNames a list of resource names to be deleted
     */
    public CmsInternalLinksValidator(CmsObject cms, List resourceNames) {

        m_cms = cms;
        m_brokenRelations = getBrokenRelations(resourceNames);
    }

    /**
     * Returns all broken links for the given resource.<p>
     * 
     * @param resourceName the resource to get the broken link
     * 
     * @return a list of {@link CmsRelation} objects
     */
    public List getBrokenLinksForResource(String resourceName) {

        return (List)m_brokenRelations.get(resourceName);
    }

    /**
     * Returns the number of not visible resources with broken links.<p>
     * 
     * @return the number of not visible resources with broken links
     */
    public int getNotVisibleResourcesCount() {

        if (m_resourcesWithBrokenLinks == null) {
            // compute it if needed
            getResourcesWithBrokenLinks();
        }
        return m_notVisibleResourcesCount;
    }

    /**
     * Returns all resources with broken links.<p>
     * 
     * @return a list of {@link org.opencms.file.CmsResource} objects
     */
    public List getResourcesWithBrokenLinks() {

        if (m_resourcesWithBrokenLinks == null) {
            // sort the resulting hash map
            List resources = new ArrayList(m_brokenRelations.keySet());
            Collections.sort(resources);

            m_resourcesWithBrokenLinks = new ArrayList(resources.size());
            m_notVisibleResourcesCount = 0;
            // remove not visible resources
            CmsResourceFilter filter = CmsResourceFilter.IGNORE_EXPIRATION.addRequireVisible();
            String storedSiteRoot = m_cms.getRequestContext().getSiteRoot();
            try {
                m_cms.getRequestContext().setSiteRoot("/");
                Iterator itResources = resources.iterator();
                while (itResources.hasNext()) {
                    String resourceName = (String)itResources.next();
                    try {
                        m_resourcesWithBrokenLinks.add(m_cms.readResource(resourceName, filter));
                    } catch (Exception e) {
                        // resource is not visible, increase count
                        m_notVisibleResourcesCount++;
                    }
                }
            } finally {
                m_cms.getRequestContext().setSiteRoot(storedSiteRoot);
            }
        }
        return m_resourcesWithBrokenLinks;
    }

    /**
     * If no relation would be broken deleting the given resources.<p>
     * 
     * @return <code>true</code> if no relation would be broken deleting the given resources
     */
    public boolean isEmpty() {

        return m_brokenRelations.isEmpty();
    }

    /**
     * Returns a map of where each entry has as key a name of a resource to be validated,
     * and value a list of relations that are broken.<p> 
     * 
     * @param resourceNames a list of resource names to be validated
     * 
     * @return a map of broken relations
     */
    private Map getBrokenRelations(List resourceNames) {

        Map brokenRelations = new HashMap();

        CmsRelationFilter filter = CmsRelationFilter.TARGETS.filterIncludeChildren();

        Iterator itFolders = resourceNames.iterator();
        while (itFolders.hasNext()) {
            String folderName = (String)itFolders.next();
            List relations;
            try {
                relations = m_cms.getRelationsForResource(folderName, filter);
            } catch (CmsException e) {
                LOG.error(Messages.get().getBundle().key(Messages.LOG_LINK_SEARCH_1, folderName), e);
                continue;
            }
            Iterator itRelations = relations.iterator();
            while (itRelations.hasNext()) {
                CmsRelation relation = (CmsRelation)itRelations.next();
                try {
                    // try to read the target
                    relation.getTarget(m_cms, CmsResourceFilter.IGNORE_EXPIRATION);
                } catch (Exception e) {
                    // target is broken
                    String resourceName = relation.getSourcePath();
                    List broken = (List)brokenRelations.get(resourceName);
                    if (broken == null) {
                        broken = new ArrayList();
                        brokenRelations.put(resourceName, broken);
                    }
                    broken.add(relation);
                }
            }
        }
        return brokenRelations;
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -