parent
4a55467e1e
commit
a834b91091
@ -0,0 +1,67 @@
|
|||||||
|
package info.bukova.isspst.validators;
|
||||||
|
|
||||||
|
import info.bukova.isspst.StringUtils;
|
||||||
|
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.zkoss.bind.ValidationContext;
|
||||||
|
import org.zkoss.bind.validator.AbstractValidator;
|
||||||
|
import org.zkoss.zk.ui.Component;
|
||||||
|
import org.zkoss.zk.ui.HtmlBasedComponent;
|
||||||
|
import org.zkoss.zk.ui.event.Event;
|
||||||
|
import org.zkoss.zk.ui.event.EventListener;
|
||||||
|
import org.zkoss.zul.Messagebox;
|
||||||
|
|
||||||
|
public abstract class BaseValidator extends AbstractValidator
|
||||||
|
{
|
||||||
|
HtmlBasedComponent htmlComponent;
|
||||||
|
|
||||||
|
protected Logger getLogger()
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void errorMsg(ValidationContext ctx, String msg, String componentIdFocused)
|
||||||
|
{
|
||||||
|
this.addInvalidMessage(ctx, msg);
|
||||||
|
|
||||||
|
Logger logger = this.getLogger();
|
||||||
|
|
||||||
|
if (logger != null)
|
||||||
|
{
|
||||||
|
logger.error(msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
htmlComponent = null;
|
||||||
|
|
||||||
|
if ((componentIdFocused != null) && (!componentIdFocused.isEmpty()))
|
||||||
|
{
|
||||||
|
Component component = ctx.getBindContext().getComponent().getFellowIfAny(componentIdFocused, true);
|
||||||
|
|
||||||
|
if ((component != null) && (component instanceof HtmlBasedComponent))
|
||||||
|
{
|
||||||
|
htmlComponent = (HtmlBasedComponent) component;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Messagebox.show(msg, StringUtils.localize("Error"), Messagebox.OK, Messagebox.ERROR, new EventListener<Event>()
|
||||||
|
{
|
||||||
|
public void onEvent(Event evt) throws InterruptedException
|
||||||
|
{
|
||||||
|
if (htmlComponent != null)
|
||||||
|
{
|
||||||
|
htmlComponent.setFocus(true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public void addErrorMsg(ValidationContext ctx, String msg)
|
||||||
|
{
|
||||||
|
this.errorMsg(ctx, msg, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void validate(ValidationContext ctx)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,61 @@
|
|||||||
|
package info.bukova.isspst.validators;
|
||||||
|
|
||||||
|
import info.bukova.isspst.StringUtils;
|
||||||
|
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
import org.zkoss.bind.Property;
|
||||||
|
import org.zkoss.bind.ValidationContext;
|
||||||
|
|
||||||
|
public class UserFormValidator extends BaseValidator
|
||||||
|
{
|
||||||
|
private final static Logger log = LoggerFactory.getLogger(UserFormValidator.class.getName());
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected Logger getLogger()
|
||||||
|
{
|
||||||
|
return log;
|
||||||
|
}
|
||||||
|
|
||||||
|
private boolean recordIsNew;
|
||||||
|
|
||||||
|
public UserFormValidator(boolean recordIsNew)
|
||||||
|
{
|
||||||
|
this.recordIsNew = recordIsNew;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void validate(ValidationContext ctx)
|
||||||
|
{
|
||||||
|
Property propertyOrig = ctx.getProperties("password")[0];
|
||||||
|
String passwordOrig = (String) propertyOrig.getValue();
|
||||||
|
|
||||||
|
if (passwordOrig == null)
|
||||||
|
{
|
||||||
|
passwordOrig = "";
|
||||||
|
}
|
||||||
|
|
||||||
|
if (passwordOrig.isEmpty())
|
||||||
|
{
|
||||||
|
if (this.recordIsNew)
|
||||||
|
{
|
||||||
|
this.errorMsg(ctx, StringUtils.localize("UserPasswordIsEmpty"), "idUserPasswordOriginal");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Property propertyDupl = ctx.getProperties("retPasswd")[0];
|
||||||
|
String passwordDupl = (String) propertyDupl.getValue();
|
||||||
|
|
||||||
|
if (passwordDupl == null)
|
||||||
|
{
|
||||||
|
passwordDupl = "";
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!passwordOrig.equals(passwordDupl))
|
||||||
|
{
|
||||||
|
this.errorMsg(ctx, StringUtils.localize("UserPasswordsAreNotSame"), "idUserPasswordDuplicate");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,65 @@
|
|||||||
|
package info.bukova.isspst.validators;
|
||||||
|
|
||||||
|
import info.bukova.isspst.StringUtils;
|
||||||
|
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
import org.zkoss.bind.Property;
|
||||||
|
import org.zkoss.bind.ValidationContext;
|
||||||
|
|
||||||
|
public class UserPasswordDuplValidator extends BaseValidator
|
||||||
|
{
|
||||||
|
private final static Logger log = LoggerFactory.getLogger(UserPasswordDuplValidator.class.getName());
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected Logger getLogger()
|
||||||
|
{
|
||||||
|
return log;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void validate(ValidationContext ctx)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void aaa(ValidationContext ctx)
|
||||||
|
{
|
||||||
|
Object argOrig = ctx.getBindContext().getValidatorArg("orig");
|
||||||
|
|
||||||
|
if (argOrig == null)
|
||||||
|
{
|
||||||
|
this.addErrorMsg(ctx, StringUtils.localize("NullPointerErr"));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!(argOrig instanceof String))
|
||||||
|
{
|
||||||
|
this.addErrorMsg(ctx, StringUtils.localize("DataTypeErr"));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
String propertyNameOrig = (String) argOrig;
|
||||||
|
|
||||||
|
Property propertyOrig = ctx.getProperties(propertyNameOrig)[0];
|
||||||
|
String passwordOrig = (String) propertyOrig.getValue();
|
||||||
|
|
||||||
|
if (passwordOrig == null)
|
||||||
|
{
|
||||||
|
passwordOrig = "";
|
||||||
|
}
|
||||||
|
|
||||||
|
Property propertyDupl = ctx.getProperty();
|
||||||
|
String passwordDupl = (String) propertyDupl.getValue();
|
||||||
|
|
||||||
|
if (passwordDupl == null)
|
||||||
|
{
|
||||||
|
passwordDupl = "";
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!passwordOrig.equals(passwordDupl))
|
||||||
|
{
|
||||||
|
this.addErrorMsg(ctx, StringUtils.localize("UserPasswordsAreNotSame"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,51 @@
|
|||||||
|
package info.bukova.isspst.validators;
|
||||||
|
|
||||||
|
import info.bukova.isspst.StringUtils;
|
||||||
|
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
import org.zkoss.bind.Property;
|
||||||
|
import org.zkoss.bind.ValidationContext;
|
||||||
|
|
||||||
|
public class UserPasswordOrigValidator extends BaseValidator
|
||||||
|
{
|
||||||
|
private final static Logger log = LoggerFactory.getLogger(UserPasswordOrigValidator.class.getName());
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected Logger getLogger()
|
||||||
|
{
|
||||||
|
return log;
|
||||||
|
}
|
||||||
|
|
||||||
|
private boolean recordIsNew;
|
||||||
|
|
||||||
|
public UserPasswordOrigValidator(boolean recordIsNew)
|
||||||
|
{
|
||||||
|
this.recordIsNew = recordIsNew;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void validate(ValidationContext ctx)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void aaa(ValidationContext ctx)
|
||||||
|
{
|
||||||
|
Property propertyOrig = ctx.getProperty();
|
||||||
|
String passwordOrig = (String) propertyOrig.getValue();
|
||||||
|
|
||||||
|
if (passwordOrig == null)
|
||||||
|
{
|
||||||
|
passwordOrig = "";
|
||||||
|
}
|
||||||
|
|
||||||
|
if (passwordOrig.isEmpty())
|
||||||
|
{
|
||||||
|
if (this.recordIsNew)
|
||||||
|
{
|
||||||
|
this.addErrorMsg(ctx, StringUtils.localize("UserPasswordIsEmpty"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -1,3 +1,11 @@
|
|||||||
BuildingsFormCodeConstr=Zadejte k\u00F3d budovy...
|
BuildingsFormCodeConstr=Zadejte k\u00F3d budovy...
|
||||||
MaterialFormCodeConstr=Zadejte k\u00F3d materi\u00E1lu...
|
MaterialFormCodeConstr=Zadejte k\u00F3d materi\u00E1lu...
|
||||||
MUnitsFormCodeConstr=Zadejte k\u00f3d m\u011brn\u00e9 jednotky...
|
MUnitsFormCodeConstr=Zadejte k\u00f3d m\u011brn\u00e9 jednotky...
|
||||||
|
|
||||||
|
Lad = \u00E1
|
||||||
|
Led = \u00E9
|
||||||
|
Leh = \u011B
|
||||||
|
Lid = \u00ED
|
||||||
|
Lod = \u00F3
|
||||||
|
Lyd = \u00FD
|
||||||
|
Lzh = \u017E
|
||||||
|
@ -0,0 +1,5 @@
|
|||||||
|
NullPointerErr=Chyba ukazatele...
|
||||||
|
DataTypeErr=Chybný datový typ...
|
||||||
|
|
||||||
|
UserPasswordIsEmpty=Uživatelské heslo musí být zadané...
|
||||||
|
UserPasswordsAreNotSame=Znovu zadané heslo není stejné...
|
Loading…
Reference in New Issue