-
Notifications
You must be signed in to change notification settings - Fork 123
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
XCOMMONS-2534: Provide a method to escape content passed to wiki macro list parameters #285
Draft
manuelleduc
wants to merge
1
commit into
xwiki:master
Choose a base branch
from
manuelleduc:XCOMMONS-2534
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
70 changes: 70 additions & 0 deletions
70
...core/xwiki-commons-velocity/src/main/java/org/xwiki/velocity/tools/XWiki21EscapeTool.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
/* | ||
* See the NOTICE file distributed with this work for additional | ||
* information regarding copyright ownership. | ||
* | ||
* This 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 software 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. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public | ||
* License along with this software; if not, write to the Free | ||
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA | ||
* 02110-1301 USA, or see the FSF site: http://www.fsf.org. | ||
*/ | ||
package org.xwiki.velocity.tools; | ||
|
||
import org.apache.commons.lang3.StringUtils; | ||
import org.xwiki.stability.Unstable; | ||
|
||
/** | ||
* @version $Id$ | ||
* @since 14.9RC1 | ||
*/ | ||
@Unstable | ||
public class XWiki21EscapeTool | ||
{ | ||
private EscapeTool escapeTool; | ||
|
||
/** | ||
* Default constructor. | ||
* | ||
* @param escapeTool the main escape tool | ||
*/ | ||
public XWiki21EscapeTool(EscapeTool escapeTool) | ||
{ | ||
this.escapeTool = escapeTool; | ||
} | ||
|
||
/** | ||
* Escape values to safely use them as parameters of a xwiki macro expecting an array or a collection. | ||
* | ||
* @param values the values to escape | ||
* @return the escaped value | ||
*/ | ||
public String parameterArray(String... values) | ||
{ | ||
String[] ret = new String[values.length]; | ||
for (int valuesIndex = 0; valuesIndex < values.length; valuesIndex++) { | ||
ret[valuesIndex] = String.valueOf(parameterArray(values[valuesIndex])); | ||
} | ||
return StringUtils.join(ret, ","); | ||
} | ||
|
||
private char[] parameterArray(String value) | ||
{ | ||
String javaEscaped = String.format("\"%s\"", this.escapeTool.java(value)); | ||
char[] xwiki21Escaped = new char[javaEscaped.length() * 2]; | ||
for (int i = 0; i < javaEscaped.length(); i++) { | ||
// TODO: duplicated? | ||
xwiki21Escaped[i * 2] = '~'; | ||
xwiki21Escaped[(i * 2) + 1] = javaEscaped.charAt(i); | ||
} | ||
return xwiki21Escaped; | ||
} | ||
} |
45 changes: 45 additions & 0 deletions
45
.../xwiki-commons-velocity/src/test/java/org/xwiki/velocity/tools/XWiki21EscapeToolTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/* | ||
* See the NOTICE file distributed with this work for additional | ||
* information regarding copyright ownership. | ||
* | ||
* This 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 software 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. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public | ||
* License along with this software; if not, write to the Free | ||
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA | ||
* 02110-1301 USA, or see the FSF site: http://www.fsf.org. | ||
*/ | ||
package org.xwiki.velocity.tools; | ||
|
||
import org.junit.jupiter.api.Test; | ||
import org.xwiki.test.junit5.mockito.ComponentTest; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertEquals; | ||
|
||
/** | ||
* Test of {@link XWiki21EscapeTool}. | ||
* | ||
* @version $Id$ | ||
* @since 14.9RC1 | ||
*/ | ||
@ComponentTest | ||
class XWiki21EscapeToolTest | ||
{ | ||
private final XWiki21EscapeTool xWiki21EscapeTool = new XWiki21EscapeTool(new EscapeTool()); | ||
|
||
@Test | ||
void parameterArray() | ||
{ | ||
assertEquals("~\"~a~\"", this.xWiki21EscapeTool.parameterArray("a")); | ||
assertEquals("~\"~a~\",~\"~b~\"", this.xWiki21EscapeTool.parameterArray("a", "b")); | ||
assertEquals("~\"~a~\\~\"~\",~\"~b~\"", this.xWiki21EscapeTool.parameterArray("a\"", "b")); | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo: it's
XWiki
:)There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not if we want to be able to write
$escapetool.xwiki21.parameterArray
in velocity right?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Indeed (https://velocity.apache.org/engine/2.0/user-guide.html#property-lookup-rules),
getxwiki21()
would work too but it's not better.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe just put a comment to explain it's not a typo but that it's for being able to write
$escapetool.xwiki21.
from Velocity.