public class CmsDefaultLinkSubstitutionHandler extends java.lang.Object implements I_CmsLinkSubstitutionHandler
for the method where this handler is used.
限定符和类型 | 字段和说明 |
---|---|
static java.lang.String |
DONT_USE_CURRENT_SITE_FOR_WORKPLACE_REQUESTS
Key for a request context attribute to control whether the getRootPath method uses the current site root for workplace requests.
|
构造器和说明 |
---|
CmsDefaultLinkSubstitutionHandler() |
限定符和类型 | 方法和说明 |
---|---|
java.lang.String |
getLink(CmsObject cms,
java.lang.String link,
java.lang.String siteRoot,
boolean forceSecure)
Returns the resource root path in the OpenCms VFS for the given link, or
null in
case the link points to an external site. |
java.lang.String |
getRootPath(CmsObject cms,
java.lang.String targetUri,
java.lang.String basePath)
Returns the resource root path in the OpenCms VFS for the given target URI link, or
null in
case the link points to an external site. |
protected java.lang.String |
getSimpleRootPath(CmsObject cms,
java.lang.String targetUri,
java.lang.String basePath)
Gets the root path without taking into account detail page links.
|
protected boolean |
isDetailPageLinkSecure(CmsObject cms,
java.lang.String detailPage,
CmsResource detailContent,
CmsSite targetSite,
boolean secureRequest)
Checks whether a link to a detail page should be secure.
|
public static final java.lang.String DONT_USE_CURRENT_SITE_FOR_WORKPLACE_REQUESTS
public java.lang.String getLink(CmsObject cms, java.lang.String link, java.lang.String siteRoot, boolean forceSecure)
null
in
case the link points to an external site.If the target URI contains no site information, but starts with the opencms context, the context is removed:
/opencms/opencms/system/further_path -> /system/further_pathIf the target URI contains no site information, the path will be prefixed with the current site from the provided OpenCms user context:
/folder/page.html -> /sites/mysite/folder/page.htmlIf the path of the target URI is relative, i.e. does not start with "/", the path will be prefixed with the current site and the given relative path, then normalized. If no relative path is given,
null
is returned.
If the normalized path is outsite a site, null is returned.page.html -> /sites/mysite/page.html ../page.html -> /sites/mysite/page.html ../../page.html -> nullIf the target URI contains a scheme/server name that denotes an opencms site, it is replaced by the appropriate site path:
http://www.mysite.de/folder/page.html -> /sites/mysite/folder/page.html
If the target URI contains a scheme/server name that does not match with any site,
or if the URI is opaque or invalid,
null
is returned:
http://www.elsewhere.com/page.html -> null mailto:someone@elsewhere.com -> null
getLink
在接口中 I_CmsLinkSubstitutionHandler
cms
- the current OpenCms user contextlink
- the link to process which is assumed to point to a VFS resource, with optional parameterssiteRoot
- the site root of the link
forceSecure
- if true
generates always an absolute URL (with protocol and server name) for secure linkslink
and siteRoot
I_CmsLinkSubstitutionHandler.getLink(org.opencms.file.CmsObject, java.lang.String, java.lang.String, boolean)
public java.lang.String getRootPath(CmsObject cms, java.lang.String targetUri, java.lang.String basePath)
I_CmsLinkSubstitutionHandler
null
in
case the link points to an external site.The default implementation applies the following transformations to the link:
/opencms/opencms
,
this prefix is removed from the result
basePath
as starting point.
http://www.mysite.de/
),
which points to a configured site in OpenCms, the server schema is replaced with
the root path of the site.
null
is returned.
CmsDefaultLinkSubstitutionHandler
, which can be fully customized using this handler interface.getRootPath
在接口中 I_CmsLinkSubstitutionHandler
cms
- the current users OpenCms contexttargetUri
- the target URI linkbasePath
- path to use as base in case the target URI is relative (can be null
)null
in
case the link points to an external siteI_CmsLinkSubstitutionHandler.getRootPath(org.opencms.file.CmsObject, java.lang.String, java.lang.String)
protected java.lang.String getSimpleRootPath(CmsObject cms, java.lang.String targetUri, java.lang.String basePath)
cms
- - see the getRootPath() methodtargetUri
- - see the getRootPath() methodbasePath
- - see the getRootPath() methodprotected boolean isDetailPageLinkSecure(CmsObject cms, java.lang.String detailPage, CmsResource detailContent, CmsSite targetSite, boolean secureRequest)
cms
- the current CMS contextdetailPage
- the detail page pathdetailContent
- the detail content resourcetargetSite
- the target site containing the detail pagesecureRequest
- true if the currently running request is secure