1
0
mirror of https://github.com/kakwa/ldapcherry synced 2024-07-03 17:09:04 +02:00
ldapcherry/resources/static/js/ppolicy.js

43 lines
1.5 KiB
JavaScript
Raw Normal View History

$('#form').validator({
custom: {
'ppolicy': function($el) {
2016-07-05 19:57:35 +02:00
if(! $el.prop('required') && $el.val() == 0){
return true;
};
var $ret = 'PPolicy error';
$.ajax({
url: '/checkppolicy',
type: 'POST',
2016-07-05 19:57:35 +02:00
dataType: 'json',
async: false,
data: 'pwd=' + encodeURIComponent($el.val()),
2016-07-05 19:57:35 +02:00
success: function(data) {
$ret = data;
},
error: function(jqXHR, exception) {
switch (jqXHR.status) {
case 400:
$ret = {"reason":"Javascript ppolicy.js error","match":false};
break;
case 403:
$ret = {"reason":"Session expired, you must reconnect","match":false};
break;
case 500:
$ret = {"reason":"Server error","match":false};
break;
default:
$ret = {"reason":"Unknown error [" + jqXHR.status + "], check logs","match":false};
}
2016-07-05 19:57:35 +02:00
}
});
this.options.errors['ppolicy'] = $ret['reason'];
return $ret['match'];
}
},
errors: {
'ppolicy': 'PPolicy error',
}
})
2016-07-05 19:57:35 +02:00
// vim:set expandtab tabstop=4 shiftwidth=4: