📄 cmslinkmanager.java
字号:
// since path already contains the site root, we just leave it unchanged
return path + suffix;
}
} else {
// site root is added with standard mechanism
return cms.getRequestContext().addSiteRoot(path + suffix);
}
}
// URI with relative path is relative to the given relativePath if available and in a site,
// otherwise invalid
if (CmsStringUtil.isNotEmpty(path) && (path.charAt(0) != '/')) {
if (relativePath != null) {
String absolutePath;
int pos = path.indexOf("../../galleries/pics/");
if (pos >= 0) {
// HACK: mixed up editor path to system gallery image folder
return CmsWorkplace.VFS_PATH_SYSTEM + path.substring(pos + 6) + suffix;
}
absolutePath = getAbsoluteUri(path, cms.getRequestContext().addSiteRoot(relativePath));
if (CmsSiteManager.getSiteRoot(absolutePath) != null) {
return absolutePath + suffix;
}
// HACK: some editor components (e.g. HtmlArea) mix up the editor URL with the current request URL
absolutePath = getAbsoluteUri(path, cms.getRequestContext().getSiteRoot()
+ CmsWorkplace.VFS_PATH_EDITORS);
if (CmsSiteManager.getSiteRoot(absolutePath) != null) {
return absolutePath + suffix;
}
// HACK: same as above, but XmlContent editor has one path element more
absolutePath = getAbsoluteUri(path, cms.getRequestContext().getSiteRoot()
+ CmsWorkplace.VFS_PATH_EDITORS
+ "xmlcontent/");
if (CmsSiteManager.getSiteRoot(absolutePath) != null) {
return absolutePath + suffix;
}
}
return null;
}
// relative uri (= vfs path relative to currently selected site root)
if (CmsStringUtil.isNotEmpty(path)) {
return cms.getRequestContext().addSiteRoot(path) + suffix;
}
// uri without path (typically local link)
return suffix;
}
/**
* Returns the result of the last extern link validation.<p>
*
* @return the result of the last extern link validation
*/
public CmsPointerLinkValidationResult getPointerLinkValidationResult() {
return m_pointerLinkValidationResult;
}
/**
* Sets the result of a extern link validation.<p>
*
* @param externLinkValidationResult the result a extern link validation
*/
public void setPointerLinkValidationResult(CmsPointerLinkValidationResult externLinkValidationResult) {
m_pointerLinkValidationResult = externLinkValidationResult;
}
/**
* Substitutes the contents of a link by adding the context path and
* servlet name, and in the case of the "online" project also according
* to the configured static export settings.<p>
*
* @param cms the cms context
* @param link the link to process (must be a valid link to a VFS resource with optional parameters)
* @return the substituted link
*/
public String substituteLink(CmsObject cms, String link) {
return substituteLink(cms, link, null);
}
/**
* Substitutes the contents of a link by adding the context path and
* servlet name, and in the case of the "online" project also according
* to the configured static export settings.<p>
*
* A server prefix is prepended if
* <ul>
* <li>the link points to another site</li>
* <li>the link is contained in a normal document and the link references a secure document</li>
* <li>the link is contained in a secure document and the link references a normal document</li>
* </ul>
*
* @param cms the cms context
* @param link the link to process (must be a valid link to a VFS resource with optional parameters)
* @param siteRoot the site root of the link
*
* @return the substituted link
*/
public String substituteLink(CmsObject cms, String link, String siteRoot) {
return substituteLink(cms, link, siteRoot, false);
}
/**
* Substitutes the contents of a link by adding the context path and
* servlet name, and in the case of the "online" project also according
* to the configured static export settings.<p>
*
* A server prefix is prepended if
* <ul>
* <li>the link points to another site</li>
* <li>the link is contained in a normal document and the link references a secure document</li>
* <li>the link is contained in a secure document and the link references a normal document</li>
* </ul>
*
* @param cms the cms context
* @param link the link to process (must be a valid link to a VFS resource with optional parameters)
* @param siteRoot the site root of the link
* @param forceSecure if <code>true</code> generates always an absolute url (with protocoll and server name) for secure links
*
* @return the substituted link
*/
public String substituteLink(CmsObject cms, String link, String siteRoot, boolean forceSecure) {
if (CmsStringUtil.isEmpty(link)) {
// not a valid link parameter, return an empty String
return "";
}
// make sure we have an absolute link
String absoluteLink = CmsLinkManager.getAbsoluteUri(link, cms.getRequestContext().getUri());
String vfsName;
String parameters;
int pos = absoluteLink.indexOf('?');
// check if the link has parameters, if so cut them
if (pos >= 0) {
vfsName = absoluteLink.substring(0, pos);
parameters = absoluteLink.substring(pos);
} else {
vfsName = absoluteLink;
parameters = null;
}
String resultLink = null;
String uriBaseName = null;
boolean useRelativeLinks = false;
// determine the target site of the link
CmsSite targetSite;
if (CmsStringUtil.isNotEmpty(siteRoot)) {
targetSite = CmsSiteManager.getSite(siteRoot);
} else {
targetSite = CmsSiteManager.getCurrentSite(cms);
}
String serverPrefix = "";
// if the link points to another site, there needs to be a server prefix
if (targetSite != CmsSiteManager.getCurrentSite(cms)) {
serverPrefix = targetSite.getUrl();
}
if (cms.getRequestContext().currentProject().isOnlineProject()) {
CmsStaticExportManager exportManager = OpenCms.getStaticExportManager();
// check if we need relative links in the exported pages
if (exportManager.relativeLinksInExport(cms.getRequestContext().getSiteRoot()
+ cms.getRequestContext().getUri())) {
// try to get base uri from cache
uriBaseName = exportManager.getCachedOnlineLink(exportManager.getCacheKey(
cms.getRequestContext().getSiteRoot(),
cms.getRequestContext().getUri()));
if (uriBaseName == null) {
// base not cached, check if we must export it
if (exportManager.isExportLink(cms, cms.getRequestContext().getUri())) {
// base uri must also be exported
uriBaseName = exportManager.getRfsName(cms,
//cms.getRequestContext().getSiteRoot(),
cms.getRequestContext().getUri());
} else {
// base uri dosn't need to be exported
uriBaseName = exportManager.getVfsPrefix() + cms.getRequestContext().getUri();
}
// cache export base uri
exportManager.cacheOnlineLink(exportManager.getCacheKey(
cms.getRequestContext().getSiteRoot(),
cms.getRequestContext().getUri()), uriBaseName);
}
// use relative links only on pages that get exported
useRelativeLinks = uriBaseName.startsWith(OpenCms.getStaticExportManager().getRfsPrefix(
cms.getRequestContext().getSiteRoot() + cms.getRequestContext().getUri()));
}
// check if we have the absolute vfs name for the link target cached
resultLink = exportManager.getCachedOnlineLink(cms.getRequestContext().getSiteRoot() + ":" + absoluteLink);
if (resultLink == null) {
cms.getRequestContext().saveSiteRoot();
cms.getRequestContext().setSiteRoot(targetSite.getSiteRoot());
// didn't find the link in the cache
if (exportManager.isExportLink(cms, vfsName)) {
// export required, get export name for target link
resultLink = exportManager.getRfsName(cms, vfsName, parameters);
// now set the parameters to null, we do not need them anymore
parameters = null;
} else {
// no export required for the target link
resultLink = exportManager.getVfsPrefix().concat(vfsName);
// add cut off parameters if required
if (parameters != null) {
resultLink = resultLink.concat(parameters);
}
}
cms.getRequestContext().restoreSiteRoot();
// cache the result
exportManager.cacheOnlineLink(cms.getRequestContext().getSiteRoot() + ":" + absoluteLink, resultLink);
}
// read only properties, if the current site and the target site both do have a secure server
if (targetSite.hasSecureServer() || CmsSiteManager.getCurrentSite(cms).hasSecureServer()) {
if (!vfsName.startsWith(CmsWorkplace.VFS_PATH_SYSTEM)) {
int linkType = -1;
try {
// read the linked resource
linkType = cms.readResource(vfsName).getTypeId();
} catch (CmsException e) {
// the resource could not be read
if (LOG.isInfoEnabled()) {
String message = Messages.get().getBundle().key(
Messages.LOG_RESOURCE_ACESS_ERROR_3,
vfsName,
cms.getRequestContext().currentUser().getName(),
cms.getRequestContext().getSiteRoot());
if (LOG.isDebugEnabled()) {
LOG.debug(message, e);
} else {
LOG.info(message);
}
}
}
// images are always referenced without a server prefix
if (linkType != CmsResourceTypeImage.getStaticTypeId()) {
// check the secure property of the link
boolean secureLink = exportManager.isSecureLink(cms, vfsName, targetSite.getSiteRoot());
boolean secureRequest = exportManager.isSecureLink(cms, cms.getRequestContext().getUri());
// if we are on a normal server, and the requested resource is secure,
// the server name has to be prepended
if (secureLink && (forceSecure || !secureRequest)) {
serverPrefix = targetSite.getSecureUrl();
} else if (!secureLink && secureRequest) {
serverPrefix = targetSite.getUrl();
}
}
}
}
// make absolute link relative, if relative links in export are required
// and if the link does not point to another server
if (useRelativeLinks && CmsStringUtil.isEmpty(serverPrefix)) {
resultLink = getRelativeUri(uriBaseName, resultLink);
}
} else {
// offline project, no export required
if (OpenCms.getRunLevel() >= OpenCms.RUNLEVEL_3_SHELL_ACCESS) {
// in unit test this code would fail otherwise
resultLink = OpenCms.getStaticExportManager().getVfsPrefix().concat(vfsName);
}
// add cut off parameters and return the result
if (parameters != null) {
resultLink = resultLink.concat(parameters);
}
}
return serverPrefix.concat(resultLink);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -