Page MenuHome GnuPG

enigmailCommon.js
No OneTemporary

enigmailCommon.js

/*
The contents of this file are subject to the Mozilla Public
License Version 1.1 (the "MPL"); you may not use this file
except in compliance with the MPL. You may obtain a copy of
the MPL at http://www.mozilla.org/MPL/
Software distributed under the MPL is distributed on an "AS
IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
implied. See the MPL for the specific language governing
rights and limitations under the MPL.
The Original Code is Enigmail.
The Initial Developer of the Original Code is Ramalingam Saravanan.
Portions created by Ramalingam Saravanan <svn@xmlterm.org> are
Copyright (C) 2001 Ramalingam Saravanan. All Rights Reserved.
Contributor(s):
Patrick Brunschwig <patrick.brunschwig@gmx.net>
Alternatively, the contents of this file may be used under the
terms of the GNU General Public License (the "GPL"), in which case
the provisions of the GPL are applicable instead of
those above. If you wish to allow use of your version of this
file only under the terms of the GPL and not to allow
others to use your version of this file under the MPL, indicate
your decision by deleting the provisions above and replace them
with the notice and other provisions required by the GPL.
If you do not delete the provisions above, a recipient
may use your version of this file under either the MPL or the
GPL.
*/
// enigmailCommon.js: shared JS functions for Enigmail
// This Enigmail version and compatible Enigmime version
var gEnigmailVersion = "0.85.0.0";
var gEnigmimeVersion = "0.85.0.0";
// Maximum size of message directly processed by Enigmail
const ENIG_MSG_BUFFER_SIZE = 96000;
const ENIG_MSG_HEADER_SIZE = 16000;
const ENIG_KEY_BUFFER_SIZE = 64000;
const ENIG_PROCESSINFO_CONTRACTID = "@mozilla.org/xpcom/process-info;1";
const ENIG_PIPECONSOLE_CONTRACTID = "@mozilla.org/process/pipe-console;1";
const ENIG_IPCBUFFER_CONTRACTID = "@mozilla.org/process/ipc-buffer;1";
const ENIG_PIPEFILTERLISTENER_CONTRACTID = "@mozilla.org/process/pipe-filter-listener;1";
const ENIG_ENIGMAIL_CONTRACTID = "@mozdev.org/enigmail/enigmail;1";
const ENIG_ENIGMIMELISTENER_CONTRACTID = "@mozilla.org/enigmail/mime-listener;1";
const ENIG_ENIGMIMESERVICE_CONTRACTID = "@mozdev.org/enigmail/enigmimeservice;1";
const ENIG_STRINGBUNDLE_CONTRACTID = "@mozilla.org/intl/stringbundle;1";
const ENIG_LOCAL_FILE_CONTRACTID = "@mozilla.org/file/local;1";
const ENIG_DIRSERVICE_CONTRACTID = "@mozilla.org/file/directory_service;1";
const ENIG_MIME_CONTRACTID = "@mozilla.org/mime;1";
const ENIG_WMEDIATOR_CONTRACTID = "@mozilla.org/rdf/datasource;1?name=window-mediator";
const ENIG_APPSHELL_MEDIATOR_CONTRACTID = "@mozilla.org/appshell/window-mediator;1"
const ENIG_ASS_CONTRACTID = "@mozilla.org/appshell/appShellService;1";
const ENIG_CLIPBOARD_CONTRACTID = "@mozilla.org/widget/clipboard;1";
const ENIG_CLIPBOARD_HELPER_CONTRACTID = "@mozilla.org/widget/clipboardhelper;1"
const ENIG_TRANSFERABLE_CONTRACTID = "@mozilla.org/widget/transferable;1"
const ENIG_LOCALFILEOUTPUTSTREAM_CONTRACTID =
"@mozilla.org/network/file-output-stream;1";
const ENIG_STANDARD_URL_CONTRACTID = "@mozilla.org/network/standard-url;1";
const ENIG_SCRIPTABLEINPUTSTREAM_CONTRACTID = "@mozilla.org/scriptableinputstream;1"
const ENIG_STREAMCONVERTERSERVICE_CID_STR =
"{892FFEB0-3F80-11d3-A16C-0050041CAF44}";
const ENIG_ISCRIPTABLEUNICODECONVERTER_CONTRACTID = "@mozilla.org/intl/scriptableunicodeconverter";
const ENIG_IOSERVICE_CONTRACTID = "@mozilla.org/network/io-service;1";
const ENIGMAIL_PREFS_ROOT = "extensions.enigmail.";
// Interfaces
const nsIEnigmail = Components.interfaces.nsIEnigmail;
const nsIEnigStrBundle = Components.interfaces.nsIStringBundleService;
// Encryption flags
if (nsIEnigmail) {
const ENIG_SIGN = nsIEnigmail.SEND_SIGNED;
const ENIG_ENCRYPT = nsIEnigmail.SEND_ENCRYPTED;
const ENIG_ENCRYPT_OR_SIGN = ENIG_ENCRYPT | ENIG_SIGN;
}
// UsePGPMimeOption values
const PGP_MIME_NEVER = 0;
const PGP_MIME_POSSIBLE = 1;
const PGP_MIME_ALWAYS = 2;
const ENIG_POSSIBLE_PGPMIME = -2081;
// property name for temporary directory service
const ENIG_TEMPDIR_PROP = "TmpD";
var gUsePGPMimeOptionList = ["usePGPMimeNever", "usePGPMimePossible",
"usePGPMimeAlways"];
var gEnigRecipientsSelectionOptions = ["askRecipientsNever",
"askRecipientsClever",
"askRecipientsAlways"];
var gEnigPerRecipientRules = ["perRecipientRulesNo",
"perRecipientRulesManual",
"perRecipientRulesAlways"];
const ENIG_BUTTON_POS_0 = 1;
const ENIG_BUTTON_POS_1 = 1 << 8;
const ENIG_BUTTON_POS_2 = 1 << 16;
const ENIG_BUTTON_TITLE_IS_STRING = 127;
const ENIG_THREE_BUTTON_STRINGS = (ENIG_BUTTON_TITLE_IS_STRING * ENIG_BUTTON_POS_0) +
(ENIG_BUTTON_TITLE_IS_STRING * ENIG_BUTTON_POS_1) +
(ENIG_BUTTON_TITLE_IS_STRING * ENIG_BUTTON_POS_2);
var gEnigLogLevel = 2; // Output only errors/warnings by default
var gEnigDebugLog;
var gEnigPrefSvc, gEnigPrefRoot, gPrefEnigmail;
try {
gEnigPrefSvc = Components.classes["@mozilla.org/preferences-service;1"]
.getService(Components.interfaces.nsIPrefService);
gEnigPrefRoot = gEnigPrefSvc.getBranch(null);
gPrefEnigmail = gEnigPrefSvc.getBranch(ENIGMAIL_PREFS_ROOT);
if (EnigGetPref("logDirectory"))
gEnigLogLevel = 5;
} catch (ex) {
ERROR_LOG("enigmailCommon.js: Error in instantiating PrefService\n");
}
function EnigGetFrame(win, frameName) {
DEBUG_LOG("enigmailCommon.js: EnigGetFrame: name="+frameName+"\n");
for (var j=0; j<win.frames.length; j++) {
dump(win.frames[j].name+"\n");
if (win.frames[j].name == frameName) {
return win.frames[j];
}
}
if (asd)
return null;
}
var gEnigPromptSvc;
var gEnigStrBundle;
// Initializes enigmailCommon
function EnigInitCommon(id) {
DEBUG_LOG("enigmailCommon.js: EnigInitCommon: id="+id+"\n");
gEnigPromptSvc = Components.classes["@mozilla.org/embedcomp/prompt-service;1"].getService(Components.interfaces.nsIPromptService);
// Do not instantiate ProcessInfo for Prefs
if (id && (id.indexOf("pref-") == 0))
return;
try {
var processInfo = Components.classes[ENIG_PROCESSINFO_CONTRACTID].getService(Components.interfaces.nsIProcessInfo);
var nspr_log_modules = processInfo.getEnv("NSPR_LOG_MODULES");
var matches = nspr_log_modules.match(/enigmailCommon:(\d+)/);
if (matches && (matches.length > 1)) {
gEnigLogLevel = matches[1];
WARNING_LOG("enigmailCommon.js: gEnigLogLevel="+gEnigLogLevel+"\n");
}
} catch (ex) {
dump("enigmailCommon.js: Error in instantiating ProcessInfo\n");
}
}
var gEnigmailSvc;
function GetEnigmailSvc() {
// Lazy initialization of enigmail JS component (for efficiency)
if (gEnigmailSvc) {
return gEnigmailSvc.initialized ? gEnigmailSvc : null;
}
try {
gEnigmailSvc = Components.classes[ENIG_ENIGMAIL_CONTRACTID].createInstance(Components.interfaces.nsIEnigmail);
} catch (ex) {
ERROR_LOG("enigmailCommon.js: Error in instantiating EnigmailService\n");
return null;
}
DEBUG_LOG("enigmailCommon.js: gEnigmailSvc = "+gEnigmailSvc+"\n");
if (!gEnigmailSvc.initialized) {
// Initialize enigmail
var firstInitialization = !gEnigmailSvc.initializationAttempted;
try {
// Initialize enigmail
gEnigmailSvc.initialize(window, gEnigmailVersion, gPrefEnigmail);
try {
// Reset alert count to default value
gPrefEnigmail.clearUserPref("initAlertCount");
} catch(ex) {
}
} catch (ex) {
if (firstInitialization) {
// Display initialization error alert
var errMsg = gEnigmailSvc.initializationError ? gEnigmailSvc.initializationError : "Error in initializing Enigmail service";
errMsg += "\n\n"+EnigGetString("avoidInitErr");
EnigAlertCount("initAlertCount", "Enigmail: "+errMsg);
}
return null;
}
var configuredVersion = EnigGetPref("configuredVersion");
DEBUG_LOG("enigmailCommon.js: GetEnigmailSvc: "+configuredVersion+"\n");
if (firstInitialization && gEnigmailSvc.initialized &&
gEnigmailSvc.agentType && gEnigmailSvc.agentType == "pgp") {
EnigAlert(EnigGetString("pgpNotSupported"));
}
if (gEnigmailSvc.initialized && (gEnigmailVersion != configuredVersion)) {
EnigConfigure();
}
}
if (gEnigmailSvc.logFileStream) {
gEnigDebugLog = true;
gEnigLogLevel = 5;
}
return gEnigmailSvc.initialized ? gEnigmailSvc : null;
}
function EnigUpdate_0_80() {
try {
var oldVer=EnigGetPref("configuredVersion");
if (oldVer.substring(0,1)=="0"){
if (oldVer.substring(0,4)<"0.83") {
var keySrv = EnigGetPref("keyserver");
if (keySrv.indexOf(",") == -1) {
try {
var newKeySrv = EnigGetDefaultPref("keyserver").replace(keySrv, "");
newKeySrv = newKeySrv.replace(/(^, |, $)/, "").replace(/, , /,", ");
EnigSetPref("keyserver", keySrv+", "+newKeySrv);
}
catch (ex) {}
}
}
if (oldVer.substring(0,4)<"0.81") {
window.openDialog("chrome://enigmail/content/enigmailUpgrade.xul",
"", "dialog,modal,centerscreen");
}
}
}
catch (ex) {}
}
function EnigConfigure() {
try {
// Updates for specific versions (to be cleaned-up periodically)
EnigUpdate_0_80();
} catch (ex) {}
var msg = EnigGetString("configNow",gEnigmailVersion);
var checkValueObj = new Object();
checkValueObj.value = false;
var buttonPressed = gEnigPromptSvc.confirmEx(window,
EnigGetString("configEnigmail"),
msg,
ENIG_THREE_BUTTON_STRINGS,
EnigGetString("dlgYes"),
EnigGetString("dlgNo"),
EnigGetString("dlgNever"),
"",
checkValueObj);
DEBUG_LOG("enigmailCommon.js: EnigConfigure: "+buttonPressed+" \n");
if (buttonPressed == 1) // Configure later
return;
var obj = new Object;
var prefList = gPrefEnigmail.getChildList("",obj);
for (var prefItem in prefList) {
var prefName=prefList[prefItem];
if (prefName.search(/AlertCount$/) >= 0) {
// Reset alert count to default value
try {
gPrefEnigmail.clearUserPref(prefName);
} catch(ex) {
}
}
}
if (buttonPressed == 0) {
// Configure now
EnigPrefWindow(true,(navigator.vendor=="Thunderbird" ? "thunderbird" : "seamonkey"));
} else {
// "Do not ask me again" => "already configured"
EnigSetPref("configuredVersion", gEnigmailVersion);
EnigSavePrefs();
}
}
///////////////////////////////////////////////////////////////////////////////
// File read/write operations
const ENIG_RDONLY = 0x01;
const ENIG_WRONLY = 0x02;
const ENIG_CREATE_FILE = 0x08;
const ENIG_TRUNCATE = 0x20;
const ENIG_DEFAULT_FILE_PERMS = 0600;
function EnigCreateFileStream(filePath, permissions) {
//DEBUG_LOG("enigmailCommon.js: EnigCreateFileStream: file="+filePath+"\n");
try {
var localFile = Components.classes[ENIG_LOCAL_FILE_CONTRACTID].createInstance(Components.interfaces.nsILocalFile);
localFile.initWithPath(filePath);
if (localFile.exists()) {
if (localFile.isDirectory() || !localFile.isWritable())
throw Components.results.NS_ERROR_FAILURE;
if (!permissions)
permissions = localFile.permissions;
}
if (!permissions)
permissions = ENIG_DEFAULT_FILE_PERMS;
var flags = ENIG_WRONLY | ENIG_CREATE_FILE | ENIG_TRUNCATE;
var fileStream = Components.classes[ENIG_LOCALFILEOUTPUTSTREAM_CONTRACTID].createInstance(Components.interfaces.nsIFileOutputStream);
fileStream.init(localFile, flags, permissions, 0);
return fileStream;
} catch (ex) {
ERROR_LOG("enigmailCommon.js: EnigCreateFileStream: Failed to create "+filePath+"\n");
return null;
}
}
function EnigWriteFileContents(filePath, data, permissions) {
//DEBUG_LOG("enigmailCommon.js: EnigWriteFileContents: file="+filePath+"\n");
try {
var fileOutStream = EnigCreateFileStream(filePath, permissions);
if (data.length) {
if (fileOutStream.write(data, data.length) != data.length)
throw Components.results.NS_ERROR_FAILURE;
fileOutStream.flush();
}
fileOutStream.close();
} catch (ex) {
ERROR_LOG("enigmailCommon.js: EnigWriteFileContents: Failed to write to "+filePath+"\n");
return false;
}
return true;
}
// maxBytes == -1 => read everything
function EnigReadURLContents(url, maxBytes) {
DEBUG_LOG("enigmailCommon.js: EnigReadURLContents: url="+url+
", "+maxBytes+"\n");
var ioServ = Components.classes[ENIG_IOSERVICE_CONTRACTID].getService(Components.interfaces.nsIIOService);
if (!ioServ)
throw Components.results.NS_ERROR_FAILURE;
var fileChannel = ioServ.newChannel(url, null, null)
var rawInStream = fileChannel.open();
var scriptableInStream = Components.classes[ENIG_SCRIPTABLEINPUTSTREAM_CONTRACTID].createInstance(Components.interfaces.nsIScriptableInputStream);
scriptableInStream.init(rawInStream);
var available = scriptableInStream.available()
if ((maxBytes < 0) || (maxBytes > available))
maxBytes = available;
var urlContents = scriptableInStream.read(maxBytes);
scriptableInStream.close();
return urlContents;
}
// maxBytes == -1 => read whole file
function EnigReadFileContents(localFile, maxBytes) {
DEBUG_LOG("enigmailCommon.js: EnigReadFileContents: file="+localFile.leafName+
", "+maxBytes+"\n");
if (!localFile.exists() || !localFile.isReadable())
throw Components.results.NS_ERROR_FAILURE;
var ioServ = Components.classes[ENIG_IOSERVICE_CONTRACTID].getService(Components.interfaces.nsIIOService);
if (!ioServ)
throw Components.results.NS_ERROR_FAILURE;
var fileURI = ioServ.newFileURI(localFile);
return EnigReadURLContents(fileURI.asciiSpec, maxBytes);
}
///////////////////////////////////////////////////////////////////////////////
function WRITE_LOG(str) {
dump(str);
if (gEnigDebugLog && gEnigmailSvc && gEnigmailSvc.logFileStream) {
gEnigmailSvc.logFileStream.write(str, str.length);
}
}
function DEBUG_LOG(str) {
if (gEnigLogLevel >= 4)
WRITE_LOG(str);
}
function WARNING_LOG(str) {
if (gEnigLogLevel >= 3)
WRITE_LOG(str);
}
function ERROR_LOG(str) {
if (gEnigLogLevel >= 2)
WRITE_LOG(str);
}
function CONSOLE_LOG(str) {
if (gEnigLogLevel >= 3)
WRITE_LOG(str);
if (gEnigmailSvc && gEnigmailSvc.console)
gEnigmailSvc.console.write(str);
}
///////////////////////////////////////////////////////////////////////////////
function EnigAlert(mesg) {
gEnigPromptSvc.alert(window, EnigGetString("enigAlert"), mesg);
}
function EnigAlertCount(countPrefName, mesg) {
var alertCount = EnigGetPref(countPrefName);
if (alertCount <= 0)
return;
alertCount--;
EnigSetPref(countPrefName, alertCount);
if (alertCount > 0) {
mesg += EnigGetString("repeatPrefix",alertCount) + " ";
mesg += (alertCount == 1) ? EnigGetString("repeatSuffixSingular") : EnigGetString("repeatSuffixPlural");
} else {
mesg += EnigGetString("noRepeat");
}
EnigAlert(mesg);
}
function EnigConfirm(mesg) {
var dummy=new Object();
var buttonPressed = gEnigPromptSvc.confirmEx(window,
EnigGetString("enigConfirm"),
mesg,
(gEnigPromptSvc.BUTTON_TITLE_YES * ENIG_BUTTON_POS_0) +
(gEnigPromptSvc.BUTTON_TITLE_NO * ENIG_BUTTON_POS_1),
null, null, null,
null, dummy);
return (buttonPressed == 0);
}
function EnigConfirmPref(mesg, prefText) {
const notSet = 0;
const yes = 1;
const no = 2;
var prefValue = EnigGetPref(prefText);
switch (prefValue) {
case notSet:
var checkBoxObj = { value: false} ;
var buttonPressed = gEnigPromptSvc.confirmEx(window,
EnigGetString("enigConfirm"),
mesg,
(gEnigPromptSvc.BUTTON_TITLE_YES * ENIG_BUTTON_POS_0) +
(gEnigPromptSvc.BUTTON_TITLE_NO * ENIG_BUTTON_POS_1),
null, null, null,
EnigGetString("dlgKeepSetting"), checkBoxObj);
if (checkBoxObj.value) {
EnigSetPref(prefText, (buttonPressed==0 ? yes : no));
}
return (buttonPressed==0 ? 1 : 0);
case yes:
return 1;
case no:
return 0;
default:
return -1;
}
}
function EnigError(mesg) {
return gEnigPromptSvc.alert(window, EnigGetString("enigError"), mesg);
}
function EnigPromptValue(mesg, valueObj) {
var checkObj = new Object();
return gEnigPromptSvc.prompt(window, EnigGetString("enigPrompt"),
mesg, valueObj, "", checkObj);
}
function EnigOverrideAttribute(elementIdList, attrName, prefix, suffix) {
for (var index = 0; index < elementIdList.length; index++) {
var elementId = elementIdList[index];
var element = document.getElementById(elementId);
if (element) {
try {
var oldValue = element.getAttribute(attrName);
var newValue = prefix+elementId+suffix;
//DEBUG_LOG("enigmailCommon.js: *** overriding id="+ elementId+" "+attrName+"="+oldValue+" with "+newValue+"\n");
element.setAttribute(attrName, newValue);
} catch (ex) {}
} else {
DEBUG_LOG("enigmailCommon.js: *** UNABLE to override id="+ elementId+"\n");
}
}
}
function EnigPrefWindow(showBasic, clientType, selectTab) {
window.openDialog("chrome://enigmail/content/pref-enigmail.xul",
"_blank", "chrome,resizable=yes",
{'showBasic': showBasic,
'clientType': clientType,
'selectTab': selectTab});
}
function EnigAdvPrefWindow() {
EnigAlert("This function doesn't exist anymore!");
}
function EnigHelpWindow(source) {
var input="chrome://enigmail/locale/help/"+source+".html";
EnigOpenWin("enigmail:help",
"chrome://enigmail/content/enigmailHelp.xul",
"chrome,resizable",
input);
}
function EnigUpgrade() {
var ioService = Components.classes[ENIG_IOSERVICE_CONTRACTID].getService(Components.interfaces.nsIIOService);
if (ioService && ioService.offline) {
EnigAlert(EnigGetString("needOnline"));
return;
}
window.openDialog("http://enigmail.mozdev.org/no_wrap/update.html?upgrade=yes&enigmail="+gEnigmailVersion+"&enigmime="+gEnigmimeVersion, "dialog");
}
function EnigShowHeadersAll(status) {
DEBUG_LOG("enigmailCommon.js: EnigShowHeadersAll: "+status+"\n");
if (status && EnigGetPref("parseAllHeaders")) {
// Show all mail headers
gEnigPrefRoot.setIntPref("mail.show_headers", 2);
} else {
// Reset mail.show_headers pref to "original" value
gEnigPrefRoot.setIntPref("mail.show_headers",
EnigGetPref("show_headers"));
}
}
function EnigDisplayRadioPref(prefName, prefValue, optionElementIds) {
DEBUG_LOG("enigmailCommon.js: EnigDisplayRadioPref: "+prefName+", "+prefValue+"\n");
if (prefValue >= optionElementIds.length)
return;
var groupElement = document.getElementById("enigmail_"+prefName);
var optionElement = document.getElementById(optionElementIds[prefValue]);
if (groupElement && optionElement) {
groupElement.selectedItem = optionElement;
groupElement.value = prefValue;
}
}
function EnigSetRadioPref(prefName, optionElementIds) {
DEBUG_LOG("enigmailCommon.js: EnigSetRadioPref: "+prefName+"\n");
try {
var groupElement = document.getElementById("enigmail_"+prefName);
if (groupElement) {
var optionElement = groupElement.selectedItem;
var prefValue = optionElement.value;
if (prefValue < optionElementIds.length) {
EnigSetPref(prefName, prefValue);
groupElement.value = prefValue;
}
}
}
catch (ex) {}
}
function EnigSetDefaultPrefs() {
DEBUG_LOG("enigmailCommon.js: EnigSetDefaultPrefs\n");
// has become obsolete
}
function EnigSavePrefs() {
DEBUG_LOG("enigmailCommon.js: EnigSavePrefs\n");
try {
gEnigPrefSvc.savePrefFile(null);
} catch (ex) {
}
}
function EnigGetPref(prefName) {
var prefValue = null;
try {
var prefType = gPrefEnigmail.getPrefType(prefName);
// Get pref value
switch (prefType) {
case gPrefEnigmail.PREF_BOOL:
prefValue = gPrefEnigmail.getBoolPref(prefName);
break;
case gPrefEnigmail.PREF_INT:
prefValue = gPrefEnigmail.getIntPref(prefName);
break;
case gPrefEnigmail.PREF_STRING:
prefValue = gPrefEnigmail.getCharPref(prefName);
break;
default:
prefValue = undefined;
break;
}
} catch (ex) {
// Failed to get pref value
ERROR_LOG("enigmailCommon.js: EnigGetPref: unknown prefName:"+prefName+" \n");
}
return prefValue;
}
function EnigGetDefaultPref(prefName) {
DEBUG_LOG("enigmailCommon.js: EnigGetDefaultPref: prefName="+prefName+"\n");
var prefValue=null;
try {
gPrefEnigmail.lockPref(prefName);
prefValue = EnigGetPref(prefName);
gPrefEnigmail.unlockPref(prefName);
}
catch (ex) {}
return prefValue;
}
function EnigSetPref(prefName, value) {
DEBUG_LOG("enigmailCommon.js: EnigSetPref: "+prefName+", "+value+"\n");
var prefType;
try {
prefType = gPrefEnigmail.getPrefType(prefName);
}
catch (ex) {
switch (typeof value) {
case "boolean":
prefType = gPrefEnigmail.PREF_BOOL;
break;
case "integer":
prefType = gPrefEnigmail.PREF_INT;
break;
case "string":
prefType = gPrefEnigmail.PREF_STRING;
break;
default:
prefType = 0;
break;
}
}
var retVal = false;
switch (prefType) {
case gPrefEnigmail.PREF_BOOL:
gPrefEnigmail.setBoolPref(prefName, value);
retVal = true;
break;
case gPrefEnigmail.PREF_INT:
gPrefEnigmail.setIntPref(prefName, value);
retVal = true;
break;
case gPrefEnigmail.PREF_STRING:
gPrefEnigmail.setCharPref(prefName, value);
retVal = true;
break;
default:
break;
}
return retVal;
}
function EnigGetSignMsg(identity) {
var sign = null;
if (gEnigPrefRoot.getPrefType("mail.identity."+identity.key+".pgpSignPlain")==0) {
if (gEnigPrefRoot.getPrefType("mail.identity."+identity.key+".pgpSignMsg")==0) {
sign=identity.getBoolAttribute("pgpAlwaysSign");
identity.setBoolAttribute("pgpSignEncrypted", sign);
identity.setBoolAttribute("pgpSignPlain", sign);
}
else {
sign = identity.getIntAttribute("pgpSignMsg");
identity.setBoolAttribute("pgpSignEncrypted", sign==1);
identity.setBoolAttribute("pgpSignPlain", sign>0);
}
gEnigPrefRoot.deleteBranch("mail.identity."+identity.key+".pgpSignMsg");
gEnigPrefRoot.deleteBranch("mail.identity."+identity.key+".pgpAlwaysSign");
}
}
function EnigRequestObserver(terminateFunc, terminateArg)
{
this._terminateFunc = terminateFunc;
this._terminateArg = terminateArg;
}
EnigRequestObserver.prototype = {
_terminateFunc: null,
_terminateArg: null,
QueryInterface: function (iid) {
if (!iid.equals(Components.interfaces.nsIRequestObserver) &&
!iid.equals(Components.interfaces.nsISupports))
throw Components.results.NS_ERROR_NO_INTERFACE;
return this;
},
onStartRequest: function (channel, ctxt)
{
DEBUG_LOG("enigmailCommon.js: EnigRequestObserver.onStartRequest\n");
},
onStopRequest: function (channel, ctxt, status)
{
DEBUG_LOG("enigmailCommon.js: EnigRequestObserver.onStopRequest: "+ctxt+"\n");
this._terminateFunc(this._terminateArg, ctxt);
}
}
function EnigConvertFromUnicode(text, charset) {
DEBUG_LOG("enigmailCommon.js: EnigConvertFromUnicode: "+charset+"\n");
if (!text || !charset /*|| (charset.toLowerCase() == "iso-8859-1")*/)
return text;
// Encode plaintext
try {
var unicodeConv = Components.classes[ENIG_ISCRIPTABLEUNICODECONVERTER_CONTRACTID].getService(Components.interfaces.nsIScriptableUnicodeConverter);
unicodeConv.charset = charset;
return unicodeConv.ConvertFromUnicode(text);
} catch (ex) {
return text;
}
}
function EnigConvertToUnicode(text, charset) {
DEBUG_LOG("enigmailCommon.js: EnigConvertToUnicode: "+charset+"\n");
if (!text || !charset /*|| (charset.toLowerCase() == "iso-8859-1")*/)
return text;
// Encode plaintext
try {
var unicodeConv = Components.classes[ENIG_ISCRIPTABLEUNICODECONVERTER_CONTRACTID].getService(Components.interfaces.nsIScriptableUnicodeConverter);
unicodeConv.charset = charset;
return unicodeConv.ConvertToUnicode(text);
} catch (ex) {
return text;
}
}
function EnigConvertGpgToUnicode(text) {
if (typeof(text)=="string") {
var a=text.search(/[\x80-\xFF]{2}/);
var b=0;
while (a>=0) {
var ch=text.substr(a,2).toSource().substr(13,8).replace(/\\x/g, "\\u00");
var newCh=EnigConvertToUnicode(EnigConvertToUnicode(ch, "x-u-escaped"), "utf-8");
if (newCh != ch) {
//dump(ch+"\n");
var r=new RegExp(text.substr(a, 2), "g");
text=text.replace(r, newCh);
}
b=a+2;
a=text.substr(b+2).search(/[\x80-\xFF]{2}/);
if (a>=0) {
a += b+2;
}
}
}
return text;
}
function EnigGetDeepText(node, findStr) {
DEBUG_LOG("enigmailCommon.js: EnigDeepText: <" + node.tagName + ">, '"+findStr+"'\n");
if (findStr) {
if (node.innerHTML.replace(/&nbsp;/g, " ").indexOf(findStr) < 0) {
// exit immediately if findStr is not found at all
return "";
}
}
// EnigDumpHTML(node);
var plainText = EnigParseChildNodes(node);
// Replace non-breaking spaces with plain spaces
plainText = plainText.replace(/\xA0/g," ");
if (findStr) {
if (plainText.indexOf(findStr) < 0) {
return "";
}
}
return plainText;
}
// extract the plain text by iterating recursively through all nodes
function EnigParseChildNodes(node) {
var plainText="";
if (node.nodeType == Node.TEXT_NODE) {
// text node
plainText = plainText.concat(node.data);
}
else {
if (node.nodeType == Node.ELEMENT_NODE) {
if (node.tagName=="IMG" && node.className=="moz-txt-smily") {
// get the "alt" part of graphical smileys to ensure correct
// verification of signed messages
if (node.getAttribute("alt")) {
plainText = plainText.concat(node.getAttribute("alt"));
}
}
}
var child = node.firstChild;
// iterate over child nodes
while (child) {
if (! (child.nodeType == Node.ELEMENT_NODE &&
child.tagName == "BR" &&
! child.hasChildNodes())) {
// optimization: don't do an extra loop for the very frequent <BR> elements
plainText = plainText.concat(EnigParseChildNodes(child));
}
child = child.nextSibling;
}
}
return plainText;
}
// Dump HTML content as plain text
function EnigDumpHTML(node)
{
var type = node.nodeType;
if (type == Node.ELEMENT_NODE) {
// open tag
DEBUG_LOG("<" + node.tagName)
// dump the attributes if any
attributes = node.attributes;
if (null != attributes) {
var countAttrs = attributes.length;
var index = 0
while(index < countAttrs) {
att = attributes[index];
if (null != att) {
DEBUG_LOG(" "+att.name+"='"+att.value+"'")
}
index++
}
}
// close tag
DEBUG_LOG(">")
// recursively dump the children
if (node.hasChildNodes()) {
// get the children
var children = node.childNodes;
var length = children.length;
var count = 0;
while(count < length) {
var child = children[count]
EnigDumpHTML(child)
count++
}
DEBUG_LOG("</" + node.tagName + ">");
}
}
// if it's a piece of text just dump the text
else if (type == Node.TEXT_NODE) {
DEBUG_LOG(node.data)
}
}
/////////////////////////
// Console stuff
/////////////////////////
function EnigClearPassphrase() {
DEBUG_LOG("enigmailCommon.js: EnigClearPassphrase: \n");
var enigmailSvc = GetEnigmailSvc();
if (!enigmailSvc)
return;
enigmailSvc.clearCachedPassphrase();
}
function EnigOpenWin (winName, spec, winOptions, optList) {
var windowManager = Components.classes[ENIG_APPSHELL_MEDIATOR_CONTRACTID].getService(Components.interfaces.nsIWindowMediator);
/* although accordign to the docs, this doesn't seem to work ...
var recentWin = windowManager.getMostRecentWindow(winName);
*/
var winEnum=windowManager.getEnumerator(null);
var recentWin=null;
while (winEnum.hasMoreElements() && ! recentWin) {
var thisWin = winEnum.getNext();
if (thisWin.location.href==spec) {
recentWin = thisWin;
}
}
if (recentWin) {
recentWin.focus();
} else {
var appShellSvc = Components.classes[ENIG_ASS_CONTRACTID].getService(Components.interfaces.nsIAppShellService);
var domWin = appShellSvc.hiddenDOMWindow;
domWin.openDialog(spec, winName, winOptions, optList);
}
}
function EnigViewAbout() {
DEBUG_LOG("enigmailCommon.js: EnigViewAbout\n");
EnigOpenWin ("about:enigmail",
"chrome://enigmail/content/enigmailAbout.xul",
"resizable,chrome");
}
function EnigViewConsole() {
DEBUG_LOG("enigmailCommon.js: EnigViewConsole\n");
EnigOpenWin("enigmail:console",
"chrome://enigmail/content/enigmailConsole.xul");
}
function EnigViewDebugLog() {
DEBUG_LOG("enigmailCommon.js: EnigViewDebugLog\n");
var logDirectory = EnigGetPref("logDirectory");
if (!logDirectory) {
EnigAlert(EnigGetString("noLogDir"));
return;
}
if (!gEnigmailSvc) {
EnigAlert(EnigGetString("noLogFile"));
return;
}
if (!gEnigmailSvc.logFileStream) {
EnigAlert(EnigGetString("restartForLog"));
return;
}
gEnigmailSvc.logFileStream.flush();
logDirectory = logDirectory.replace(/\\/g, "/");
var logFileURL = "file:///" + logDirectory + "/enigdbug.txt";
EnigOpenWin("enigmail:logFile",
"chrome://enigmail/content/enigmailViewFile.xul",
"chrome,resizable",
[ logFileURL, "Enigmail Debug Log"]);
// window.open(logFileURL, 'Enigmail Debug Log');
}
function EnigKeygen() {
DEBUG_LOG("enigmailCommon.js: EnigKeygen\n");
window.openDialog('chrome://enigmail/content/enigmailKeygen.xul',
'Enigmail Key Generation',
'chrome,dialog,modal,close=no,resizable=yes,width=600');
}
// retrieves the most recent navigator window (opens one if need be)
function EnigLoadURLInNavigatorWindow(url, aOpenFlag)
{
DEBUG_LOG("enigmailCommon.js: EnigLoadURLInNavigatorWindow: "+url+", "+aOpenFlag+"\n");
var navWindow;
// if this is a browser window, just use it
if ("document" in top) {
var possibleNavigator = top.document.getElementById("main-window");
if (possibleNavigator &&
possibleNavigator.getAttribute("windowtype") == "navigator:browser")
navWindow = top;
}
// if not, get the most recently used browser window
if (!navWindow) {
var wm;
try {
// Mozilla up to 1.0
wm = Components.classes[ENIG_WMEDIATOR_CONTRACTID].getService(Components.interfaces.nsIWindowMediator);
}
catch (ex) {
// Mozilla 1.1 and newer
wm = Components.classes[ENIG_APPSHELL_MEDIATOR_CONTRACTID].getService(Components.interfaces.nsIWindowMediator);
}
navWindow = wm.getMostRecentWindow("navigator:browser");
}
if (navWindow) {
if ("loadURI" in navWindow)
navWindow.loadURI(url);
else
navWindow._content.location.href = url;
} else if (aOpenFlag) {
// if no browser window available and it's ok to open a new one, do so
navWindow = window.open(url, "Enigmail");
}
DEBUG_LOG("enigmailCommon.js: EnigLoadURLInNavigatorWindow: navWindow="+navWindow+"\n");
return navWindow;
}
// retrieves a localized string from the enigmail.properties stringbundle
function EnigGetString(aStr) {
var restCount = arguments.length - 1;
if(!gEnigStrBundle) {
try {
var strBundleService = Components.classes[ENIG_STRINGBUNDLE_CONTRACTID].getService();
strBundleService = strBundleService.QueryInterface(nsIEnigStrBundle);
gEnigStrBundle = strBundleService.createBundle("chrome://enigmail/locale/enigmail.properties");
} catch (ex) {
ERROR_LOG("enigmailCommon.js: Error in instantiating stringBundleService\n");
}
}
if(gEnigStrBundle) {
try {
if(restCount > 0) {
var subPhrases = new Array();
for (var i = 1; i < arguments.length; i++) {
subPhrases.push(arguments[i]);
}
return gEnigStrBundle.formatStringFromName(aStr, subPhrases, subPhrases.length);
}
else {
return gEnigStrBundle.GetStringFromName(aStr);
}
} catch (ex) {
ERROR_LOG("enigmailCommon.js: Error in querying stringBundleService for string '"+aStr+"'\n");
}
}
return null;
}
// Remove all quoted strings (and angle brackets) from a list of email
// addresses, returning a list of pure email addresses
function EnigStripEmail(mailAddrs) {
var qStart, qEnd;
while ((qStart = mailAddrs.indexOf('"')) != -1) {
qEnd = mailAddrs.indexOf('"', qStart+1);
if (qEnd == -1) {
ERROR_LOG("enigmailMsgComposeOverlay.js: EnigStripEmail: Unmatched quote in mail address: "+mailAddrs+"\n");
throw Components.results.NS_ERROR_FAILURE;
}
mailAddrs = mailAddrs.substring(0,qStart) + mailAddrs.substring(qEnd+1);
}
// Eliminate all whitespace, just to be safe
mailAddrs = mailAddrs.replace(/\s+/g,"");
// Extract pure e-mail address list (stripping out angle brackets)
mailAddrs = mailAddrs.replace(/(^|,)[^,]*<([^>]+)>[^,]*/g,"$1$2");
return mailAddrs;
}
//get path for temporary directory (e.g. /tmp, C:\TEMP)
function EnigGetTempDir() {
var tmpDir;
try {
var ds = Components.classes[ENIG_DIRSERVICE_CONTRACTID].getService();
var dsprops = ds.QueryInterface(Components.interfaces.nsIProperties);
var tmpDirComp = dsprops.get(ENIG_TEMPDIR_PROP, Components.interfaces.nsILocalFile);
tmpDir=tmpDirComp.path;
}
catch (ex) {
// let's guess ...
var httpHandler = ioServ.getProtocolHandler("http");
httpHandler = httpHandler.QueryInterface(Components.interfaces.nsIHttpProtocolHandler);
isWin = (httpHandler.platform.search(/Win/i) == 0);
if (isWin) {
tmpDir="C:\\TEMP";
} else {
tmpDir="/tmp";
}
}
return tmpDir;
}
function EnigDisplayPrefs(showDefault, showPrefs, setPrefs) {
DEBUG_LOG("enigmailCommon.js: EnigDisplayPrefs\n");
var obj = new Object;
var prefList = gPrefEnigmail.getChildList("",obj);
for (var prefItem in prefList) {
var prefName=prefList[prefItem];
var prefElement = document.getElementById("enigmail_"+prefName);
if (prefElement) {
var prefType = gPrefEnigmail.getPrefType(prefName);
var prefValue;
if (showDefault) {
prefValue = EnigGetDefaultPref(prefName);
}
else {
prefValue = EnigGetPref(prefName);
}
DEBUG_LOG("enigmailCommon.js: EnigDisplayPrefs: "+prefName+"="+prefValue+"\n");
switch (prefType) {
case gPrefEnigmail.PREF_BOOL:
if (showPrefs) {
if (prefValue) {
prefElement.setAttribute("checked", "true");
} else {
prefElement.removeAttribute("checked");
}
}
if (setPrefs) {
if (prefElement.checked) {
EnigSetPref(prefName, true);
} else {
EnigSetPref(prefName, false);
}
}
break;
case gPrefEnigmail.PREF_INT:
if (showPrefs)
prefElement.value = prefValue;
if (setPrefs) {
try {
EnigSetPref(prefName, 0+prefElement.value);
} catch (ex) {}
}
break;
case gPrefEnigmail.PREF_STRING:
if (showPrefs)
prefElement.value = prefValue;
if (setPrefs)
EnigSetPref(prefName, prefElement.value);
break;
default:
DEBUG_LOG("enigmailCommon.js: EnigDisplayPrefs: "+prefName+" does not have a type?!\n");
}
}
}
}
function EnigReceiveKey(parent, msgParentWindow, recvFlags, keyId,
progressBar, requestObserver,
errorMsgObj) {
if (keyId) {
var valueObj = { keyId: keyId };
var checkObj = new Object();
window.openDialog("chrome://enigmail/content/enigmailKeyserverDlg.xul",
"", "dialog,modal,centerscreen", valueObj, checkObj);
if (! checkObj.value) {
errorMsgObj.value = EnigGetString("failCancel");
return null;
}
var keyserver = checkObj.value;
}
else {
return null;
}
var enigmailSvc = GetEnigmailSvc();
if (!enigmailSvc)
return null;
if (progressBar) {
// wait one second before displaying the progress bar
var progressParam=Components.classes["@mozilla.org/messengercompose/composeprogressparameters;1"].createInstance(Components.interfaces.nsIMsgComposeProgressParams);
parent.setTimeout(progressBar.openProgressDialog, 1000, parent, msgParentWindow, "chrome://enigmail/content/enigRetrieveProgress.xul", progressParam);
//progressBar.openProgressDialog(parent, msgWindow, "chrome://enigmail/content/enigRetrieveProgress.xul", progressParam);
progressBar.onStateChange(null, null, Components.interfaces.nsIWebProgressListener.STATE_START, 0);
}
return enigmailSvc.receiveKey(recvFlags, keyserver, keyId, requestObserver, errorMsgObj);
}
function EnigUninstall() {
const JSLIB_MIN_VER="0.1.128";
if ((typeof(JS_LIB_VERSION) != "string") || (JS_LIB_VERSION < JSLIB_MIN_VER)) {
EnigAlert(EnigGetString("jslibNeeded", JSLIB_MIN_VER));
return;
}
window.close();
if (!EnigConfirm(EnigGetString("uninstallConfirm")))
return;
window.openDialog("chrome://enigmail/content/enigmailUninstall.xul",
"", "dialog,modal,centerscreen", {performUninst: true});
return;
}
function EnigFilePicker(title, displayDir, save, defaultExtension, defaultName, filterPairs) {
DEBUG_LOG("enigmailCommon.js: EnigFilePicker: "+save+"\n");
const nsIFilePicker = Components.interfaces.nsIFilePicker;
var filePicker = Components.classes["@mozilla.org/filepicker;1"].createInstance();
filePicker = filePicker.QueryInterface(nsIFilePicker);
var mode = save ? nsIFilePicker.modeSave : nsIFilePicker.modeOpen;
filePicker.init(window, title, mode);
if (displayDir) {
var localFile = Components.classes[ENIG_LOCAL_FILE_CONTRACTID].createInstance(Components.interfaces.nsILocalFile);
try {
localFile.initWithPath(displayDir);
filePicker.displayDirectory = localFile;
} catch (ex) {
}
}
if (defaultExtension)
filePicker.defaultExtension = defaultExtension;
if (defaultName)
filePicker.defaultString=defaultName;
var nfilters = 0;
if (filterPairs && filterPairs.length)
nfilters = filterPairs.length / 2;
for (var index=0; index < nfilters; index++) {
filePicker.appendFilter(filterPairs[2*index], filterPairs[2*index+1]);
}
filePicker.appendFilters(nsIFilePicker.filterAll);
if (filePicker.show() == nsIFilePicker.returnCancel)
return null;
var file = filePicker.file.QueryInterface(Components.interfaces.nsILocalFile);
return file;
}
function EnigRulesEditor() {
EnigOpenWin("enigmail:rulesEditor",
"chrome://enigmail/content/enigmailRulesEditor.xul",
"dialog,centerscreen,resizable");
}
// create new PGP Rule
function EnigNewRule(emailAddress) {
// make sure the rules database is loaded
var enigmailSvc = GetEnigmailSvc();
if (!enigmailSvc)
return false;
var rulesListObj= new Object;
// open rule dialog
enigmailSvc.getRulesData(rulesListObj);
var inputObj=new Object;
var resultObj=new Object;
inputObj.toAddress="{"+emailAddress+"}";
inputObj.options="";
inputObj.command = "add";
window.openDialog("chrome://enigmail/content/enigmailSingleRcptSettings.xul","", "dialog,modal,centerscreen,resizable", inputObj, resultObj);
return true;
}

File Metadata

Mime Type
text/plain
Expires
Sun, Feb 8, 2:57 PM (13 m, 33 s)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
dc/a7/0c294b5757d0a0103793c7a17e3f

Event Timeline