home *** CD-ROM | disk | FTP | other *** search
/ Freelog 121 / FreelogMagazineJuilletAout2014-No121.iso / Internet / Waterfox / Waterfox.exe / components / nsSidebar.js < prev    next >
Text File  |  2010-01-01  |  5KB  |  137 lines

  1. /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
  2. /* This Source Code Form is subject to the terms of the Mozilla Public
  3.  * License, v. 2.0. If a copy of the MPL was not distributed with this
  4.  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  5.  
  6. Components.utils.import("resource://gre/modules/Services.jsm");
  7. Components.utils.import("resource://gre/modules/XPCOMUtils.jsm");
  8.  
  9. const DEBUG = false; /* set to false to suppress debug messages */
  10.  
  11. const SIDEBAR_CONTRACTID        = "@mozilla.org/sidebar;1";
  12. const SIDEBAR_CID               = Components.ID("{22117140-9c6e-11d3-aaf1-00805f8a4905}");
  13. const nsISidebar                = Components.interfaces.nsISidebar;
  14. const nsISidebarExternal        = Components.interfaces.nsISidebarExternal;
  15. const nsIClassInfo              = Components.interfaces.nsIClassInfo;
  16.  
  17. // File extension for Sherlock search plugin description files
  18. const SHERLOCK_FILE_EXT_REGEXP = /\.src$/i;
  19.  
  20. function nsSidebar()
  21. {
  22. }
  23.  
  24. nsSidebar.prototype.classID = SIDEBAR_CID;
  25.  
  26. nsSidebar.prototype.validateSearchEngine =
  27. function (engineURL, iconURL)
  28. {
  29.   try
  30.   {
  31.     // Make sure the URLs are HTTP, HTTPS, or FTP.
  32.     var isWeb = /^(https?|ftp):\/\//i;
  33.  
  34.     if (!isWeb.test(engineURL))
  35.       throw "Unsupported search engine URL";
  36.  
  37.     if (iconURL && !isWeb.test(iconURL))
  38.       throw "Unsupported search icon URL.";
  39.   }
  40.   catch(ex)
  41.   {
  42.     debug(ex);
  43.     Components.utils.reportError("Invalid argument passed to window.sidebar.addSearchEngine: " + ex);
  44.  
  45.     var searchBundle = Services.strings.createBundle("chrome://global/locale/search/search.properties");
  46.     var brandBundle = Services.strings.createBundle("chrome://branding/locale/brand.properties");
  47.     var brandName = brandBundle.GetStringFromName("brandShortName");
  48.     var title = searchBundle.GetStringFromName("error_invalid_engine_title");
  49.     var msg = searchBundle.formatStringFromName("error_invalid_engine_msg",
  50.                                                 [brandName], 1);
  51.     Services.ww.getNewPrompter(null).alert(title, msg);
  52.     return false;
  53.   }
  54.  
  55.   return true;
  56. }
  57.  
  58. // The suggestedTitle and suggestedCategory parameters are ignored, but remain
  59. // for backward compatibility.
  60. nsSidebar.prototype.addSearchEngine =
  61. function (engineURL, iconURL, suggestedTitle, suggestedCategory)
  62. {
  63.   debug("addSearchEngine(" + engineURL + ", " + iconURL + ", " +
  64.         suggestedCategory + ", " + suggestedTitle + ")");
  65.  
  66.   if (!this.validateSearchEngine(engineURL, iconURL))
  67.     return;
  68.  
  69.   // OpenSearch files will likely be far more common than Sherlock files, and
  70.   // have less consistent suffixes, so we assume that ".src" is a Sherlock
  71.   // (text) file, and anything else is OpenSearch (XML).
  72.   var dataType;
  73.   if (SHERLOCK_FILE_EXT_REGEXP.test(engineURL))
  74.     dataType = Components.interfaces.nsISearchEngine.DATA_TEXT;
  75.   else
  76.     dataType = Components.interfaces.nsISearchEngine.DATA_XML;
  77.  
  78.   Services.search.addEngine(engineURL, dataType, iconURL, true);
  79. }
  80.  
  81. // This function exists largely to implement window.external.AddSearchProvider(),
  82. // to match other browsers' APIs.  The capitalization, although nonstandard here,
  83. // is therefore important.
  84. nsSidebar.prototype.AddSearchProvider =
  85. function (aDescriptionURL)
  86. {
  87.   // Get the favicon URL for the current page, or our best guess at the current
  88.   // page since we don't have easy access to the active document.  Most search
  89.   // engines will override this with an icon specified in the OpenSearch
  90.   // description anyway.
  91.   var win = Services.wm.getMostRecentWindow("navigator:browser");
  92.   var browser = win.gBrowser;
  93.   var iconURL = "";
  94.   // Use documentURIObject in the check for shouldLoadFavIcon so that we
  95.   // do the right thing with about:-style error pages.  Bug 453442
  96.   if (browser.shouldLoadFavIcon(browser.selectedBrowser
  97.                                        .contentDocument
  98.                                        .documentURIObject))
  99.     iconURL = browser.getIcon();
  100.  
  101.   if (!this.validateSearchEngine(aDescriptionURL, iconURL))
  102.     return;
  103.  
  104.   const typeXML = Components.interfaces.nsISearchEngine.DATA_XML;
  105.   Services.search.addEngine(aDescriptionURL, typeXML, iconURL, true);
  106. }
  107.  
  108. // This function exists to implement window.external.IsSearchProviderInstalled(),
  109. // for compatibility with other browsers.  It will return an integer value
  110. // indicating whether the given engine is installed for the current user.
  111. // However, it is currently stubbed out due to security/privacy concerns
  112. // stemming from difficulties in determining what domain issued the request.
  113. // See bug 340604 and
  114. // http://msdn.microsoft.com/en-us/library/aa342526%28VS.85%29.aspx .
  115. // XXX Implement this!
  116. nsSidebar.prototype.IsSearchProviderInstalled =
  117. function (aSearchURL)
  118. {
  119.   return 0;
  120. }
  121.  
  122. nsSidebar.prototype.classInfo = XPCOMUtils.generateCI({classID: SIDEBAR_CID,
  123.                                                        contractID: SIDEBAR_CONTRACTID,
  124.                                                        classDescription: "Sidebar",
  125.                                                        interfaces: [nsISidebar, nsISidebarExternal],
  126.                                                        flags: nsIClassInfo.DOM_OBJECT});
  127.  
  128. nsSidebar.prototype.QueryInterface = XPCOMUtils.generateQI([nsISidebar, nsISidebarExternal]);
  129.  
  130. this.NSGetFactory = XPCOMUtils.generateNSGetFactory([nsSidebar]);
  131.  
  132. /* static functions */
  133. if (DEBUG)
  134.     debug = function (s) { dump("-*- sidebar component: " + s + "\n"); }
  135. else
  136.     debug = function (s) {}
  137.