Package com.ecyrd.jspwiki.tags

Source Code of com.ecyrd.jspwiki.tags.CheckVersionTag

/*
    JSPWiki - a JSP-based WikiWiki clone.

    Licensed to the Apache Software Foundation (ASF) under one
    or more contributor license agreements.  See the NOTICE file
    distributed with this work for additional information
    regarding copyright ownership.  The ASF licenses this file
    to you 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 com.ecyrd.jspwiki.tags;

import java.io.IOException;

import com.ecyrd.jspwiki.InternalWikiException;
import com.ecyrd.jspwiki.WikiEngine;
import com.ecyrd.jspwiki.WikiPage;
import com.ecyrd.jspwiki.providers.ProviderException;

/**
*  Does a version check on the page.  Mode is as follows:
<UL>
*   <LI><b>latest</b> - Include body, if the page is the latest version.</li>
*   <LI><b>notlatest</b> - Include body, if the page is NOT the latest version.</li>
*   <li><b>first</b> - Include body, if page is the first version (version 1)</li>
*   <li><b>notfirst</b> - Include bodt, if page is NOT the first version (version 1)</li>
</UL>
*  If the page does not exist, body content is never included.
*
@since 2.0
*/
public class CheckVersionTag
    extends WikiTagBase
{
    private static final long serialVersionUID = 0L;
   
    private static enum VersionMode
    {
        LATEST, NOTLATEST, FIRST, NOTFIRST
    }

    private VersionMode m_mode;

    /**
     * {@inheritDoc}
     */
    @Override
    public void initTag()
    {
        super.initTag();
        m_mode = VersionMode.LATEST;
    }

    /**
     *  Sets the mode.
     * 
     *  @param arg The mode to set.
     */
    public void setMode( String arg )
    {
        if( "latest".equals(arg) )
        {
            m_mode = VersionMode.LATEST;
        }
        else if( "notfirst".equals(arg) )
        {
            m_mode = VersionMode.NOTFIRST;
        }
        else if( "first".equals(arg) )
        {
            m_mode = VersionMode.FIRST;
        }
        else
        {
            m_mode = VersionMode.NOTLATEST;
        }
    }

    /**
     *  {@inheritDoc}
     */
    @Override
    public final int doWikiStartTag()
        throws IOException,
               ProviderException
    {
        WikiEngine engine = m_wikiContext.getEngine();
        WikiPage   page   = m_wikiContext.getPage();

        if( page != null && engine.pageExists(page.getName()) )
        {
            int version = page.getVersion();
            boolean include = false;

            WikiPage latest = engine.getPage( page.getName() );

            //log.debug("Doing version check: this="+page.getVersion()+
            //          ", latest="+latest.getVersion());

            switch( m_mode )
            {
                case LATEST:
                    include = (version < 0) || (latest.getVersion() == version);
                    break;

                case NOTLATEST:
                    include = (version > 0) && (latest.getVersion() != version);
                    break;

                case FIRST:
                    include = (version == 1 ) || (version < 0 && latest.getVersion() == 1);
                    break;

                case NOTFIRST:
                    include = version > 1;
                    break;
               
                default:
                    throw new InternalWikiException("Mode which is not available!");
            }

            if( include )
            {
                // log.debug("INCLD");
                return EVAL_BODY_INCLUDE;
            }
        }

        return SKIP_BODY;
    }
}
TOP

Related Classes of com.ecyrd.jspwiki.tags.CheckVersionTag

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.