Skip to content
Snippets Groups Projects
Commit 9a71386d authored by strentini's avatar strentini
Browse files

OO-98 : only do secureJS once (on init component). improve validation

--HG--
branch : 80-patch
parent 70fecd23
No related branches found
No related tags found
No related merge requests found
......@@ -29,6 +29,7 @@ package org.olat.core.gui.components;
import java.util.ArrayList;
import java.util.List;
import org.apache.commons.lang.StringUtils;
import org.olat.core.gui.UserRequest;
import org.olat.core.gui.control.Controller;
import org.olat.core.gui.control.Event;
......@@ -119,10 +120,36 @@ public abstract class Component {
staticCmp = true;
}
// OO-98: dispatchID will get used in generated js-code. thus, make sure it
// is valid as variable name.
dispatchID = secureJSVarName(dispatchID);
this.name = name;
this.translator = translator;
listeners = new ArrayList<Controller>(2);
}
/**
* OO-98 : a fix in FormUIFactory changed the id from "null" to
* "something.like.this" for selectionElements (like radio-buttons)
* this led to js-errors because output was: var o_fisomething.like.this [..]
* now this method ensures that the id does not contain dots
*
* @param id
* @return a valid JS variableName
*/
private static String secureJSVarName(String id) {
if(StringUtils.isBlank(id)) return "o_"+Long.toString(CodeHelper.getRAMUniqueID());
id = id.replace("-", "_"); // no -
id = id.replace(".", "_"); // no dots
// no numbers at the beginning
char c = id.charAt(0);
if (c <='/' || c >= ':') {
id = "o"+id;
}
return id;
}
/**
* @return String
......
......@@ -28,6 +28,8 @@ package org.olat.core.gui.components.form.flexible.impl;
import java.util.Iterator;
import java.util.Set;
import org.apache.commons.lang.StringEscapeUtils;
import org.apache.commons.lang.StringUtils;
import org.json.JSONException;
import org.json.JSONObject;
import org.olat.core.gui.render.StringOutput;
......@@ -143,23 +145,10 @@ public class FormJSHelper {
// Execute code within an anonymous function (closure) to not leak
// variables to global scope (OLAT-5755)
sb.append("(function() {");
sb.append("var ").append(secureJSVarName(id)).append(" = Ext.get('").append(id).append("'); ");
sb.append("var ").append(id).append(" = Ext.get('").append(id).append("'); ");
return sb.toString();
}
/**
* OO-98 : a fix in FormUIFactory changed the id from "null" to
* "something.like.this" for selectionElements (like radio-buttons)
* this led to js-errors because output was: var o_fisomething.like.this [..]
* now this method ensures that the id does not contain dots
*
* @param id
* @return
*/
public static String secureJSVarName(String id){
return id.replace(".", "_");
}
public static String getJSStart(){
// Execute code within an anonymous function (closure) to not leak
// variables to global scope (OLAT-5755)
......@@ -172,12 +161,12 @@ public class FormJSHelper {
}
public static String getExtJSVarDeclaration(String id){
return "var "+secureJSVarName(id)+" = Ext.get('"+id+"'); ";
return "var "+id+" = Ext.get('"+id+"'); ";
}
public static String getSetFlexiFormDirty(Form form, String id){
String result;
String prefix = secureJSVarName(id) + ".on('";
String prefix = id + ".on('";
// examples:
// o_fi400.on({'click',setFormDirty,this,{formId:"ofo_100"}});
// o_fi400.on({'change',setFormDirty,this,{formId:"ofo_100"}});
......@@ -190,7 +179,7 @@ public class FormJSHelper {
public static String getSetFlexiFormDirtyForCheckbox(Form form, String id){
String result;
String prefix = secureJSVarName(id) + ".on('";
String prefix = id + ".on('";
// examples:
// o_fi400.on({'click',setFormDirty,this,{formId:"ofo_100"}});
// o_fi400.on({'change',setFormDirty,this,{formId:"ofo_100"}});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment