📄 cmsjsptaglink.java
字号:
/*
* File : $Source: /usr/local/cvs/opencms/src/org/opencms/jsp/CmsJspTagLink.java,v $
* Date : $Date: 2006/03/27 14:52:19 $
* Version: $Revision: 1.16 $
*
* This library is part of OpenCms -
* the Open Source Content Mananagement System
*
* Copyright (c) 2005 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.jsp;
import org.opencms.flex.CmsFlexController;
import org.opencms.main.CmsLog;
import org.opencms.main.OpenCms;
import org.opencms.staticexport.CmsLinkManager;
import javax.servlet.ServletRequest;
import javax.servlet.jsp.JspException;
import javax.servlet.jsp.tagext.BodyTagSupport;
import org.apache.commons.logging.Log;
/**
* Implements the <code><cms:link>[filename]</cms:link></code>
* tag to add OpenCms managed links to a JSP page, required for link
* management and the static
* export to work properly.<p>
*
* @author Alexander Kandzior
*
* @version $Revision: 1.16 $
*
* @since 6.0.0
*/
public class CmsJspTagLink extends BodyTagSupport {
/** Serial version UID required for safe serialization. */
private static final long serialVersionUID = -2361021288258405388L;
/** The log object for this class. */
private static final Log LOG = CmsLog.getLog(CmsJspTagLink.class);
/**
* Internal action method.<p>
*
* Calulates a link using the OpenCms link export rules.<p>
*
* @param link the link that should be calculated, can be relative or absolute
* @param req the current request
* @return the calculated link
*
* @see org.opencms.staticexport.CmsLinkManager#substituteLink(org.opencms.file.CmsObject, String)
*/
public static String linkTagAction(String link, ServletRequest req) {
CmsFlexController controller = CmsFlexController.getController(req);
if (link.indexOf(':') >= 0) {
return OpenCms.getLinkManager().substituteLink(controller.getCmsObject(), link);
} else {
return OpenCms.getLinkManager().substituteLink(
controller.getCmsObject(),
CmsLinkManager.getAbsoluteUri(link, controller.getCurrentRequest().getElementUri()));
}
}
/**
* @see javax.servlet.jsp.tagext.Tag#doEndTag()
* @return EVAL_PAGE
* @throws JspException in case soemthing goes wrong
*/
public int doEndTag() throws JspException {
ServletRequest req = pageContext.getRequest();
// This will always be true if the page is called through OpenCms
if (CmsFlexController.isCmsRequest(req)) {
try {
// Get link-string from the body and reset body
String link = getBodyContent().getString();
getBodyContent().clear();
// Calculate the link substitution
String newlink = linkTagAction(link, req);
// Write the result back to the page
getBodyContent().print(newlink);
getBodyContent().writeOut(pageContext.getOut());
} catch (Exception ex) {
if (LOG.isErrorEnabled()) {
LOG.error(Messages.get().getBundle().key(Messages.ERR_PROCESS_TAG_1, "link"), ex);
}
throw new JspException(ex);
}
}
return EVAL_PAGE;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -