2009-05-06 21:44:22 -07:00
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is HelperApp Launcher Dialog.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Mozilla Foundation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2009
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Mark Finkle <mfinkle@mozilla.com>
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
const Cc = Components.classes;
|
|
|
|
const Ci = Components.interfaces;
|
|
|
|
|
|
|
|
const PREF_BD_USEDOWNLOADDIR = "browser.download.useDownloadDir";
|
|
|
|
|
|
|
|
Components.utils.import("resource://gre/modules/XPCOMUtils.jsm");
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
// HelperApp Launcher Dialog
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
function HelperAppLauncherDialog() { }
|
|
|
|
|
|
|
|
HelperAppLauncherDialog.prototype = {
|
|
|
|
classDescription: "HelperApp Launcher Dialog",
|
|
|
|
contractID: "@mozilla.org/helperapplauncherdialog;1",
|
|
|
|
classID: Components.ID("{e9d277a0-268a-4ec2-bb8c-10fdf3e44611}"),
|
|
|
|
QueryInterface: XPCOMUtils.generateQI([Ci.nsIHelperAppLauncherDialog]),
|
|
|
|
|
|
|
|
show: function hald_show(aLauncher, aContext, aReason) {
|
2010-06-07 12:46:54 -07:00
|
|
|
let window = aContext.QueryInterface(Ci.nsIInterfaceRequestor)
|
|
|
|
.getInterface(Ci.nsIDOMWindowInternal);
|
2009-05-06 21:44:22 -07:00
|
|
|
|
2010-06-07 12:46:54 -07:00
|
|
|
let sbs = Cc["@mozilla.org/intl/stringbundle;1"].getService(Ci.nsIStringBundleService);
|
|
|
|
let bundle = sbs.createBundle("chrome://browser/locale/browser.properties");
|
|
|
|
|
|
|
|
let prompter = Cc["@mozilla.org/embedcomp/prompt-service;1"].getService(Ci.nsIPromptService);
|
2010-06-07 12:49:31 -07:00
|
|
|
let flags = (Ci.nsIPrompt.BUTTON_TITLE_IS_STRING * Ci.nsIPrompt.BUTTON_POS_0) +
|
|
|
|
(Ci.nsIPrompt.BUTTON_TITLE_IS_STRING * Ci.nsIPrompt.BUTTON_POS_1);
|
2010-06-07 12:46:54 -07:00
|
|
|
|
|
|
|
let title = bundle.GetStringFromName("helperApp.title");
|
|
|
|
let message = bundle.GetStringFromName("helperApp.prompt");
|
|
|
|
message += "\n " + aLauncher.suggestedFileName;
|
|
|
|
|
|
|
|
let type = aLauncher.MIMEInfo.description;
|
|
|
|
if (type == "") {
|
|
|
|
try {
|
|
|
|
type = aLauncher.MIMEInfo.primaryExtension.toUpperCase();
|
|
|
|
} catch (e) {
|
|
|
|
type = aLauncher.MIMEInfo.MIMEType;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
message += "\n " + type;
|
|
|
|
|
|
|
|
let open = bundle.GetStringFromName("helperApp.open");
|
|
|
|
let save = bundle.GetStringFromName("helperApp.save");
|
|
|
|
let nothing = bundle.GetStringFromName("helperApp.nothing");
|
|
|
|
|
|
|
|
// Check to see if we can open this file or not
|
|
|
|
if (aLauncher.MIMEInfo.hasDefaultHandler) {
|
|
|
|
flags += (Ci.nsIPrompt.BUTTON_TITLE_IS_STRING * Ci.nsIPrompt.BUTTON_POS_2);
|
|
|
|
|
|
|
|
let choice = prompter.confirmEx(window,
|
|
|
|
title, message,
|
|
|
|
flags, save, open, nothing,
|
|
|
|
null, {});
|
|
|
|
|
|
|
|
if (choice == 0)
|
|
|
|
aLauncher.saveToDisk(null, false);
|
|
|
|
else if (choice == 1)
|
|
|
|
aLauncher.launchWithApplication(null, false);
|
|
|
|
} else {
|
|
|
|
let choice = prompter.confirmEx(window,
|
|
|
|
title, message,
|
|
|
|
flags, save, nothing, null,
|
|
|
|
null, {});
|
|
|
|
|
|
|
|
if (choice == 0)
|
|
|
|
aLauncher.saveToDisk(null, false);
|
|
|
|
}
|
2009-05-06 21:44:22 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
promptForSaveToFile: function hald_promptForSaveToFile(aLauncher, aContext, aDefaultFile, aSuggestedFileExt, aForcePrompt) {
|
|
|
|
let file = null;
|
|
|
|
|
|
|
|
let prefs = Cc["@mozilla.org/preferences-service;1"].getService(Ci.nsIPrefBranch);
|
|
|
|
|
|
|
|
if (!aForcePrompt) {
|
|
|
|
// Check to see if the user wishes to auto save to the default download
|
|
|
|
// folder without prompting. Note that preference might not be set.
|
|
|
|
let autodownload = true;
|
|
|
|
try {
|
|
|
|
autodownload = prefs.getBoolPref(PREF_BD_USEDOWNLOADDIR);
|
|
|
|
} catch (e) { }
|
|
|
|
|
|
|
|
if (autodownload) {
|
|
|
|
// Retrieve the user's default download directory
|
|
|
|
let dnldMgr = Cc["@mozilla.org/download-manager;1"].getService(Ci.nsIDownloadManager);
|
|
|
|
let defaultFolder = dnldMgr.userDownloadsDirectory;
|
|
|
|
|
|
|
|
try {
|
|
|
|
file = this.validateLeafName(defaultFolder, aDefaultFile, aSuggestedFileExt);
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check to make sure we have a valid directory, otherwise, prompt
|
|
|
|
if (file)
|
|
|
|
return file;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Use file picker to show dialog.
|
|
|
|
let picker = Components.classes["@mozilla.org/filepicker;1"].createInstance(Ci.nsIFilePicker);
|
|
|
|
let windowTitle = "";
|
|
|
|
let parent = aContext.QueryInterface(Ci.nsIInterfaceRequestor).getInterface(Ci.nsIDOMWindowInternal);
|
|
|
|
picker.init(parent, windowTitle, Ci.nsIFilePicker.modeSave);
|
|
|
|
picker.defaultString = aDefaultFile;
|
|
|
|
|
|
|
|
if (aSuggestedFileExt) {
|
|
|
|
// aSuggestedFileExtension includes the period, so strip it
|
|
|
|
picker.defaultExtension = aSuggestedFileExt.substring(1);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
try {
|
2009-11-30 07:40:06 -08:00
|
|
|
picker.defaultExtension = aLauncher.MIMEInfo.primaryExtension;
|
2009-05-06 21:44:22 -07:00
|
|
|
}
|
|
|
|
catch (e) { }
|
|
|
|
}
|
|
|
|
|
2009-11-30 07:40:06 -08:00
|
|
|
var wildCardExtension = "*";
|
2009-05-06 21:44:22 -07:00
|
|
|
if (aSuggestedFileExt) {
|
|
|
|
wildCardExtension += aSuggestedFileExt;
|
2009-11-30 07:40:06 -08:00
|
|
|
picker.appendFilter(aLauncher.MIMEInfo.description, wildCardExtension);
|
2009-05-06 21:44:22 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
picker.appendFilters(Ci.nsIFilePicker.filterAll);
|
|
|
|
|
|
|
|
// Default to lastDir if it is valid, otherwise use the user's default
|
|
|
|
// downloads directory. userDownloadsDirectory should always return a
|
|
|
|
// valid directory, so we can safely default to it.
|
|
|
|
var dnldMgr = Cc["@mozilla.org/download-manager;1"].getService(Ci.nsIDownloadManager);
|
|
|
|
picker.displayDirectory = dnldMgr.userDownloadsDirectory;
|
|
|
|
|
|
|
|
// The last directory preference may not exist, which will throw.
|
|
|
|
try {
|
|
|
|
let lastDir = prefs.getComplexValue("browser.download.lastDir", Ci.nsILocalFile);
|
|
|
|
if (isUsableDirectory(lastDir))
|
|
|
|
picker.displayDirectory = lastDir;
|
|
|
|
}
|
|
|
|
catch (e) { }
|
|
|
|
|
|
|
|
if (picker.show() == Ci.nsIFilePicker.returnCancel) {
|
|
|
|
// null result means user cancelled.
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Be sure to save the directory the user chose through the Save As...
|
|
|
|
// dialog as the new browser.download.dir since the old one
|
|
|
|
// didn't exist.
|
|
|
|
file = picker.file;
|
|
|
|
|
|
|
|
if (file) {
|
|
|
|
try {
|
|
|
|
// Remove the file so that it's not there when we ensure non-existence later;
|
|
|
|
// this is safe because for the file to exist, the user would have had to
|
|
|
|
// confirm that he wanted the file overwritten.
|
|
|
|
if (file.exists())
|
|
|
|
file.remove(false);
|
|
|
|
}
|
|
|
|
catch (e) { }
|
|
|
|
var newDir = file.parent.QueryInterface(Ci.nsILocalFile);
|
|
|
|
prefs.setComplexValue("browser.download.lastDir", Ci.nsILocalFile, newDir);
|
|
|
|
file = this.validateLeafName(newDir, file.leafName, null);
|
|
|
|
}
|
|
|
|
return file;
|
|
|
|
},
|
|
|
|
|
|
|
|
validateLeafName: function hald_validateLeafName(aLocalFile, aLeafName, aFileExt) {
|
|
|
|
if (!(aLocalFile && this.isUsableDirectory(aLocalFile)))
|
|
|
|
return null;
|
|
|
|
|
|
|
|
// Remove any leading periods, since we don't want to save hidden files
|
|
|
|
// automatically.
|
|
|
|
aLeafName = aLeafName.replace(/^\.+/, "");
|
|
|
|
|
|
|
|
if (aLeafName == "")
|
|
|
|
aLeafName = "unnamed" + (aFileExt ? "." + aFileExt : "");
|
|
|
|
aLocalFile.append(aLeafName);
|
|
|
|
|
|
|
|
this.makeFileUnique(aLocalFile);
|
|
|
|
return aLocalFile;
|
|
|
|
},
|
|
|
|
|
|
|
|
makeFileUnique: function hald_makeFileUnique(aLocalFile) {
|
|
|
|
try {
|
|
|
|
// Note - this code is identical to that in
|
|
|
|
// toolkit/content/contentAreaUtils.js.
|
|
|
|
// If you are updating this code, update that code too! We can't share code
|
|
|
|
// here since this is called in a js component.
|
|
|
|
var collisionCount = 0;
|
|
|
|
while (aLocalFile.exists()) {
|
|
|
|
collisionCount++;
|
|
|
|
if (collisionCount == 1) {
|
|
|
|
// Append "(2)" before the last dot in (or at the end of) the filename
|
|
|
|
// special case .ext.gz etc files so we don't wind up with .tar(2).gz
|
|
|
|
if (aLocalFile.leafName.match(/\.[^\.]{1,3}\.(gz|bz2|Z)$/i))
|
|
|
|
aLocalFile.leafName = aLocalFile.leafName.replace(/\.[^\.]{1,3}\.(gz|bz2|Z)$/i, "(2)$&");
|
|
|
|
else
|
|
|
|
aLocalFile.leafName = aLocalFile.leafName.replace(/(\.[^\.]*)?$/, "(2)$&");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// replace the last (n) in the filename with (n+1)
|
|
|
|
aLocalFile.leafName = aLocalFile.leafName.replace(/^(.*\()\d+\)/, "$1" + (collisionCount+1) + ")");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
aLocalFile.create(Components.interfaces.nsIFile.NORMAL_FILE_TYPE, 0600);
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
dump("*** exception in validateLeafName: " + e + "\n");
|
|
|
|
|
|
|
|
if (e.result == Components.results.NS_ERROR_FILE_ACCESS_DENIED)
|
|
|
|
throw e;
|
|
|
|
|
|
|
|
if (aLocalFile.leafName == "" || aLocalFile.isDirectory()) {
|
|
|
|
aLocalFile.append("unnamed");
|
|
|
|
if (aLocalFile.exists())
|
|
|
|
aLocalFile.createUnique(Components.interfaces.nsIFile.NORMAL_FILE_TYPE, 0600);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
isUsableDirectory: function hald_isUsableDirectory(aDirectory) {
|
|
|
|
return aDirectory.exists() && aDirectory.isDirectory() && aDirectory.isWritable();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2010-05-21 15:28:41 -07:00
|
|
|
function NSGetModule(aCompMgr, aFileSpec) {
|
|
|
|
return XPCOMUtils.generateModule([HelperAppLauncherDialog]);
|
2009-05-06 21:44:22 -07:00
|
|
|
}
|