@DefaultKey(value="link") @SkipSetters @ValidScope(value="request") public class LinkTool extends SafeConfig implements Cloneable, Serializable
The LinkTool provides many methods to work with URIs and can help you:
This GenericTools (i.e. non-servlet based) version of LinkTool is largely based upon the same API and behavior as the older VelocityView version, with a few differences, particularly in internal representation and query handling. You can expect that in the future work will be done to more closely align the APIs. It is likely that the VelocityView version will become a subclass of this version that adds on servlet-awareness and related features. For now, though, they are entirely separate but similar tools.
The LinkTool is somewhat special in that nearly all public methods return a new instance of LinkTool. This facilitates greatly the repeated use of the LinkTool in Velocity and leads to an elegant syntax.
Template example(s):
#set( $base = $link.relative('MyPage.vm').anchor('view') ) <a href="$base.param('select','this')">this</a> <a href="$base.param('select','that')">that</a> Toolbox configuration: <tools> <toolbox scope="request"> <tool class="org.apache.velocity.tools.generic.LinkTool" uri="http://velocity.apache.org/tools/devel/"/> </toolbox> </tools>
Modifier and Type | Field and Description |
---|---|
static String |
APPEND_PARAMS_KEY |
protected boolean |
appendParams |
protected String |
charset |
static String |
CHARSET_KEY |
static String |
DEFAULT_CHARSET |
static String |
DEFAULT_SCHEME |
static String |
FORCE_RELATIVE_KEY |
protected boolean |
forceRelative |
protected String |
fragment |
static String |
FRAGMENT_KEY |
protected String |
host |
static String |
HOST_KEY |
static String |
HTML_QUERY_DELIMITER
Standard HTML delimiter for query data ('&')
|
protected boolean |
opaque |
protected String |
path |
static String |
PATH_KEY |
protected int |
port |
static String |
PORT_KEY |
protected Map |
query |
static String |
QUERY_KEY |
protected String |
queryDelim |
protected String |
scheme |
static String |
SCHEME_KEY |
static String |
SECURE_SCHEME |
protected LinkTool |
self |
static String |
URI_KEY |
protected String |
user |
static String |
USER_KEY |
static String |
XHTML_MODE_KEY |
static String |
XHTML_QUERY_DELIMITER
XHTML delimiter for query data ('&')
|
LOCK_CONFIG_KEY, log, LOGGER_NAME_KEY, SAFE_MODE_KEY, USE_CLASS_LOGGER_KEY
Constructor and Description |
---|
LinkTool()
Default constructor.
|
Modifier and Type | Method and Description |
---|---|
LinkTool |
absolute()
Returns a copy of this LinkTool instance that has
setForceRelative(boolean) set to false and sets the
scheme to the "http" if no scheme has been set yet. |
LinkTool |
absolute(Object obj)
Returns a copy of the link with the specified URI reference
either used as or converted to an absolute (non-relative)
URI reference.
|
LinkTool |
anchor(Object anchor)
Returns a copy of the link with the specified anchor to be
added to the end of the generated hyperlink.
|
LinkTool |
append(Object pth)
Appends the given value to the end of the current
path value.
|
LinkTool |
append(Object key,
Object value)
Appends a new key=value pair to the existing query
data.
|
protected void |
appendAsArray(StringBuilder out,
Object key,
Object[] arr) |
void |
appendPath(Object obj)
Uses
combinePath(java.lang.String, java.lang.String) to add the specified value
to the current getPath() value. |
void |
appendQuery(Object obj)
Uses
combineQuery(java.lang.String, java.lang.String) to append the specified value
to the current getQuery() value. |
protected String |
combinePath(String start,
String end)
If end is null, this will return start and vice versa.
|
protected String |
combineQuery(String current,
String add)
If the second param is null or empty, this will simply return the first
and vice versa.
|
protected void |
configure(ValueParser props)
Configuration
|
protected URI |
createURI()
Tries to create a URI from the current port, opacity, scheme,
userInfo, host, path, query and fragment set for this instance,
using the
URI constructor that is appropriate to the opacity. |
String |
decode(Object obj)
Delegates decoding of the specified url content to
URLDecoder.decode(java.lang.String) using the configured character encoding. |
protected String |
decodeQueryPercents(String url)
This is an ugly (but fast) hack that's needed because URI encodes
things that we don't need encoded while not encoding things
that we do need encoded.
|
LinkTool |
directory()
Returns a new LinkTool instance with
the path set to the result of
getDirectory()
and the query and fragment set to null. |
protected LinkTool |
duplicate()
Equivalent to clone, but with no checked exceptions.
|
protected LinkTool |
duplicate(boolean deep)
Equivalent to clone, but with no checked exceptions.
|
String |
encode(Object obj)
Delegates encoding of the specified url content to
URLEncoder.encode(java.lang.String) using the configured character encoding. |
boolean |
equals(Object obj)
This instance is considered equal to any
LinkTool instance whose toString() method returns a
String equal to that returned by this instance's toString()
|
String |
getAnchor()
Returns the anchor (internal document reference) set for this link.
|
boolean |
getAppendParams()
Returns true if
param(Object,Object) appends values;
false if the method overwrites existing value(s) for the specified key. |
String |
getBaseRef()
Returns the full URI of this template without any query data.
|
String |
getCharacterEncoding()
Returns the configured charset used by the
encode(java.lang.Object) and
decode(java.lang.Object) methods. |
String |
getContextPath()
At this level, this only returns the result of
getDirectory() . |
String |
getDirectory()
Returns the directory stack
in the set
getPath() value, by just trimming
off all that follows the last "/". |
String |
getFile()
Returns the last section of the path,
which is all that follows the final "/".
|
String |
getHost()
Return the host value for this instance.
|
Map |
getParams() |
String |
getPath()
Returns the current path value for this instance.
|
Integer |
getPort()
Returns the port value, if any.
|
String |
getQuery()
Returns the current query as a string, if any.
|
String |
getRoot()
Returns the "root" for this URI, if it has one.
|
String |
getScheme()
Return the scheme value for this instance.
|
LinkTool |
getSelf() |
URI |
getUri()
If the tool is not in "safe mode"--which it is by default--
this will return the
URI representation of this instance,
if any. |
String |
getUser()
Returns the
URI.getUserInfo() value for this instance. |
protected void |
handleParamsBoolean(boolean keep)
In this class, this method ignores true values.
|
int |
hashCode()
Returns the hash code for the result of toString().
|
LinkTool |
host(Object host)
Returns a new instance with the specified value set as its
host.
|
LinkTool |
insecure()
Returns a new instance with the scheme set to "http".
|
boolean |
isAbsolute()
Returns true if this instance has a scheme value
and is not being forced to create relative URIs.
|
boolean |
isOpaque()
Returns true if this instance represents an opaque URI.
|
boolean |
isRelative()
Returns true if this instance is being forced to
return relative URIs or has a null scheme value.
|
boolean |
isSecure()
Returns true if this instance's scheme is "https".
|
boolean |
isXHTML()
Returns true if the query delimiter used by this instance is
using
& as the delimiter for query data pairs
or just using & . |
protected String |
normalizeQuery(String qs) |
LinkTool |
param(Object key,
Object value)
Adds a key=value pair to the query data.
|
LinkTool |
params(Object parameters)
This method can do two different things.
|
protected Map<String,Object> |
parseQuery(String query)
Uses
normalizeQuery(java.lang.String) to make all delimiters in the
specified query string match the current query delimiter
and then uses parseQuery(String,String) to parse it
according to that same delimiter. |
protected Map<String,Object> |
parseQuery(String query,
String queryDelim)
This will use the specified query delimiter to parse the specified
query string into a map of keys to values.
|
LinkTool |
path(Object pth)
Returns a new instance with the specified value
set as its path.
|
LinkTool |
port(Object port)
Returns a new instance with the specified value set
as its port number.
|
LinkTool |
query(Object query)
Sets the specified value as the current query data,
after normalizing the pair delimiters.
|
LinkTool |
relative()
Returns a copy of this LinkTool instance that has
setForceRelative(boolean) set to true. |
LinkTool |
relative(Object obj)
Returns a copy of the link with the specified directory-relative
URI reference set as the end of the path and
setForceRelative(boolean)
set to true. |
LinkTool |
remove(Object key)
Returns a new LinkTool instance that has any
value(s) under the specified key removed from the query data.
|
Object |
removeParam(Object key)
Removes the query pair(s) with the specified key from the
query data and returns the remove value(s), if any.
|
LinkTool |
root()
Returns a new LinkTool instance that represents
the "root" of the current one, if it has one.
|
LinkTool |
scheme(Object scheme)
Returns a new instance with the specified value set as its scheme.
|
LinkTool |
secure()
Returns a new instance with the scheme set to "https".
|
LinkTool |
set(Object key,
Object value)
Sets a new key=value pair to the existing query
data, overwriting any previous pair(s) that have
the same key.
|
void |
setAppendParams(boolean addParams)
Sets whether or not the
setParam(java.lang.Object, java.lang.Object, boolean) method
will override existing query values for the same key or simply append
the new value to a list of existing values. |
void |
setCharacterEncoding(String chrst) |
void |
setForceRelative(boolean forceRelative)
Sets whether or not the
createURI() method should ignore the
scheme, user, port and host values for non-opaque URIs, thus making
toString() print the link as a relative one, not an absolute
one. |
void |
setFragment(Object obj)
Sets the anchor for this instance and treats empty strings like null.
|
protected boolean |
setFromURI(Object obj)
If the specified value is null, this will set the scheme, userInfo,
host, port, path, query, and fragment all to their null-equivalent
values.
|
void |
setHost(Object obj)
Sets host
|
void |
setParam(Object key,
Object value,
boolean append)
If there is no existing value for this key in the query, it
will simply add it and its value to the query.
|
void |
setParams(Object obj,
boolean append)
If append is false, this simply delegates to
setQuery(java.lang.Object) . |
void |
setPath(Object obj)
If this instance is not opaque and the specified value does
not start with a '/' character, then that will be prepended
automatically.
|
void |
setPort(Object obj)
If the specified object is null, this will set the port value
to -1 to indicate that.
|
void |
setQuery(Object obj)
If the specified value is null, it will set the query to null.
|
void |
setScheme(Object obj)
This will treat empty strings like null values
and will trim any trailing ':' character.
|
void |
setUserInfo(Object obj)
Sets user info
|
void |
setXHTML(boolean xhtml)
Controls the delimiter used for separating query data pairs.
|
String |
toQuery(Map parameters)
Converts the map of keys to values into a query string.
|
protected String |
toQuery(Object key,
Object value)
Turns the specified key and value into a properly encoded
query pair string.
|
String |
toString()
Returns the full URI reference that's been built with this tool,
including the query string and anchor, e.g.
|
protected URI |
toURI(Object obj)
Turns the specified object into a string and thereby a URI.
|
LinkTool |
uri(Object uri)
Returns a copy of the link with the given URI reference set.
|
LinkTool |
user(Object info)
Returns a new instance with the specified value
set as its user info.
|
configure, getLog, initLogger, isConfigLocked, isSafeMode, setLockConfig, setSafeMode
public static final String HTML_QUERY_DELIMITER
public static final String XHTML_QUERY_DELIMITER
public static final String APPEND_PARAMS_KEY
public static final String FORCE_RELATIVE_KEY
public static final String DEFAULT_CHARSET
public static final String DEFAULT_SCHEME
public static final String SECURE_SCHEME
public static final String URI_KEY
public static final String SCHEME_KEY
public static final String USER_KEY
public static final String HOST_KEY
public static final String PORT_KEY
public static final String PATH_KEY
public static final String QUERY_KEY
public static final String FRAGMENT_KEY
public static final String CHARSET_KEY
public static final String XHTML_MODE_KEY
protected String scheme
protected String user
protected String host
protected int port
protected String path
protected Map query
protected String fragment
protected String charset
protected String queryDelim
protected boolean appendParams
protected boolean forceRelative
protected boolean opaque
protected final LinkTool self
public LinkTool()
protected void configure(ValueParser props)
configure
in class SafeConfig
props
- configuration valuesprotected LinkTool duplicate()
protected LinkTool duplicate(boolean deep)
deep
- whether to make a deep copypublic void setCharacterEncoding(String chrst)
public void setXHTML(boolean xhtml)
Controls the delimiter used for separating query data pairs. By default, the standard '&' character is used.
This is not exposed to templates as this decision is best not made at that level.
Subclasses may easily override the init() method to set this appropriately and then call super.init()
xhtml
- if true, the XHTML query data delimiter ('&')
will be used. if false, then '&' will be used.public void setAppendParams(boolean addParams)
setParam(java.lang.Object, java.lang.Object, boolean)
method
will override existing query values for the same key or simply append
the new value to a list of existing values.addParams
- whether to add or replace paramspublic void setForceRelative(boolean forceRelative)
createURI()
method should ignore the
scheme, user, port and host values for non-opaque URIs, thus making
toString()
print the link as a relative one, not an absolute
one. NOTE: using absolute()
, absolute(Object)
,
relative()
, or relative(Object)
will alter this
setting accordingly on the new instances they return.forceRelative
- whether to force a relative URIpublic void setScheme(Object obj)
obj
- schemepublic void setUserInfo(Object obj)
obj
- user infopublic void setHost(Object obj)
obj
- hostpublic void setPort(Object obj)
obj
- portpublic void setPath(Object obj)
obj
- pathpublic void appendPath(Object obj)
combinePath(java.lang.String, java.lang.String)
to add the specified value
to the current getPath()
value. If the specified
value is null or this instance is opaque, then this is
a no-op.obj
- pathprotected String combinePath(String start, String end)
start
- start pathend
- end pathpublic void setQuery(Object obj)
parseQuery(String)
to parse it into a map
of keys to values.obj
- queryprotected String normalizeQuery(String qs)
qs
- query stringpublic String toQuery(Map parameters)
parameters
- parameterspublic void appendQuery(Object obj)
combineQuery(java.lang.String, java.lang.String)
to append the specified value
to the current getQuery()
value.obj
- query to appendpublic void setParam(Object key, Object value, boolean append)
appendParams
is
false, this will override the existing values with the
specified new value.key
- parameter keyvalue
- parameter valueappend
- whether to append parameter to existing ones with same keypublic void setParams(Object obj, boolean append)
setQuery(java.lang.Object)
.
Otherwise, if the specified object is null, it does nothing. If the object
is not a Map, it will turn it into a String and use parseQuery(java.lang.String)
to
parse it. Once it is a Map, it will iterate through the entries appending
each key/value to the current query data.obj
- parametersappend
- whether to append parameterspublic Object removeParam(Object key)
key
- parameter keyprotected void handleParamsBoolean(boolean keep)
setQuery(java.lang.Object)
with a null value to clear all query data.keep
- false
will clear queryprotected String combineQuery(String current, String add)
current
- current queryadd
- added queryprotected String toQuery(Object key, Object value)
key
- parameter keyvalue
- parameter value(s)protected void appendAsArray(StringBuilder out, Object key, Object[] arr)
protected Map<String,Object> parseQuery(String query)
normalizeQuery(java.lang.String)
to make all delimiters in the
specified query string match the current query delimiter
and then uses parseQuery(String,String)
to parse it
according to that same delimiter.query
- query stringprotected Map<String,Object> parseQuery(String query, String queryDelim)
query
- query stringqueryDelim
- query delimiterpublic void setFragment(Object obj)
obj
- fragmentprotected boolean setFromURI(Object obj)
URI
, then those same
values from the URI object to this instance, when not null or empty.
In other words, when given a URI this will only set values present
in the URI.obj
- URIprotected URI toURI(Object obj)
obj
- source objectprotected URI createURI()
URI
constructor that is appropriate to the opacity.public String getCharacterEncoding()
encode(java.lang.Object)
and
decode(java.lang.Object)
methods.public boolean isXHTML()
&
as the delimiter for query data pairs
or just using &
.public boolean getAppendParams()
param(Object,Object)
appends values;
false if the method overwrites existing value(s) for the specified key.public LinkTool scheme(Object scheme)
scheme
- schemepublic LinkTool secure()
public LinkTool insecure()
public String getScheme()
public boolean isSecure()
public boolean isOpaque()
URI
public LinkTool user(Object info)
info
- user infopublic String getUser()
URI.getUserInfo()
value for this instance.public LinkTool host(Object host)
DEFAULT_SCHEME
(http).host
- hostpublic String getHost()
public LinkTool port(Object port)
toString()
and other
createURI()
-dependent methods to alert the user
to the error.port
- portpublic Integer getPort()
public LinkTool path(Object pth)
pth
- pathpublic String getPath()
public LinkTool append(Object pth)
pth
- path to appendpublic String getDirectory()
getPath()
value, by just trimming
off all that follows the last "/".public String getFile()
public String getRoot()
public LinkTool root()
absolute()
and
sets the path, query, and fragment to null on
the returned instance.getRoot()
public LinkTool directory()
getDirectory()
and the query and fragment set to null.public boolean isRelative()
public LinkTool relative()
setForceRelative(boolean)
set to true.public LinkTool relative(Object obj)
Returns a copy of the link with the specified directory-relative
URI reference set as the end of the path and setForceRelative(boolean)
set to true. If the specified relative path is null, that is treated
the same as an empty path.
Example:
<a href='$link.relative("/login/index.vm")'>Login Page</a>
produces something like
<a href="/myapp/login/index.vm">Login Page</a>
obj
- A directory-relative URI reference (e.g. file path in current directory)relative()
public String getContextPath()
getDirectory()
.
It is here as an extension hook for subclasses to change the
"context" for relative links.relative(Object)
,
getDirectory()
public boolean isAbsolute()
public LinkTool absolute()
setForceRelative(boolean)
set to false and sets the
scheme to the "http" if no scheme has been set yet.public LinkTool absolute(Object obj)
Returns a copy of the link with the specified URI reference either used as or converted to an absolute (non-relative) URI reference. Unless the specified URI contains a query or anchor, those values will not be overwritten when using this method.
Example:
<a href='$link.absolute("login/index.vm")'>Login Page</a>
produces something like
<a href="http://myserver.net/myapp/login/index.vm">Login Page</a>
;
<a href='$link.absolute("/login/index.vm")'>Login Page</a>
produces something like
<a href="http://myserver.net/login/index.vm">Login Page</a>
;
and
<a href='$link.absolute("http://theirserver.com/index.jsp")'>Their, Inc.</a>
produces something like
<a href="http://theirserver.net/index.jsp">Their, Inc.</a>
obj
- A root-relative or context-relative path or an absolute URI.absolute()
public LinkTool uri(Object uri)
Returns a copy of the link with the given URI reference set. Few changes are applied to the given URI reference. The URI reference can be absolute, server-relative, relative and may contain query parameters. This method will overwrite all previous settings for scheme, host port, path, query and anchor.
uri
- URI reference to setpublic URI getUri()
URI
representation of this instance,
if any.SafeConfig.isSafeMode()
public String getBaseRef()
http://myserver.net/myapp/stuff/View.vm
Note! The returned String will not represent any URI reference
or query data set for this LinkTool. A typical application of
this method is with the HTML base tag. For example:
<base href="$link.baseRef">
public LinkTool query(Object query)
query
- query stringpublic String getQuery()
public LinkTool param(Object key, Object value)
Adds a key=value pair to the query data. Whether
this new query pair is appended to the current query
or overwrites any previous pair(s) with the same key
is controlled by the getAppendParams()
value.
The default behavior is to append.
key
- key of new query parametervalue
- value of new query parameterpublic LinkTool append(Object key, Object value)
key
- key of new query parametervalue
- value of new query parameterpublic LinkTool set(Object key, Object value)
key
- key of new query parametervalue
- value of new query parameterpublic LinkTool remove(Object key)
key
- key of the query pair(s) to be removedpublic LinkTool params(Object parameters)
handleParamsBoolean(boolean)
on it. In this class, true
values do nothing (subclasses may have use for them), but false
values will clear out all params in the query for that instance.
If you pass in a query string or a Map of parameters, those
values will be added to the new LinkTool, either overwriting
previous value(s) with those keys or appending to them,
depending on the getAppendParams()
value.parameters
- a boolean or new query data (either Map or query string)public Map getParams()
public LinkTool anchor(Object anchor)
Returns a copy of the link with the specified anchor to be added to the end of the generated hyperlink.
Example:
<a href='$link.setAnchor("foo")'>Foo</a>
produces something like
<a href="#foo">Foo</a>
anchor
- an internal document referencepublic String getAnchor()
public LinkTool getSelf()
public String toString()
http://myserver.net/myapp/stuff/View.vm?id=42&type=blue#foo
.
Typically, it is not necessary to call this method explicitely.
Velocity will call the toString() method automatically to obtain
a representable version of an object.protected String decodeQueryPercents(String url)
url
- source urlpublic boolean equals(Object obj)
equals
in class Object
obj
- object to compare totoString()
public int hashCode()
null
(yes, we do break that contract),
this will return -1
.public String encode(Object obj)
URLEncoder.encode(java.lang.String)
using the configured character encoding.obj
- URL to encodepublic String decode(Object obj)
URLDecoder.decode(java.lang.String)
using the configured character encoding.obj
- URL to decodeCopyright © 2002–2018 The Apache Software Foundation. All rights reserved.