home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 December / PCWorld_2005-12_cd.bin / komunikace / netscape / nsb-install-8-0.exe / chrome / comm.jar / content / cookie / cookieAcceptDialog.js < prev    next >
Text File  |  2005-09-26  |  9KB  |  219 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is cookie manager code.
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  * Michiel van Leeuwen.
  18.  * Portions created by the Initial Developer are Copyright (C) 2002
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *
  23.  * Alternatively, the contents of this file may be used under the terms of
  24.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  25.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  26.  * in which case the provisions of the GPL or the LGPL are applicable instead
  27.  * of those above. If you wish to allow use of your version of this file only
  28.  * under the terms of either the GPL or the LGPL, and not to allow others to
  29.  * use your version of this file under the terms of the MPL, indicate your
  30.  * decision by deleting the provisions above and replace them with the notice
  31.  * and other provisions required by the GPL or the LGPL. If you do not delete
  32.  * the provisions above, a recipient may use your version of this file under
  33.  * the terms of any one of the MPL, the GPL or the LGPL.
  34.  *
  35.  * ***** END LICENSE BLOCK ***** */
  36.  
  37. const nsICookieAcceptDialog = Components.interfaces.nsICookieAcceptDialog;
  38. const nsIDialogParamBlock = Components.interfaces.nsIDialogParamBlock;
  39. const nsICookie = Components.interfaces.nsICookie;
  40. const nsICookiePromptService = Components.interfaces.nsICookiePromptService;
  41.  
  42. var params; 
  43. var cookieBundle;
  44. var gDateService = null;
  45.  
  46. var showDetails = "";
  47. var hideDetails = "";
  48. var detailsAccessKey = "";
  49.  
  50. function onload()
  51. {
  52.   doSetOKCancel(cookieAcceptNormal, cookieDeny, cookieAcceptSession);
  53.  
  54.   var dialog = document.documentElement;
  55.  
  56.   document.getElementById("Button2").collapsed = false;
  57.   
  58.   document.getElementById("ok").label = dialog.getAttribute("acceptLabel");
  59.   document.getElementById("ok").accessKey = dialog.getAttribute("acceptKey");
  60.   document.getElementById("Button2").label = dialog.getAttribute("extra1Label");
  61.   document.getElementById("Button2").accessKey = dialog.getAttribute("extra1Key");
  62.   document.getElementById("cancel").label = dialog.getAttribute("cancelLabel");
  63.   document.getElementById("cancel").accessKey = dialog.getAttribute("cancelKey");
  64.  
  65.   if (!gDateService) {
  66.     const nsScriptableDateFormat_CONTRACTID = "@mozilla.org/intl/scriptabledateformat;1";
  67.     const nsIScriptableDateFormat = Components.interfaces.nsIScriptableDateFormat;
  68.     gDateService = Components.classes[nsScriptableDateFormat_CONTRACTID]
  69.                              .getService(nsIScriptableDateFormat);
  70.   }
  71.  
  72.   cookieBundle = document.getElementById("cookieBundle");
  73.  
  74.   //cache strings
  75.   if (!showDetails) {
  76.     showDetails = cookieBundle.getString('showDetails');
  77.   }
  78.   if (!hideDetails) {
  79.     hideDetails = cookieBundle.getString('hideDetails');
  80.   }
  81.   detailsAccessKey = cookieBundle.getString('detailsAccessKey');
  82.  
  83.   if (document.getElementById('infobox').hidden) {
  84.     document.getElementById('disclosureButton').setAttribute("label",showDetails);
  85.   } else {
  86.     document.getElementById('disclosureButton').setAttribute("label",hideDetails);
  87.   }
  88.   document.getElementById('disclosureButton').setAttribute("accesskey",detailsAccessKey);
  89.  
  90.   if ("arguments" in window && window.arguments.length >= 1 && window.arguments[0]) {
  91.     try {
  92.       params = window.arguments[0].QueryInterface(nsIDialogParamBlock);
  93.       var objects = params.objects;
  94.       var cookie = params.objects.queryElementAt(0,nsICookie);
  95.       
  96.       var cookiesFromHost = params.GetInt(nsICookieAcceptDialog.COOKIESFROMHOST);
  97.  
  98.       var messageFormat;
  99.       if (params.GetInt(nsICookieAcceptDialog.CHANGINGCOOKIE))
  100.         messageFormat = 'permissionToModifyCookie';
  101.       else if (cookiesFromHost > 1)
  102.         messageFormat = 'permissionToSetAnotherCookie';
  103.       else if (cookiesFromHost == 1)
  104.         messageFormat = 'permissionToSetSecondCookie';
  105.       else
  106.         messageFormat = 'permissionToSetACookie';
  107.  
  108.       var hostname = params.GetString(nsICookieAcceptDialog.HOSTNAME);
  109.  
  110.       var messageText;
  111.       if (cookie)
  112.         messageText = cookieBundle.getFormattedString(messageFormat,[hostname, cookiesFromHost]);
  113.       else
  114.         // No cookies means something went wrong. Bring up the dialog anyway
  115.         // to not make the mess worse.
  116.         messageText = cookieBundle.getFormattedString(messageFormat,["",cookiesFromHost]);
  117.  
  118.       var messageParent = document.getElementById("dialogtextbox");
  119.       var messageParagraphs = messageText.split("\n");
  120.  
  121.       // use value for the header, so it doesn't wrap.
  122.       var headerNode = document.getElementById("dialog-header");
  123.       headerNode.setAttribute("value",messageParagraphs[0]);
  124.  
  125.       // use childnodes here, the text can wrap
  126.       for (var i = 1; i < messageParagraphs.length; i++) {
  127.         var descriptionNode = document.createElement("description");
  128.         text = document.createTextNode(messageParagraphs[i]);
  129.         descriptionNode.appendChild(text);
  130.         messageParent.appendChild(descriptionNode);
  131.       }
  132.  
  133.       if (cookie) {
  134.         document.getElementById('ifl_name').setAttribute("value",cookie.name);
  135.         document.getElementById('ifl_value').setAttribute("value",cookie.value);
  136.         document.getElementById('ifl_host').setAttribute("value",cookie.host);
  137.         document.getElementById('ifl_path').setAttribute("value",cookie.path);
  138.         document.getElementById('ifl_isSecure').setAttribute("value",
  139.                                                                  cookie.isSecure ?
  140.                                                                     cookieBundle.getString("forSecureOnly") : cookieBundle.getString("forAnyConnection")
  141.                                                           );
  142.         document.getElementById('ifl_expires').setAttribute("value",GetExpiresString(cookie.expires));
  143.         document.getElementById('ifl_isDomain').setAttribute("value",
  144.                                                                  cookie.isDomain ?
  145.                                                                     cookieBundle.getString("domainColon") : cookieBundle.getString("hostColon")
  146.                                                             );
  147.       }
  148.       // set default result to not accept the cookie
  149.       params.SetInt(nsICookieAcceptDialog.ACCEPT_COOKIE, 0);
  150.       // and to not persist
  151.       params.SetInt(nsICookieAcceptDialog.REMEMBER_DECISION, 0);
  152.     } catch (e) {
  153.     }
  154.   }
  155. }
  156.  
  157. function showhideinfo()
  158. {
  159.   var infobox=document.getElementById('infobox');
  160.  
  161.   if (infobox.hidden) {
  162.     infobox.setAttribute("hidden","false");
  163.     document.getElementById('disclosureButton').setAttribute("label",hideDetails);
  164.   } else {
  165.     infobox.setAttribute("hidden","true");
  166.     document.getElementById('disclosureButton').setAttribute("label",showDetails);
  167.   }
  168.   sizeToContent();
  169. }
  170.  
  171. function cookieAcceptNormal()
  172. {
  173.   // accept the cookie normally
  174.   params.SetInt(nsICookieAcceptDialog.ACCEPT_COOKIE, nsICookiePromptService.ACCEPT_COOKIE); 
  175.   // And remember that when needed
  176.   params.SetInt(nsICookieAcceptDialog.REMEMBER_DECISION, document.getElementById('persistDomainAcceptance').checked);
  177.   window.close();
  178. }
  179.  
  180. function cookieAcceptSession()
  181. {
  182.   // accept for the session only
  183.   params.SetInt(nsICookieAcceptDialog.ACCEPT_COOKIE, nsICookiePromptService.ACCEPT_SESSION_COOKIE);
  184.   // And remember that when needed
  185.   params.SetInt(nsICookieAcceptDialog.REMEMBER_DECISION, document.getElementById('persistDomainAcceptance').checked);
  186.   window.close();
  187. }
  188.  
  189. function cookieDeny()
  190. {
  191.   // say that the cookie was rejected
  192.   params.SetInt(nsICookieAcceptDialog.ACCEPT_COOKIE, nsICookiePromptService.DENY_COOKIE); 
  193.   // And remember that when needed
  194.   params.SetInt(nsICookieAcceptDialog.REMEMBER_DECISION, document.getElementById('persistDomainAcceptance').checked);
  195.   window.close();
  196. }
  197.  
  198. function GetExpiresString(secondsUntilExpires) {
  199.   if (secondsUntilExpires) {
  200.     var date = new Date(1000*secondsUntilExpires);
  201.  
  202.     // if a server manages to set a really long-lived cookie, the dateservice
  203.     // can't cope with it properly, so we'll just return a blank string
  204.     // see bug 238045 for details
  205.     var expiry = "";
  206.     try {
  207.       expiry = gDateService.FormatDateTime("", gDateService.dateFormatLong,
  208.                                            gDateService.timeFormatSeconds, 
  209.                                            date.getFullYear(), date.getMonth()+1, 
  210.                                            date.getDate(), date.getHours(),
  211.                                            date.getMinutes(), date.getSeconds());
  212.     } catch(ex) {
  213.       // do nothing
  214.     }
  215.     return expiry;
  216.   }
  217.   return cookieBundle.getString("atEndOfSession");
  218. }
  219.