home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 December / PCWorld_2005-12_cd.bin / komunikace / netscape / nsb-install-8-0.exe / components / nsHelperAppDlg.js < prev    next >
Text File  |  2005-09-26  |  35KB  |  914 lines

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