home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 February / PCWorld_2008-02_cd.bin / temacd / songbird / Songbird_0.4_windows-i686.exe / xulrunner / components / nsHelperAppDlg.js < prev    next >
Text File  |  2007-12-19  |  41KB  |  1,044 lines

  1. /*
  2. //@line 44 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\toolkit\mozapps\downloads\src\nsHelperAppDlg.js.in"
  3. */
  4.  
  5. /* This file implements the nsIHelperAppLauncherDialog interface.
  6.  *
  7.  * The implementation consists of a JavaScript "class" named nsUnknownContentTypeDialog,
  8.  * comprised of:
  9.  *   - a JS constructor function
  10.  *   - a prototype providing all the interface methods and implementation stuff
  11.  *
  12.  * In addition, this file implements an nsIModule object that registers the
  13.  * nsUnknownContentTypeDialog component.
  14.  */
  15.  
  16.  
  17. /* ctor
  18.  */
  19. function nsUnknownContentTypeDialog() {
  20.     // Initialize data properties.
  21.     this.mLauncher = null;
  22.     this.mContext  = null;
  23.     this.mSourcePath = null;
  24.     this.chosenApp = null;
  25.     this.givenDefaultApp = false;
  26.     this.updateSelf = true;
  27.     this.mTitle    = "";
  28. }
  29.  
  30. nsUnknownContentTypeDialog.prototype = {
  31.     nsIMIMEInfo  : Components.interfaces.nsIMIMEInfo,
  32.  
  33.     // This "class" supports nsIHelperAppLauncherDialog, and nsISupports.
  34.     QueryInterface: function (iid) {
  35.         if (!iid.equals(Components.interfaces.nsIHelperAppLauncherDialog) &&
  36.             !iid.equals(Components.interfaces.nsISupports)) {
  37.             throw Components.results.NS_ERROR_NO_INTERFACE;
  38.         }
  39.         return this;
  40.     },
  41.  
  42.     // ---------- nsIHelperAppLauncherDialog methods ----------
  43.  
  44.     // show: Open XUL dialog using window watcher.  Since the dialog is not
  45.     //       modal, it needs to be a top level window and the way to open
  46.     //       one of those is via that route).
  47.     show: function(aLauncher, aContext, aReason)  {
  48.       this.mLauncher = aLauncher;
  49.       this.mContext  = aContext;
  50.  
  51.       const nsITimer = Components.interfaces.nsITimer;
  52.       this._timer = Components.classes["@mozilla.org/timer;1"]
  53.                               .createInstance(nsITimer);
  54.       this._timer.initWithCallback(this, 0, nsITimer.TYPE_ONE_SHOT);
  55.     },
  56.  
  57.     // When opening from new tab, if tab closes while dialog is opening,
  58.     // (which is a race condition on the XUL file being cached and the timer
  59.     // in nsExternalHelperAppService), the dialog gets a blur and doesn't
  60.     // activate the OK button.  So we wait a bit before doing opening it.
  61.     reallyShow: function() {
  62.         var ir = this.mContext.QueryInterface(Components.interfaces.nsIInterfaceRequestor);
  63.         var dwi = ir.getInterface(Components.interfaces.nsIDOMWindowInternal);
  64.         var ww = Components.classes["@mozilla.org/embedcomp/window-watcher;1"]
  65.                            .getService(Components.interfaces.nsIWindowWatcher);
  66.         this.mDialog = ww.openWindow(dwi,
  67.                                      "chrome://mozapps/content/downloads/unknownContentType.xul",
  68.                                      null,
  69.                                      "chrome,centerscreen,titlebar,dialog=yes,dependent",
  70.                                      null);
  71.  
  72.         // Hook this object to the dialog.
  73.         this.mDialog.dialog = this;
  74.  
  75.         // Hook up utility functions.
  76.         this.getSpecialFolderKey = this.mDialog.getSpecialFolderKey;
  77.  
  78.         // Watch for error notifications.
  79.         this.progressListener.helperAppDlg = this;
  80.         this.mLauncher.setWebProgressListener(this.progressListener);
  81.     },
  82.  
  83.     // promptForSaveToFile:  Display file picker dialog and return selected file.
  84.     //                       This is called by the External Helper App Service
  85.     //                       after the ucth dialog calls |saveToDisk| with a null
  86.     //                       target filename (no target, therefore user must pick).
  87.     //
  88.     //                       Alternatively, if the user has selected to have all
  89.     //                       files download to a specific location, return that
  90.     //                       location and don't ask via the dialog. 
  91.     //
  92.     // Note - this function is called without a dialog, so it cannot access any part
  93.     // of the dialog XUL as other functions on this object do. 
  94.     promptForSaveToFile: function(aLauncher, aContext, aDefaultFile, aSuggestedFileExtension) {
  95.       var result = null;
  96.       
  97.       this.mLauncher = aLauncher;
  98.  
  99.       // Check to see if the user wishes to auto save to the default download
  100.       // folder without prompting.
  101.       var prefs = Components.classes["@mozilla.org/preferences-service;1"].getService(Components.interfaces.nsIPrefBranch);
  102.       var autodownload = prefs.getBoolPref("browser.download.useDownloadDir");
  103.       
  104.       if (autodownload) {
  105.         // Retrieve the user's default download directory
  106.         var dnldMgr = Components.classes["@mozilla.org/download-manager;1"]
  107.                                 .getService(Components.interfaces.nsIDownloadManager);
  108.         var defaultFolder = dnldMgr.userDownloadsDirectory;
  109.         result = this.validateLeafName(defaultFolder, aDefaultFile, aSuggestedFileExtension);
  110.       }
  111.       
  112.       // Check to make sure we have a valid directory, otherwise, prompt
  113.       if (result)
  114.         return result;
  115.       
  116.       // Use file picker to show dialog.
  117.       var nsIFilePicker = Components.interfaces.nsIFilePicker;
  118.       var picker = Components.classes["@mozilla.org/filepicker;1"].createInstance(nsIFilePicker);
  119.  
  120.       var bundle = Components.classes["@mozilla.org/intl/stringbundle;1"].getService(Components.interfaces.nsIStringBundleService);
  121.       bundle = bundle.createBundle("chrome://mozapps/locale/downloads/unknownContentType.properties");
  122.  
  123.       var windowTitle = bundle.GetStringFromName("saveDialogTitle");
  124.       var parent = aContext.QueryInterface(Components.interfaces.nsIInterfaceRequestor).getInterface(Components.interfaces.nsIDOMWindowInternal);
  125.       picker.init(parent, windowTitle, nsIFilePicker.modeSave);
  126.       picker.defaultString = aDefaultFile;
  127.  
  128.       if (aSuggestedFileExtension) {
  129.         // aSuggestedFileExtension includes the period, so strip it
  130.         picker.defaultExtension = aSuggestedFileExtension.substring(1);
  131.       } 
  132.       else {
  133.         try {
  134.           picker.defaultExtension = this.mLauncher.MIMEInfo.primaryExtension;
  135.         } 
  136.         catch (ex) { }
  137.       }
  138.  
  139.       var wildCardExtension = "*";
  140.       if (aSuggestedFileExtension) {
  141.         wildCardExtension += aSuggestedFileExtension;
  142.         picker.appendFilter(this.mLauncher.MIMEInfo.description, wildCardExtension);
  143.       }
  144.  
  145.       picker.appendFilters( nsIFilePicker.filterAll );
  146.  
  147.       // Default to lastDir if it's valid, use the user's default
  148.       // downloads directory otherwise.
  149.       var dnldMgr = Components.classes["@mozilla.org/download-manager;1"]
  150.                               .getService(Components.interfaces.nsIDownloadManager);
  151.       try {
  152.         var lastDir = prefs.getComplexValue("browser.download.lastDir",
  153.                             Components.interfaces.nsILocalFile);
  154.         if (lastDir.exists())
  155.           picker.displayDirectory = lastDir;
  156.         else
  157.           picker.displayDirectory = dnldMgr.userDownloadsDirectory;
  158.       } catch (ex) {
  159.         picker.displayDirectory = dnldMgr.userDownloadsDirectory;
  160.       }
  161.  
  162.       if (picker.show() == nsIFilePicker.returnCancel) {
  163.         // null result means user cancelled.
  164.         return null;
  165.       }
  166.  
  167.       // Be sure to save the directory the user chose through the Save As... 
  168.       // dialog  as the new browser.download.dir since the old one
  169.       // didn't exist.
  170.       result = picker.file;
  171.  
  172.       if (result) {
  173.         try {
  174.           // Remove the file so that it's not there when we ensure non-existence later;
  175.           // this is safe because for the file to exist, the user would have had to
  176.           // confirm that he wanted the file overwritten.
  177.           if (result.exists())
  178.             result.remove(false);
  179.         }
  180.         catch (e) { }
  181.         var newDir = result.parent;
  182.         prefs.setComplexValue("browser.download.lastDir", Components.interfaces.nsILocalFile, newDir);
  183.         result = this.validateLeafName(newDir, result.leafName, null);
  184.       }
  185.       return result;
  186.     },
  187.  
  188.     /**
  189.      * Ensures that a local folder/file combination does not already exist in
  190.      * the file system (or finds such a combination with a reasonably similar
  191.      * leaf name), creates the corresponding file, and returns it.
  192.      *
  193.      * @param   aLocalFile
  194.      *          the folder where the file resides
  195.      * @param   aLeafName
  196.      *          the string name of the file (may be empty if no name is known,
  197.      *          in which case a name will be chosen)
  198.      * @param   aFileExt
  199.      *          the extension of the file, if one is known; this will be ignored
  200.      *          if aLeafName is non-empty
  201.      * @returns nsILocalFile
  202.      *          the created file
  203.      */
  204.     validateLeafName: function (aLocalFile, aLeafName, aFileExt)
  205.     {
  206.       if (!aLocalFile || !aLocalFile.exists())
  207.         return null;
  208.  
  209.       // Remove any leading periods, since we don't want to save hidden files
  210.       // automatically.
  211.       aLeafName = aLeafName.replace(/^\.+/, "");
  212.  
  213.       if (aLeafName == "")
  214.         aLeafName = "unnamed" + (aFileExt ? "." + aFileExt : "");
  215.       aLocalFile.append(aLeafName);
  216.  
  217.       this.makeFileUnique(aLocalFile);
  218.  
  219. //@line 261 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\toolkit\mozapps\downloads\src\nsHelperAppDlg.js.in"
  220.       let ext;
  221.       try {
  222.         // We can fail here if there's no primary extension set
  223.         ext = "." + this.mLauncher.MIMEInfo.primaryExtension;
  224.       } catch (e) { }
  225.  
  226.       // Append a file extension if it's an executable that doesn't have one
  227.       // but make sure we actually have an extension to add
  228.       let leaf = aLocalFile.leafName;
  229.       if (aLocalFile.isExecutable() && ext &&
  230.           leaf.substring(leaf.length - ext.length) != ext) {
  231.         let f = aLocalFile.clone();
  232.         aLocalFile.leafName = leaf + ext;
  233.  
  234.         f.remove(false);
  235.         this.makeFileUnique(aLocalFile);
  236.       }
  237. //@line 279 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\toolkit\mozapps\downloads\src\nsHelperAppDlg.js.in"
  238.  
  239.       return aLocalFile;
  240.     },
  241.  
  242.     /**
  243.      * Generates and returns a uniquely-named file from aLocalFile.  If
  244.      * aLocalFile does not exist, it will be the file returned; otherwise, a
  245.      * file whose name is similar to that of aLocalFile will be returned.
  246.      */
  247.     makeFileUnique: function (aLocalFile)
  248.     {
  249.       try {
  250.         // Note - this code is identical to that in 
  251.         //   toolkit/content/contentAreaUtils.js.
  252.         // If you are updating this code, update that code too! We can't share code
  253.         // here since this is called in a js component. 
  254.         var collisionCount = 0;
  255.         while (aLocalFile.exists()) {
  256.           collisionCount++;
  257.           if (collisionCount == 1) {
  258.             // Append "(2)" before the last dot in (or at the end of) the filename
  259.             // special case .ext.gz etc files so we don't wind up with .tar(2).gz
  260.             if (aLocalFile.leafName.match(/\.[^\.]{1,3}\.(gz|bz2|Z)$/i)) {
  261.               aLocalFile.leafName = aLocalFile.leafName.replace(/\.[^\.]{1,3}\.(gz|bz2|Z)$/i, "(2)$&");
  262.             }
  263.             else {
  264.               aLocalFile.leafName = aLocalFile.leafName.replace(/(\.[^\.]*)?$/, "(2)$&");
  265.             }
  266.           }
  267.           else {
  268.             // replace the last (n) in the filename with (n+1)
  269.             aLocalFile.leafName = aLocalFile.leafName.replace(/^(.*\()\d+\)/, "$1" + (collisionCount+1) + ")");
  270.           }
  271.         }
  272.         aLocalFile.create(Components.interfaces.nsIFile.NORMAL_FILE_TYPE, 0600);
  273.       }
  274.       catch (e) {
  275.         dump("*** exception in validateLeafName: " + e + "\n");
  276.         if (aLocalFile.leafName == "" || aLocalFile.isDirectory()) {
  277.           aLocalFile.append("unnamed");
  278.           if (aLocalFile.exists())
  279.             aLocalFile.createUnique(Components.interfaces.nsIFile.NORMAL_FILE_TYPE, 0600);
  280.         }
  281.       }
  282.     },
  283.     
  284.     // ---------- implementation methods ----------
  285.  
  286.     // Web progress listener so we can detect errors while mLauncher is
  287.     // streaming the data to a temporary file.
  288.     progressListener: {
  289.         // Implementation properties.
  290.         helperAppDlg: null,
  291.  
  292.         // nsIWebProgressListener methods.
  293.         // Look for error notifications and display alert to user.
  294.         onStatusChange: function( aWebProgress, aRequest, aStatus, aMessage ) {
  295.             if ( aStatus != Components.results.NS_OK ) {
  296.                 // Get prompt service.
  297.                 var prompter = Components.classes[ "@mozilla.org/embedcomp/prompt-service;1" ]
  298.                                    .getService( Components.interfaces.nsIPromptService );
  299.                 // Display error alert (using text supplied by back-end).
  300.                 prompter.alert( this.dialog, this.helperAppDlg.mTitle, aMessage );
  301.  
  302.                 // Close the dialog.
  303.                 this.helperAppDlg.onCancel();
  304.                 if ( this.helperAppDlg.mDialog ) {
  305.                     this.helperAppDlg.mDialog.close();
  306.                 }
  307.             }
  308.         },
  309.  
  310.         // Ignore onProgressChange, onProgressChange64, onStateChange, onLocationChange, onSecurityChange, and onRefreshAttempted notifications.
  311.         onProgressChange: function( aWebProgress,
  312.                                     aRequest,
  313.                                     aCurSelfProgress,
  314.                                     aMaxSelfProgress,
  315.                                     aCurTotalProgress,
  316.                                     aMaxTotalProgress ) {
  317.         },
  318.  
  319.         onProgressChange64: function( aWebProgress,
  320.                                       aRequest,
  321.                                       aCurSelfProgress,
  322.                                       aMaxSelfProgress,
  323.                                       aCurTotalProgress,
  324.                                       aMaxTotalProgress ) {
  325.         },
  326.  
  327.  
  328.  
  329.         onStateChange: function( aWebProgress, aRequest, aStateFlags, aStatus ) {
  330.         },
  331.  
  332.         onLocationChange: function( aWebProgress, aRequest, aLocation ) {
  333.         },
  334.  
  335.         onSecurityChange: function( aWebProgress, aRequest, state ) {
  336.         },
  337.  
  338.         onRefreshAttempted: function( aWebProgress, aURI, aDelay, aSameURI ) {
  339.           return true;
  340.     }
  341.     },
  342.  
  343.     // initDialog:  Fill various dialog fields with initial content.
  344.     initDialog : function() {
  345.       // Put file name in window title.
  346.       var suggestedFileName = this.mLauncher.suggestedFileName;
  347.  
  348.       // Some URIs do not implement nsIURL, so we can't just QI.
  349.       var url   = this.mLauncher.source;
  350.       var fname = "";
  351.       this.mSourcePath = url.prePath;
  352.       try {
  353.           url = url.QueryInterface( Components.interfaces.nsIURL );
  354.           // A url, use file name from it.
  355.           fname = url.fileName;
  356.           this.mSourcePath += url.directory;
  357.       } catch (ex) {
  358.           // A generic uri, use path.
  359.           fname = url.path;
  360.           this.mSourcePath += url.path;
  361.       }
  362.  
  363.       if (suggestedFileName)
  364.         fname = suggestedFileName;
  365.       
  366.       var displayName = fname.replace(/ +/g, " ");
  367.  
  368.       this.mTitle = this.dialogElement("strings").getFormattedString("title", [displayName]);
  369.       this.mDialog.document.title = this.mTitle;
  370.  
  371.       // Put content type, filename and location into intro.
  372.       this.initIntro(url, fname, displayName);
  373.  
  374.       var iconString = "moz-icon://" + fname + "?size=16&contentType=" + this.mLauncher.MIMEInfo.MIMEType;
  375.       this.dialogElement("contentTypeImage").setAttribute("src", iconString);
  376.  
  377.       // if always-save and is-executable and no-handler
  378.       // then set up simple ui
  379.       var mimeType = this.mLauncher.MIMEInfo.MIMEType;
  380.       var shouldntRememberChoice = (mimeType == "application/octet-stream" || 
  381.                                     mimeType == "application/x-msdownload" ||
  382.                                     this.mLauncher.targetFileIsExecutable);
  383.       if (shouldntRememberChoice && !this.openWithDefaultOK()) {
  384.         // hide featured choice 
  385.         this.mDialog.document.getElementById("normalBox").collapsed = "true";
  386.         // show basic choice 
  387.         this.mDialog.document.getElementById("basicBox").collapsed = "false";
  388.         // change button labels
  389.         this.mDialog.document.documentElement.getButton("accept").label = this.dialogElement("strings").getString("unknownAccept.label");
  390.         this.mDialog.document.documentElement.getButton("cancel").label = this.dialogElement("strings").getString("unknownCancel.label");
  391.         // hide other handler
  392.         this.mDialog.document.getElementById("openHandler").collapsed = "true";
  393.         // set save as the selected option
  394.         this.dialogElement("mode").selectedItem = this.dialogElement("save");
  395.       }
  396.       else {
  397.         this.initAppAndSaveToDiskValues();
  398.  
  399.         // Initialize "always ask me" box. This should always be disabled
  400.         // and set to true for the ambiguous type application/octet-stream.
  401.         // We don't also check for application/x-msdownload here since we
  402.         // want users to be able to autodownload .exe files. 
  403.         var rememberChoice = this.dialogElement("rememberChoice");
  404.  
  405. //@line 465 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\toolkit\mozapps\downloads\src\nsHelperAppDlg.js.in"
  406.         if (shouldntRememberChoice) {
  407.           rememberChoice.checked = false;
  408.           rememberChoice.disabled = true;
  409.         }
  410.         else {
  411.           rememberChoice.checked = !this.mLauncher.MIMEInfo.alwaysAskBeforeHandling;
  412.         }
  413.         this.toggleRememberChoice(rememberChoice);
  414.  
  415.         // XXXben - menulist won't init properly, hack. 
  416.         var openHandler = this.dialogElement("openHandler");
  417.         openHandler.parentNode.removeChild(openHandler);
  418.         var openHandlerBox = this.dialogElement("openHandlerBox");
  419.         openHandlerBox.appendChild(openHandler);
  420.       }
  421.  
  422.       this.mDialog.setTimeout("dialog.postShowCallback()", 0);
  423.       
  424.       this.mDialog.document.documentElement.getButton("accept").disabled = true;
  425.       const nsITimer = Components.interfaces.nsITimer;
  426.       this._timer = Components.classes["@mozilla.org/timer;1"]
  427.                               .createInstance(nsITimer);
  428.       this._timer.initWithCallback(this, 250, nsITimer.TYPE_ONE_SHOT);
  429.     },
  430.  
  431.     _timer: null,
  432.     notify: function (aTimer) {
  433.       if (!this.mDialog) {
  434.         this.reallyShow();
  435.       } else {
  436.         // The user may have already canceled the dialog.
  437.         try {
  438.           if (!this._blurred) {
  439.             this.mDialog.document.documentElement.getButton("accept").disabled = false;
  440.           }
  441.         } catch (ex) {}
  442.         this._delayExpired = true;
  443.       }
  444.       // The timer won't release us, so we have to release it.
  445.       this._timer = null;
  446.     },
  447.  
  448.     postShowCallback: function () {
  449.       this.mDialog.sizeToContent();
  450.  
  451.       // Set initial focus
  452.       this.dialogElement("mode").focus();
  453.     },
  454.  
  455.     // initIntro:
  456.     initIntro: function(url, filename, displayname) {
  457.         this.dialogElement( "location" ).value = displayname;
  458.         this.dialogElement( "location" ).setAttribute("realname", filename);
  459.         this.dialogElement( "location" ).setAttribute("tooltiptext", displayname);
  460.  
  461.         // if mSourcePath is a local file, then let's use the pretty path name instead of an ugly
  462.         // url...
  463.         var pathString = this.mSourcePath;
  464.         try 
  465.         {
  466.           var fileURL = url.QueryInterface(Components.interfaces.nsIFileURL);
  467.           if (fileURL)
  468.           {
  469.             var fileObject = fileURL.file;
  470.             if (fileObject)
  471.             {
  472.               var parentObject = fileObject.parent;
  473.               if (parentObject)
  474.               {
  475.                 pathString = parentObject.path;
  476.               }
  477.             }
  478.           }
  479.         } catch(ex) {}
  480.  
  481.         if (pathString == this.mSourcePath)
  482.         {
  483.           // wasn't a fileURL
  484.           var tmpurl = url.clone(); // don't want to change the real url
  485.           try {
  486.             tmpurl.userPass = "";
  487.           } catch (ex) {}
  488.           pathString = tmpurl.prePath;
  489.         }
  490.  
  491.         // Set the location text, which is separate from the intro text so it can be cropped
  492.         var location = this.dialogElement( "source" );
  493.         location.value = pathString;
  494.         location.setAttribute("tooltiptext", this.mSourcePath);
  495.         
  496.         // Show the type of file. 
  497.         var type = this.dialogElement("type");
  498.         var mimeInfo = this.mLauncher.MIMEInfo;
  499.         
  500.         // 1. Try to use the pretty description of the type, if one is available.
  501.         var typeString = mimeInfo.description;
  502.         
  503.         if (typeString == "") {
  504.           // 2. If there is none, use the extension to identify the file, e.g. "ZIP file"
  505.           var primaryExtension = "";
  506.           try {
  507.             primaryExtension = mimeInfo.primaryExtension;
  508.           }
  509.           catch (ex) {
  510.           }
  511.           if (primaryExtension != "")
  512.             typeString = this.dialogElement("strings").getFormattedString("fileType", [primaryExtension.toUpperCase()]);
  513.           // 3. If we can't even do that, just give up and show the MIME type. 
  514.           else
  515.             typeString = mimeInfo.MIMEType;
  516.         }
  517.         
  518.         type.value = typeString;
  519.     },
  520.     
  521.     _blurred: false,
  522.     _delayExpired: false, 
  523.     onBlur: function(aEvent) {
  524.       this._blurred = true;
  525.       this.mDialog.document.documentElement.getButton("accept").disabled = true;
  526.     },
  527.     
  528.     onFocus: function(aEvent) {
  529.       this._blurred = false;
  530.       if (this._delayExpired) {
  531.         var script = "document.documentElement.getButton('accept').disabled = false";
  532.         this.mDialog.setTimeout(script, 250);
  533.       }
  534.     },
  535.  
  536.     // Returns true if opening the default application makes sense.
  537.     openWithDefaultOK: function() {
  538.         // The checking is different on Windows...
  539. //@line 599 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\toolkit\mozapps\downloads\src\nsHelperAppDlg.js.in"
  540.         // Windows presents some special cases.
  541.         // We need to prevent use of "system default" when the file is
  542.         // executable (so the user doesn't launch nasty programs downloaded
  543.         // from the web), and, enable use of "system default" if it isn't
  544.         // executable (because we will prompt the user for the default app
  545.         // in that case).
  546.         
  547.         //  Default is Ok if the file isn't executable (and vice-versa).
  548.         return !this.mLauncher.targetFileIsExecutable;
  549. //@line 614 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\toolkit\mozapps\downloads\src\nsHelperAppDlg.js.in"
  550.     },
  551.     
  552.     // Set "default" application description field.
  553.     initDefaultApp: function() {
  554.       // Use description, if we can get one.
  555.       var desc = this.mLauncher.MIMEInfo.defaultDescription;
  556.       if (desc) {
  557.         var defaultApp = this.dialogElement("strings").getFormattedString("defaultApp", [desc]);
  558.         this.dialogElement("defaultHandler").label = defaultApp;
  559.       }
  560.       else {
  561.         this.dialogElement("modeDeck").setAttribute("selectedIndex", "1");
  562.         // Hide the default handler item too, in case the user picks a 
  563.         // custom handler at a later date which triggers the menulist to show.
  564.         this.dialogElement("defaultHandler").hidden = true;
  565.       }
  566.     },
  567.  
  568.     // getPath:
  569.     getPath: function (aFile) {
  570. //@line 637 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\toolkit\mozapps\downloads\src\nsHelperAppDlg.js.in"
  571.       return aFile.path;
  572. //@line 639 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\toolkit\mozapps\downloads\src\nsHelperAppDlg.js.in"
  573.     },
  574.  
  575.     // initAppAndSaveToDiskValues:
  576.     initAppAndSaveToDiskValues: function() {
  577.       var modeGroup = this.dialogElement("mode");
  578.  
  579.       // We don't let users open .exe files or random binary data directly 
  580.       // from the browser at the moment because of security concerns. 
  581.       var openWithDefaultOK = this.openWithDefaultOK();
  582.       var mimeType = this.mLauncher.MIMEInfo.MIMEType;
  583.       if (this.mLauncher.targetFileIsExecutable || (
  584.           (mimeType == "application/octet-stream" ||
  585.            mimeType == "application/x-msdownload") && 
  586.            !openWithDefaultOK)) {
  587.         this.dialogElement("open").disabled = true;
  588.         var openHandler = this.dialogElement("openHandler");
  589.         openHandler.disabled = true;
  590.         openHandler.selectedItem = null;
  591.         modeGroup.selectedItem = this.dialogElement("save");
  592.         return;
  593.       }
  594.     
  595.       // Fill in helper app info, if there is any.
  596.       try {
  597.         this.chosenApp =
  598.           this.mLauncher.MIMEInfo.preferredApplicationHandler
  599.               .QueryInterface(Components.interfaces.nsILocalHandlerApp);
  600.       } catch (e) {
  601.         this.chosenApp = null;
  602.       }
  603.       // Initialize "default application" field.
  604.       this.initDefaultApp();
  605.  
  606.       var otherHandler = this.dialogElement("otherHandler");
  607.               
  608.       // Fill application name textbox.
  609.       if (this.chosenApp && this.chosenApp.executable && 
  610.           this.chosenApp.executable.path) {
  611.         otherHandler.setAttribute("path",
  612.                                   this.getPath(this.chosenApp.executable));
  613.         otherHandler.label = this.chosenApp.executable.leafName;
  614.         otherHandler.hidden = false;
  615.       }
  616.  
  617.       var useDefault = this.dialogElement("useSystemDefault");
  618.       var openHandler = this.dialogElement("openHandler");
  619.       openHandler.selectedIndex = 0;
  620.  
  621.       if (this.mLauncher.MIMEInfo.preferredAction == this.nsIMIMEInfo.useSystemDefault) {
  622.         // Open (using system default).
  623.         modeGroup.selectedItem = this.dialogElement("open");
  624.       } else if (this.mLauncher.MIMEInfo.preferredAction == this.nsIMIMEInfo.useHelperApp) {
  625.         // Open with given helper app.
  626.         modeGroup.selectedItem = this.dialogElement("open");
  627.         openHandler.selectedIndex = 1;
  628.       } else {
  629.         // Save to disk.
  630.         modeGroup.selectedItem = this.dialogElement("save");
  631.       }
  632.       
  633.       // If we don't have a "default app" then disable that choice.
  634.       if (!openWithDefaultOK) {
  635.         var useDefault = this.dialogElement("defaultHandler");
  636.         var isSelected = useDefault.selected;
  637.         
  638.         // Disable that choice.
  639.         useDefault.hidden = true;
  640.         // If that's the default, then switch to "save to disk."
  641.         if (isSelected) {
  642.           openHandler.selectedIndex = 1;
  643.           modeGroup.selectedItem = this.dialogElement("save");
  644.         }
  645.       }
  646.       
  647.       // otherHandler is always disabled on Mac
  648. //@line 718 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\toolkit\mozapps\downloads\src\nsHelperAppDlg.js.in"
  649.       otherHandler.nextSibling.hidden = otherHandler.nextSibling.nextSibling.hidden = false;
  650. //@line 720 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\toolkit\mozapps\downloads\src\nsHelperAppDlg.js.in"
  651.       this.updateOKButton();
  652.     },
  653.  
  654.     // Returns the user-selected application
  655.     helperAppChoice: function() {
  656.       return this.chosenApp;
  657.     },
  658.     
  659.     get saveToDisk() {
  660.       return this.dialogElement("save").selected;
  661.     },
  662.     
  663.     get useOtherHandler() {
  664.       return this.dialogElement("open").selected && this.dialogElement("openHandler").selectedIndex == 1;
  665.     },
  666.     
  667.     get useSystemDefault() {
  668.       return this.dialogElement("open").selected && this.dialogElement("openHandler").selectedIndex == 0;
  669.     },
  670.     
  671.     toggleRememberChoice: function (aCheckbox) {
  672.         this.dialogElement("settingsChange").hidden = !aCheckbox.checked;
  673.         this.mDialog.sizeToContent();
  674.     },
  675.     
  676.     openHandlerCommand: function () {
  677.       var openHandler = this.dialogElement("openHandler");
  678.       if (openHandler.selectedItem.id == "choose")
  679.         this.chooseApp();
  680.       else
  681.         openHandler.setAttribute("lastSelectedItemID", openHandler.selectedItem.id);
  682.     },
  683.  
  684.     updateOKButton: function() {
  685.       var ok = false;
  686.       if (this.dialogElement("save").selected) {
  687.         // This is always OK.
  688.         ok = true;
  689.       } 
  690.       else if (this.dialogElement("open").selected) {
  691.         switch (this.dialogElement("openHandler").selectedIndex) {
  692.         case 0:
  693.           // No app need be specified in this case.
  694.           ok = true;
  695.           break;
  696.         case 1:
  697.           // only enable the OK button if we have a default app to use or if 
  698.           // the user chose an app....
  699.           ok = this.chosenApp || /\S/.test(this.dialogElement("otherHandler").getAttribute("path")); 
  700.         break;
  701.         }
  702.       }
  703.  
  704.       // Enable Ok button if ok to press.
  705.       this.mDialog.document.documentElement.getButton("accept").disabled = !ok;
  706.     },
  707.     
  708.     // Returns true iff the user-specified helper app has been modified.
  709.     appChanged: function() {
  710.       return this.helperAppChoice() != this.mLauncher.MIMEInfo.preferredApplicationHandler;
  711.     },
  712.  
  713.     updateMIMEInfo: function() {
  714.       var needUpdate = false;
  715.       // If current selection differs from what's in the mime info object,
  716.       // then we need to update.
  717.       if (this.saveToDisk) {
  718.         needUpdate = this.mLauncher.MIMEInfo.preferredAction != this.nsIMIMEInfo.saveToDisk;
  719.         if (needUpdate)
  720.           this.mLauncher.MIMEInfo.preferredAction = this.nsIMIMEInfo.saveToDisk;
  721.       } 
  722.       else if (this.useSystemDefault) {
  723.         needUpdate = this.mLauncher.MIMEInfo.preferredAction != this.nsIMIMEInfo.useSystemDefault;
  724.         if (needUpdate)
  725.           this.mLauncher.MIMEInfo.preferredAction = this.nsIMIMEInfo.useSystemDefault;
  726.       } 
  727.       else {
  728.         // For "open with", we need to check both preferred action and whether the user chose
  729.         // a new app.
  730.         needUpdate = this.mLauncher.MIMEInfo.preferredAction != this.nsIMIMEInfo.useHelperApp || this.appChanged();
  731.         if (needUpdate) {
  732.           this.mLauncher.MIMEInfo.preferredAction = this.nsIMIMEInfo.useHelperApp;
  733.           // App may have changed - Update application
  734.           var app = this.helperAppChoice();
  735.           this.mLauncher.MIMEInfo.preferredApplicationHandler = app;
  736.         }
  737.       }
  738.       // We will also need to update if the "always ask" flag has changed.
  739.       needUpdate = needUpdate || this.mLauncher.MIMEInfo.alwaysAskBeforeHandling != (!this.dialogElement("rememberChoice").checked);
  740.  
  741.       // One last special case: If the input "always ask" flag was false, then we always
  742.       // update.  In that case we are displaying the helper app dialog for the first
  743.       // time for this mime type and we need to store the user's action in the mimeTypes.rdf
  744.       // data source (whether that action has changed or not; if it didn't change, then we need
  745.       // to store the "always ask" flag so the helper app dialog will or won't display
  746.       // next time, per the user's selection).
  747.       needUpdate = needUpdate || !this.mLauncher.MIMEInfo.alwaysAskBeforeHandling;
  748.  
  749.       // Make sure mime info has updated setting for the "always ask" flag.
  750.       this.mLauncher.MIMEInfo.alwaysAskBeforeHandling = !this.dialogElement("rememberChoice").checked;
  751.  
  752.       return needUpdate;        
  753.     },
  754.     
  755.     // See if the user changed things, and if so, update the
  756.     // mimeTypes.rdf entry for this mime type.
  757.     updateHelperAppPref: function() {
  758.       var ha = new this.mDialog.HelperApps();
  759.       ha.updateTypeInfo(this.mLauncher.MIMEInfo);
  760.       ha.destroy();
  761.     },
  762.     
  763.     // onOK:
  764.     onOK: function() {
  765.       // Verify typed app path, if necessary.
  766.       if (this.useOtherHandler) {
  767.         var helperApp = this.helperAppChoice();
  768.         if (!helperApp || !helperApp.executable ||
  769.             !helperApp.executable.exists()) {
  770.           // Show alert and try again.        
  771.           var bundle = this.dialogElement("strings");                    
  772.           var msg = bundle.getFormattedString("badApp", [this.dialogElement("otherHandler").path]);
  773.           var svc = Components.classes["@mozilla.org/embedcomp/prompt-service;1"].getService(Components.interfaces.nsIPromptService);
  774.           svc.alert(this.mDialog, bundle.getString("badApp.title"), msg);
  775.  
  776.           // Disable the OK button.
  777.           this.mDialog.document.documentElement.getButton("accept").disabled = true;
  778.           this.dialogElement("mode").focus();          
  779.  
  780.           // Clear chosen application.
  781.           this.chosenApp = null;
  782.  
  783.           // Leave dialog up.
  784.           return false;
  785.         }
  786.       }
  787.         
  788.       // Remove our web progress listener (a progress dialog will be
  789.       // taking over).
  790.       this.mLauncher.setWebProgressListener(null);
  791.  
  792.       // saveToDisk and launchWithApplication can return errors in 
  793.       // certain circumstances (e.g. The user clicks cancel in the
  794.       // "Save to Disk" dialog. In those cases, we don't want to
  795.       // update the helper application preferences in the RDF file.
  796.       try {
  797.         var needUpdate = this.updateMIMEInfo();
  798.         
  799.         if (this.dialogElement("save").selected) {
  800.           // If we're using a default download location, create a path
  801.           // for the file to be saved to to pass to |saveToDisk| - otherwise
  802.           // we must ask the user to pick a save name.
  803.  
  804. //@line 887 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\toolkit\mozapps\downloads\src\nsHelperAppDlg.js.in"
  805.           // Since saveToDisk may open a file picker and therefore block this routine,
  806.           // we should only call it once the dialog is closed.
  807.           var _delayedSaveToDisk = function(aSelf) {
  808.             aSelf.mLauncher.saveToDisk(null, false);
  809.           }
  810.           this.mDialog.opener.setTimeout(_delayedSaveToDisk, 0, this);
  811.         }
  812.         else
  813.           this.mLauncher.launchWithApplication(null, false);
  814.  
  815.         // Update user pref for this mime type (if necessary). We do not
  816.         // store anything in the mime type preferences for the ambiguous
  817.         // type application/octet-stream. We do NOT do this for 
  818.         // application/x-msdownload since we want users to be able to 
  819.         // autodownload these to disk. 
  820.         if (needUpdate && this.mLauncher.MIMEInfo.MIMEType != "application/octet-stream")
  821.           this.updateHelperAppPref();
  822.       } catch(e) { }
  823.  
  824.       // Unhook dialog from this object.
  825.       this.mDialog.dialog = null;
  826.  
  827.       // Close up dialog by returning true.
  828.       return true;
  829.     },
  830.  
  831.     // onCancel:
  832.     onCancel: function() {
  833.       // Remove our web progress listener.
  834.       this.mLauncher.setWebProgressListener(null);
  835.  
  836.       // Cancel app launcher.
  837.       try {
  838.         const NS_BINDING_ABORTED = 0x804b0002;
  839.         this.mLauncher.cancel(NS_BINDING_ABORTED);
  840.       } catch(exception) {
  841.       }
  842.  
  843.       // Unhook dialog from this object.
  844.       this.mDialog.dialog = null;
  845.  
  846.       // Close up dialog by returning true.
  847.       return true;
  848.     },
  849.  
  850.     // dialogElement:  Convenience. 
  851.     dialogElement: function(id) {
  852.       return this.mDialog.document.getElementById(id);
  853.     },
  854.  
  855.     // Retrieve the pretty description from the file
  856.     getFileDisplayName: function getFileDisplayName(file)
  857.     { 
  858. //@line 941 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\toolkit\mozapps\downloads\src\nsHelperAppDlg.js.in"
  859.         if (file instanceof Components.interfaces.nsILocalFileWin) {
  860.           try {
  861.             return file.getVersionInfoField("FileDescription");
  862.           } catch (ex) {
  863.           }
  864.         }
  865. //@line 948 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\toolkit\mozapps\downloads\src\nsHelperAppDlg.js.in"
  866.         return file.leafName;
  867.     },
  868.  
  869.     // chooseApp:  Open file picker and prompt user for application.
  870.     chooseApp: function() {
  871. //@line 954 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\toolkit\mozapps\downloads\src\nsHelperAppDlg.js.in"
  872.     // Protect against the lack of an extension    
  873.     var fileExtension = "";
  874.     try {
  875.         fileExtension = this.mLauncher.MIMEInfo.primaryExtension;
  876.     } catch(ex) {
  877.     }
  878.  
  879.     // Try to use the pretty description of the type, if one is available.
  880.     var typeString = this.mLauncher.MIMEInfo.description;
  881.  
  882.     if (!typeString) {
  883.       // If there is none, use the extension to 
  884.       // identify the file, e.g. "ZIP file"
  885.       if (fileExtension) {
  886.         typeString =
  887.           this.dialogElement("strings").
  888.           getFormattedString("fileType", [fileExtension.toUpperCase()]);
  889.       } else {
  890.         // If we can't even do that, just give up and show the MIME type.
  891.         typeString = this.mLauncher.MIMEInfo.MIMEType;
  892.       }
  893.     }
  894.  
  895.     var params = {};
  896.     params.title = 
  897.       this.dialogElement("strings").getString("chooseAppFilePickerTitle");
  898.     params.description = typeString;
  899.     params.filename    = this.mLauncher.suggestedFileName;
  900.     params.mimeInfo    = this.mLauncher.MIMEInfo;
  901.     params.handlerApp  = null;
  902.  
  903.     this.mDialog.openDialog("chrome://global/content/appPicker.xul", null,
  904.                             "chrome,modal,centerscreen,titlebar,dialog=yes",
  905.                             params);
  906.  
  907.     if (params.handlerApp &&
  908.         params.handlerApp.executable &&
  909.         params.handlerApp.executable.isFile()) {
  910.         // Show the "handler" menulist since we have a (user-specified) 
  911.         // application now.
  912.         this.dialogElement("modeDeck").setAttribute("selectedIndex", "0");
  913.  
  914.         // Remember the file they chose to run.
  915.         this.chosenApp = params.handlerApp;
  916.  
  917.         // Update dialog
  918.         var otherHandler = this.dialogElement("otherHandler");
  919.         otherHandler.removeAttribute("hidden");
  920.         otherHandler.setAttribute("path",
  921.           this.getPath(this.chosenApp.executable));
  922.         otherHandler.label = 
  923.           this.getFileDisplayName(this.chosenApp.executable);
  924.         this.dialogElement("openHandler").selectedIndex = 1;
  925.         this.dialogElement("openHandler").setAttribute("lastSelectedItemID",
  926.           "otherHandler");
  927.         this.dialogElement("mode").selectedItem = this.dialogElement("open");
  928.     } else {
  929.         var openHandler = this.dialogElement("openHandler");
  930.         var lastSelectedID = openHandler.getAttribute("lastSelectedItemID");
  931.         if (!lastSelectedID)
  932.             lastSelectedID = "defaultHandler";
  933.         openHandler.selectedItem = this.dialogElement(lastSelectedID);
  934.     }
  935.  
  936. //@line 1058 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\toolkit\mozapps\downloads\src\nsHelperAppDlg.js.in"
  937.     },
  938.  
  939.     // Turn this on to get debugging messages.
  940.     debug: false,
  941.  
  942.     // Dump text (if debug is on).
  943.     dump: function( text ) {
  944.         if ( this.debug ) {
  945.             dump( text ); 
  946.         }
  947.     },
  948.  
  949.     // dumpInfo:
  950.     doDebug: function() {
  951.         const nsIProgressDialog = Components.interfaces.nsIProgressDialog;
  952.         // Open new progress dialog.
  953.         var progress = Components.classes[ "@mozilla.org/progressdialog;1" ]
  954.                          .createInstance( nsIProgressDialog );
  955.         // Show it.
  956.         progress.open( this.mDialog );
  957.     },
  958.  
  959.     // dumpObj:
  960.     dumpObj: function( spec ) {
  961.          var val = "<undefined>";
  962.          try {
  963.              val = eval( "this."+spec ).toString();
  964.          } catch( exception ) {
  965.          }
  966.          this.dump( spec + "=" + val + "\n" );
  967.     },
  968.  
  969.     // dumpObjectProperties
  970.     dumpObjectProperties: function( desc, obj ) {
  971.          for( prop in obj ) {
  972.              this.dump( desc + "." + prop + "=" );
  973.              var val = "<undefined>";
  974.              try {
  975.                  val = obj[ prop ];
  976.              } catch ( exception ) {
  977.              }
  978.              this.dump( val + "\n" );
  979.          }
  980.     }
  981. }
  982.  
  983. // This Component's module implementation.  All the code below is used to get this
  984. // component registered and accessible via XPCOM.
  985. var module = {
  986.     firstTime: true,
  987.  
  988.     // registerSelf: Register this component.
  989.     registerSelf: function (compMgr, fileSpec, location, type) {
  990.         if (this.firstTime) {
  991.             this.firstTime = false;
  992.             throw Components.results.NS_ERROR_FACTORY_REGISTER_AGAIN;
  993.         }
  994.         compMgr = compMgr.QueryInterface(Components.interfaces.nsIComponentRegistrar);
  995.  
  996.         compMgr.registerFactoryLocation( this.cid,
  997.                                          "Unknown Content Type Dialog",
  998.                                          this.contractId,
  999.                                          fileSpec,
  1000.                                          location,
  1001.                                          type );
  1002.     },
  1003.  
  1004.     // getClassObject: Return this component's factory object.
  1005.     getClassObject: function (compMgr, cid, iid) {
  1006.         if (!cid.equals(this.cid)) {
  1007.             throw Components.results.NS_ERROR_NO_INTERFACE;
  1008.         }
  1009.  
  1010.         if (!iid.equals(Components.interfaces.nsIFactory)) {
  1011.             throw Components.results.NS_ERROR_NOT_IMPLEMENTED;
  1012.         }
  1013.  
  1014.         return this.factory;
  1015.     },
  1016.  
  1017.     /* CID for this class */
  1018.     cid: Components.ID("{F68578EB-6EC2-4169-AE19-8C6243F0ABE1}"),
  1019.  
  1020.     /* Contract ID for this class */
  1021.     contractId: "@mozilla.org/helperapplauncherdialog;1",
  1022.  
  1023.     /* factory object */
  1024.     factory: {
  1025.         // createInstance: Return a new nsProgressDialog object.
  1026.         createInstance: function (outer, iid) {
  1027.             if (outer != null)
  1028.                 throw Components.results.NS_ERROR_NO_AGGREGATION;
  1029.  
  1030.             return (new nsUnknownContentTypeDialog()).QueryInterface(iid);
  1031.         }
  1032.     },
  1033.  
  1034.     // canUnload: n/a (returns true)
  1035.     canUnload: function(compMgr) {
  1036.         return true;
  1037.     }
  1038. };
  1039.  
  1040. // NSGetModule: Return the nsIModule object.
  1041. function NSGetModule(compMgr, fileSpec) {
  1042.     return module;
  1043. }
  1044.