summaryrefslogtreecommitdiff
path: root/libgpl/password/password.js
blob: 6b17b6468c497a37fb6c8d67db35ce7c4f7ae446 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/**
 * Password plugin script
 * @version @package_version@
 */

if (window.rcmail) {
  rcmail.addEventListener('init', function(evt) {

    // register command handler
    rcmail.register_command('plugin.password-save', function() { 
      var input_curpasswd = rcube_find_object('_curpasswd'),
        input_newpasswd = rcube_find_object('_newpasswd'),
        input_confpasswd = rcube_find_object('_confpasswd');
        input_pwstrength = rcube_find_object('_pwstrength');
        
      if (input_curpasswd && input_curpasswd.value == '') {
          rcmail.display_message(rcmail.gettext('nocurpassword', 'password'), 'error');
          input_curpasswd.focus();
      } else if (input_newpasswd && input_newpasswd.value == '') {
          rcmail.display_message(rcmail.gettext('nopassword', 'password'), 'error');
          input_newpasswd.focus();
      } else if (input_confpasswd && input_confpasswd.value == '') {
          rcmail.display_message(rcmail.gettext('nopassword', 'password'), 'error');
          input_confpasswd.focus();
      } else if (input_newpasswd && input_confpasswd && input_newpasswd.value != input_confpasswd.value) {
          rcmail.display_message(rcmail.gettext('passwordinconsistency', 'password'), 'error');
          input_newpasswd.focus();
      } else if (input_pwstrength.value == 0) {
          rcmail.display_message(rcmail.gettext('passwordweak', 'pwstrength'), 'error');
          input_newpasswd.focus();
      } else {
          rcmail.gui_objects.passform.submit();
      }
    }, true);
  })
}