webit.script.loaders.impl.SimpleSecurityLoader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webit-script Show documentation
Show all versions of webit-script Show documentation
a template-like script and engine, all writen with Java.
The newest version!
// Copyright (c) 2013-2014, Webit Team. All Rights Reserved.
package webit.script.loaders.impl;
import webit.script.Engine;
import webit.script.Initable;
import webit.script.loaders.Loader;
import webit.script.loaders.Resource;
import webit.script.loaders.impl.resources.NotFoundResource;
import webit.script.util.ClassEntry;
import webit.script.util.StringUtil;
/**
*
* @author zqq90
*/
public class SimpleSecurityLoader implements Loader, Initable {
protected String[] list = StringUtil.EMPTY_ARRAY;
protected ClassEntry loaderType;
protected Loader loader;
public void init(Engine engine) {
this.loader = (Loader) engine.getComponent(loaderType);
}
public Resource get(String name) {
for (String item : this.list) {
if (name.startsWith(item)) {
return this.loader.get(name);
}
}
return new NotFoundResource(name, "Security Unaccessable: " + name);
}
public String concat(String parent, String name) {
return this.loader.concat(parent, name);
}
public String normalize(String name) {
return this.loader.normalize(name);
}
public boolean isEnableCache(String name) {
return this.loader.isEnableCache(name);
}
public void setList(String list) {
this.list = StringUtil.toArray(list);
}
public void setLoader(ClassEntry loaderType) {
this.loaderType = loaderType;
}
}