Added session object as standard macro handler.
Made the full macro name an instance field so it doesn't have to be composed on request.
This commit is contained in:
parent
3c51a22b21
commit
3e278641a1
1 changed files with 27 additions and 24 deletions
|
@ -136,7 +136,7 @@ public final class Skin {
|
||||||
for (int i=0; i<parts.length; i++) {
|
for (int i=0; i<parts.length; i++) {
|
||||||
if (parts[i] instanceof Macro) {
|
if (parts[i] instanceof Macro) {
|
||||||
Macro m = (Macro) parts[i];
|
Macro m = (Macro) parts[i];
|
||||||
if (macroname.equals (m.getFullName ()))
|
if (macroname.equals (m.fullName))
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -163,6 +163,7 @@ public final class Skin {
|
||||||
final int start, end;
|
final int start, end;
|
||||||
String handler;
|
String handler;
|
||||||
String name;
|
String name;
|
||||||
|
String fullName;
|
||||||
String prefix;
|
String prefix;
|
||||||
String suffix;
|
String suffix;
|
||||||
String encoding;
|
String encoding;
|
||||||
|
@ -256,6 +257,11 @@ public final class Skin {
|
||||||
} else if (state <= MACRO)
|
} else if (state <= MACRO)
|
||||||
name = b.toString().trim();
|
name = b.toString().trim();
|
||||||
}
|
}
|
||||||
|
if (handler == null)
|
||||||
|
fullName = name;
|
||||||
|
else
|
||||||
|
fullName = handler+"."+name;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -287,9 +293,9 @@ public final class Skin {
|
||||||
*/
|
*/
|
||||||
public void render (RequestEvaluator reval, Object thisObject, Map paramObject, Map handlerCache) throws RedirectException {
|
public void render (RequestEvaluator reval, Object thisObject, Map paramObject, Map handlerCache) throws RedirectException {
|
||||||
|
|
||||||
if (sandbox != null && !sandbox.contains (getFullName ())) {
|
if (sandbox != null && !sandbox.contains (fullName)) {
|
||||||
String h = handler == null ? "global" : handler;
|
String h = handler == null ? "global" : handler;
|
||||||
reval.res.write ("[Macro "+getFullName()+" not allowed in sandbox]");
|
reval.res.write ("[Macro "+fullName+" not allowed in sandbox]");
|
||||||
return;
|
return;
|
||||||
} else if ("response".equalsIgnoreCase (handler)) {
|
} else if ("response".equalsIgnoreCase (handler)) {
|
||||||
renderFromResponse (reval);
|
renderFromResponse (reval);
|
||||||
|
@ -300,6 +306,9 @@ public final class Skin {
|
||||||
} else if ("param".equalsIgnoreCase (handler)) {
|
} else if ("param".equalsIgnoreCase (handler)) {
|
||||||
renderFromParam (reval, paramObject);
|
renderFromParam (reval, paramObject);
|
||||||
return;
|
return;
|
||||||
|
} else if ("session".equalsIgnoreCase (handler)) {
|
||||||
|
renderFromSession (reval);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
@ -407,7 +416,7 @@ public final class Skin {
|
||||||
writeToResponse (v, reval.res, true);
|
writeToResponse (v, reval.res, true);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
String msg = "[HopMacro unhandled: "+getFullName()+"]";
|
String msg = "[HopMacro unhandled: "+fullName+"]";
|
||||||
reval.res.write (" "+msg+" ");
|
reval.res.write (" "+msg+" ");
|
||||||
app.logEvent (msg);
|
app.logEvent (msg);
|
||||||
}
|
}
|
||||||
|
@ -422,35 +431,31 @@ public final class Skin {
|
||||||
String msg = x.getMessage();
|
String msg = x.getMessage();
|
||||||
if (msg == null || msg.length() < 10)
|
if (msg == null || msg.length() < 10)
|
||||||
msg = x.toString();
|
msg = x.toString();
|
||||||
msg = "[HopMacro error in "+getFullName()+": "+msg+"]";
|
msg = "[HopMacro error in "+fullName+": "+msg+"]";
|
||||||
reval.res.write (" "+msg+" ");
|
reval.res.write (" "+msg+" ");
|
||||||
app.logEvent (msg);
|
app.logEvent (msg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void renderFromResponse (RequestEvaluator reval) {
|
private void renderFromResponse (RequestEvaluator reval) {
|
||||||
Object value = null;
|
Object value = reval.res.get (name);
|
||||||
// as a transitional solution, try to get the value from the
|
|
||||||
// hardcoded fields in the response object. If not present, try
|
|
||||||
// the response object's data object.
|
|
||||||
if ("title".equals (name))
|
|
||||||
value = reval.res.title;
|
|
||||||
else if ("head".equals (name))
|
|
||||||
value = reval.res.head;
|
|
||||||
else if ("body".equals (name))
|
|
||||||
value = reval.res.body;
|
|
||||||
else if ("message".equals (name))
|
|
||||||
value = reval.res.message;
|
|
||||||
if (value == null)
|
|
||||||
value = reval.res.get (name);
|
|
||||||
writeToResponse (value, reval.res, true);
|
writeToResponse (value, reval.res, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void renderFromRequest (RequestEvaluator reval) {
|
private void renderFromRequest (RequestEvaluator reval) {
|
||||||
|
if (reval.req == null)
|
||||||
|
return;
|
||||||
Object value = reval.req.get (name);
|
Object value = reval.req.get (name);
|
||||||
writeToResponse (value, reval.res, true);
|
writeToResponse (value, reval.res, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void renderFromSession (RequestEvaluator reval) {
|
||||||
|
if (reval.session == null)
|
||||||
|
return;
|
||||||
|
Object value = reval.session.getCacheNode().getString (name, false);
|
||||||
|
writeToResponse (value, reval.res, true);
|
||||||
|
}
|
||||||
|
|
||||||
private void renderFromParam (RequestEvaluator reval, Map paramObject) {
|
private void renderFromParam (RequestEvaluator reval, Map paramObject) {
|
||||||
if (paramObject == null)
|
if (paramObject == null)
|
||||||
reval.res.write ("[HopMacro error: Skin requires a parameter object]");
|
reval.res.write ("[HopMacro error: Skin requires a parameter object]");
|
||||||
|
@ -500,17 +505,15 @@ public final class Skin {
|
||||||
|
|
||||||
|
|
||||||
public String toString () {
|
public String toString () {
|
||||||
return "[HopMacro: "+getFullName()+"]";
|
return "[HopMacro: "+fullName+"]";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return the full name of the macro in handler.name notation
|
* Return the full name of the macro in handler.name notation
|
||||||
*/
|
*/
|
||||||
public String getFullName () {
|
public String getFullName () {
|
||||||
if (handler == null)
|
return fullName;
|
||||||
return name;
|
|
||||||
else
|
|
||||||
return handler+"."+name;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue