home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 May / PCWorld_2003-05_cd.bin / Komunik / phoenix / chrome / pippki.jar / content / pippki / resetpassword.js < prev    next >
Text File  |  2002-02-25  |  3KB  |  90 lines

  1. /*
  2.  * The contents of this file are subject to the Mozilla Public
  3.  * License Version 1.1 (the "License"); you may not use this file
  4.  * except in compliance with the License. You may obtain a copy of
  5.  * the License at http://www.mozilla.org/MPL/
  6.  *
  7.  * Software distributed under the License is distributed on an "AS
  8.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  9.  * implied. See the License for the specific language governing
  10.  * rights and limitations under the License.
  11.  *
  12.  * The Original Code is mozilla.org code.
  13.  *
  14.  * The Initial Developer of the Original Code is Netscape
  15.  * Communications Corporation.  Portions created by Netscape are
  16.  * Copyright (C) 2001 Netscape Communications Corporation. All
  17.  * Rights Reserved.
  18.  */
  19.  
  20. const nsPK11TokenDB = "@mozilla.org/security/pk11tokendb;1";
  21. const nsIPK11TokenDB = Components.interfaces.nsIPK11TokenDB;
  22.  
  23. var tokenName;
  24.  
  25. function onLoad()
  26. {
  27.   if ("arguments" in window) {
  28.     var params = window.arguments[0].QueryInterface(nsIDialogParamBlock);
  29.     tokenName = params.GetString(1);
  30.   } else {
  31.     tokenName = self.name;
  32.   }
  33.  
  34.   var okButton = document.getElementById("ok");
  35.   var cancelButton = document.getElementById("cancel");
  36.   var helpButton = document.getElementById("help");
  37.   
  38.   var bundle = document.getElementById("pippki_bundle");
  39.  
  40.   doSetOKCancel(resetPassword, null, null, null);
  41.  
  42.   if (okButton && cancelButton && bundle) {
  43.     okButton.setAttribute("label", bundle.getString("resetPasswordButtonLabel"));
  44.     okButton.removeAttribute("default");
  45.     cancelButton.setAttribute("default", "true");
  46.     cancelButton.focus();
  47.   }
  48. }
  49.  
  50. function resetPassword()
  51. {
  52.   var pk11db = Components.classes[nsPK11TokenDB].getService(nsIPK11TokenDB);
  53.   var token = pk11db.findTokenByName(tokenName);
  54.   token.reset();
  55.  
  56.   var pref = Components.classes['@mozilla.org/preferences;1'];
  57.   if (pref) {
  58.     pref = pref.getService(Components.interfaces.nsIPrefBranch);
  59.     try {
  60.       if (pref.getBoolPref("wallet.crypto")) {
  61.         // data in wallet is encrypted, clear it
  62.         var wallet = Components.classes['@mozilla.org/wallet/wallet-service;1'];
  63.         if (wallet) {
  64.           wallet = wallet.getService(Components.interfaces.nsIWalletService);
  65.           wallet.WALLET_DeleteAll();
  66.         }
  67.       }
  68.     }
  69.     catch(e) {
  70.       // wallet.crypto pref is missing
  71.     }
  72.   }
  73.  
  74.   var bundle = document.getElementById("pippki_bundle");
  75.   var promptService = Components.classes["@mozilla.org/embedcomp/prompt-service;1"].getService();
  76.   promptService = promptService.QueryInterface(Components.interfaces.nsIPromptService);
  77.   if (promptService && bundle) {
  78.     promptService.alert(window,
  79.       bundle.getString("resetPasswordConfirmationTitle"), 
  80.       bundle.getString("resetPasswordConfirmationMessage"));
  81.   }
  82.  
  83.   window.close();
  84. }
  85.  
  86. function doHelpButton()
  87. {
  88.   openHelp('reset_pwd');
  89. }
  90.