IDEMPIERE-3696 Implementing warning to encourage user to change their password before it is expired / integrate patch from Nicolas Micoud
This commit is contained in:
parent
4ea2c3f450
commit
9d69b81900
|
|
@ -645,16 +645,18 @@ public class RolePanel extends Window implements EventListener<Event>, Deferrabl
|
||||||
}
|
}
|
||||||
|
|
||||||
// See if a popup should encourage user to change its password
|
// See if a popup should encourage user to change its password
|
||||||
|
if (!MUser.get(Env.getCtx()).isNoPasswordReset()) {
|
||||||
int notifyDay = MSysConfig.getIntValue(MSysConfig.USER_LOCKING_PASSWORD_NOTIFY_DAY, 0);
|
int notifyDay = MSysConfig.getIntValue(MSysConfig.USER_LOCKING_PASSWORD_NOTIFY_DAY, 0);
|
||||||
int pwdAgeDay = MSysConfig.getIntValue(MSysConfig.USER_LOCKING_MAX_PASSWORD_AGE_DAY, 0);
|
int pwdAgeDay = MSysConfig.getIntValue(MSysConfig.USER_LOCKING_MAX_PASSWORD_AGE_DAY, 0);
|
||||||
if (notifyDay > 0 && pwdAgeDay > 0) {
|
if (notifyDay > 0 && pwdAgeDay > 0) {
|
||||||
Timestamp limit = TimeUtil.addDays(MUser.get(Env.getCtx(), Env.getAD_User_ID(Env.getCtx())).getDatePasswordChanged(), pwdAgeDay);
|
Timestamp limit = TimeUtil.addDays(MUser.get(Env.getCtx()).getDatePasswordChanged(), pwdAgeDay);
|
||||||
Timestamp notifyAfter = TimeUtil.addDays(limit, -notifyDay);
|
Timestamp notifyAfter = TimeUtil.addDays(limit, -notifyDay);
|
||||||
Timestamp now = TimeUtil.getDay(null);
|
Timestamp now = TimeUtil.getDay(null);
|
||||||
|
|
||||||
if (now.after(notifyAfter))
|
if (now.after(notifyAfter))
|
||||||
FDialog.warn(0, null, "", Msg.getMsg(Env.getCtx(), "YourPasswordWillExpireInDays", new Object[] {TimeUtil.getDaysBetween(now, limit)}));
|
FDialog.warn(0, null, "", Msg.getMsg(Env.getCtx(), "YourPasswordWillExpireInDays", new Object[] {TimeUtil.getDaysBetween(now, limit)}));
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
wndLogin.loginCompleted();
|
wndLogin.loginCompleted();
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue