cmsdefaultlinksubstitutionhandler.java
来自「找了很久才找到到源代码」· Java 代码 · 共 402 行 · 第 1/2 页
JAVA
402 行
if (targetSite.hasSecureServer() || currentSite.hasSecureServer()) {
if (!vfsName.startsWith(CmsWorkplace.VFS_PATH_SYSTEM)) {
// don't make a secure connection to the "/system" folder (why ?)
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 = CmsLinkManager.getRelativeUri(uriBaseName, resultLink);
}
} else {
// offline project, no export or secure handling 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 != null)) {
resultLink = resultLink.concat(parameters);
}
}
return serverPrefix.concat(resultLink);
}
/**
* @see org.opencms.staticexport.I_CmsLinkSubstitutionHandler#getRootPath(org.opencms.file.CmsObject, java.lang.String, java.lang.String)
*/
public String getRootPath(CmsObject cms, String targetUri, String basePath) {
if (cms == null) {
// required by unit test cases
return targetUri;
}
URI uri;
String path;
String fragment;
String query;
String suffix;
// malformed uri
try {
uri = new URI(targetUri);
path = uri.getPath();
fragment = uri.getFragment();
if (fragment != null) {
fragment = "#" + fragment;
} else {
fragment = "";
}
query = uri.getQuery();
if (query != null) {
query = "?" + query;
} else {
query = "";
}
} catch (Exception e) {
if (LOG.isWarnEnabled()) {
LOG.warn(Messages.get().getBundle().key(Messages.LOG_MALFORMED_URI_1, targetUri), e);
}
return null;
}
// concatenate fragment and query
suffix = fragment.concat(query);
// opaque URI
if (uri.isOpaque()) {
return null;
}
// absolute URI (i.e. URI has a scheme component like http:// ...)
if (uri.isAbsolute()) {
CmsSiteMatcher matcher = new CmsSiteMatcher(targetUri);
if (OpenCms.getSiteManager().isMatching(matcher)) {
if (path.startsWith(OpenCms.getSystemInfo().getOpenCmsContext())) {
path = path.substring(OpenCms.getSystemInfo().getOpenCmsContext().length());
}
if (OpenCms.getSiteManager().isWorkplaceRequest(matcher)) {
// workplace URL, use current site root
// this is required since the workplace site does not have a site root to set
return cms.getRequestContext().addSiteRoot(path + suffix);
} else {
// add the site root of the matching site
return cms.getRequestContext().addSiteRoot(
OpenCms.getSiteManager().matchSite(matcher).getSiteRoot(),
path + suffix);
}
} else {
return null;
}
}
// relative URI (i.e. no scheme component, but filename can still start with "/")
String context = OpenCms.getSystemInfo().getOpenCmsContext();
if ((context != null) && path.startsWith(context)) {
// URI is starting with opencms context
String siteRoot = null;
if (basePath != null) {
siteRoot = OpenCms.getSiteManager().getSiteRoot(basePath);
}
// cut context from path
path = path.substring(context.length());
if (siteRoot != null) {
// special case: relative path contains a site root, i.e. we are in the root site
if (!path.startsWith(siteRoot)) {
// path does not already start with the site root, we have to add this path as site prefix
return cms.getRequestContext().addSiteRoot(siteRoot, path + suffix);
} else {
// 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 (basePath != 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 = CmsLinkManager.getAbsoluteUri(path, cms.getRequestContext().addSiteRoot(basePath));
if (OpenCms.getSiteManager().getSiteRoot(absolutePath) != null) {
return absolutePath + suffix;
}
// HACK: some editor components (e.g. HtmlArea) mix up the editor URL with the current request URL
absolutePath = CmsLinkManager.getAbsoluteUri(path, cms.getRequestContext().getSiteRoot()
+ CmsWorkplace.VFS_PATH_EDITORS);
if (OpenCms.getSiteManager().getSiteRoot(absolutePath) != null) {
return absolutePath + suffix;
}
// HACK: same as above, but XmlContent editor has one path element more
absolutePath = CmsLinkManager.getAbsoluteUri(path, cms.getRequestContext().getSiteRoot()
+ CmsWorkplace.VFS_PATH_EDITORS
+ "xmlcontent/");
if (OpenCms.getSiteManager().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;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?