1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640
|
/* ***** 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 gContactSync.
*
* The Initial Developer of the Original Code is
* Josh Geenen <gcontactsync@pirules.net>.
* Portions created by the Initial Developer are Copyright (C) 2008
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
*
* 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 ***** */
/**
* AddressBook
* A class for a Thunderbird Address Book with methods to add, modify, obtain,
* and delete cards.
* @param aDirectory The actual directory.
* @constructor
* @class
*/
function AddressBook(aDirectory) {
this.mDirectory = aDirectory;
// make sure the directory is valid
if (!this.isDirectoryValid(this.mDirectory))
throw "Invalid directory supplied to the AddressBook constructor" +
"\nCalled by: " + this.caller +
StringBundle.getStr("pleaseReport");
// get the directory's URI
if (this.mDirectory.URI)
this.mURI = this.mDirectory.URI;
else {
this.mDirectory.QueryInterface(Ci.nsIAbMDBDirectory);
this.mURI = this.mDirectory.getDirUri();
}
}
AddressBook.prototype = {
mURI: {}, // the uniform resource identifier of the directory
mCards: [], // the cards within this address book
mCardsUpdate: false, // set to true when mCards should be updated
/**
* AddressBook.addCard
* Adds the card to this address book and returns the added card.
* @param aCard The card to add.
* @return An MDB
*/
addCard: function AddressBook_addCard(aCard) {
AbManager.checkCard(aCard); // check the card's validity first
try {
this.mCards.push(aCard);
return this.mDirectory.addCard(aCard); // then add it and return the MDBCard
}
catch(e) {
LOGGER.LOG_ERROR("Unable to add card to the directory with URI: " +
this.URI, e);
}
return null;
},
/**
* AddressBook.getAllCards
* Returns an array of all of the cards in this Address Book.
* @return An array of the nsIAbCards in this Address Book.
*/
getAllCards: function AddressBook_getAllCards() {
this.mCards = [];
var iter = this.mDirectory.childCards;
var data;
if (AbManager.mVersion == 3) { // TB 3
while (iter.hasMoreElements()) {
data = iter.getNext();
if (data instanceof nsIAbCard && !data.isMailList)
this.mCards.push(data);
}
}
else { // TB 2
// use nsIEnumerator...
try {
iter.first();
do {
data = iter.currentItem();
if(data instanceof nsIAbCard && !data.isMailList)
this.mCards.push(data);
iter.next();
} while (Components.lastResult == 0);
} catch(e) {} // error is expected when finished
}
return this.mCards;
},
/**
* AddressBook.getAllLists
* Returns an an object containing MailList objects whose attribute name is
* the name of the mail list.
* @param skipGetCards True to skip getting the cards of each list.
* @return An object containing MailList objects.
*/
getAllLists: function AddressBook_getAllLists(skipGetCards) {
// same in Thunderbird 2 and 3
LOGGER.VERBOSE_LOG("Searching for mailing lists:");
var iter = this.mDirectory.childNodes;
var obj = {};
var list, id, data;
while (iter.hasMoreElements()) {
data = iter.getNext();
if (data instanceof Ci.nsIAbDirectory && data.isMailList) {
list = new MailList(data, this, skipGetCards);
id = list.getGroupID();
obj[id] = list;
LOGGER.VERBOSE_LOG(" * " + list.getName() + " - " + id);
}
}
return obj;
},
/**
* AddressBook.getListByDesc
* Finds and returns the first Mail List that matches the given nickname in
* this address book.
* @param aNickName The nickname to search for. If null then this
* function returns nothing.
* @return A new MailList object containing a list that matches the
* nickname or nothing if the list wasn't found.
*/
getListByNickName: function AddressBook_getListByNickName(aNickName) {
if (!aNickName)
return null;
// same in Thunderbird 2 and 3
var iter = this.mDirectory.childNodes;
var data;
while (iter.hasMoreElements()) {
data = iter.getNext();
if (data instanceof Ci.nsIAbDirectory && data.isMailList &&
data.listNickName == aNickName) {
return new MailList(data, this, true);
}
}
return null;
},
/**
* AddressBook.addList
* Creates a new mail list, adds it to the address book, and returns a
* MailList object containing the list.
* @param aName The new name for the mail list.
* @param aNickName The nickname for the mail list.
* @return A new MailList object containing the newly-made Mail List with the
* given name and nickname.
*/
addList: function AddressBook_addList(aName, aNickName) {
if (!aName)
throw "Error - aName sent to addList is invalid";
if (!aNickName)
throw "Error - aNickName sent to addList is invalid";
var list = Cc["@mozilla.org/addressbook/directoryproperty;1"]
.createInstance(Ci.nsIAbDirectory);
list.dirName = aName;
list.listNickName = aNickName;
list.isMailList = true;
this.mDirectory.addMailList(list);
// list can't be QI'd to an MDBDirectory, so the new list has to be found...
var realList = this.getListByNickName(aNickName);
return realList;
},
/**
* AddressBook.deleteCards
* Deletes the nsIAbCard from the nsIAbDirectory Address Book. If the card
* isn't in the book nothing will happen
* @param aCard The card to delete from the directory
*/
deleteCards: function AddressBook_deleteCards(aCards) {
if (!(aCards && aCards.length && aCards.length > 0))
return;
var arr;
if (AbManager.mVersion == 3) { // TB 3
arr = Cc["@mozilla.org/array;1"].createInstance(Ci.nsIMutableArray);
for (var i = 0; i < aCards.length; i++) {
AbManager.checkCard(aCards[i], "AddressBook.deleteCards()");
arr.appendElement(aCards[i], false);
}
}
else { // TB 2
arr = Cc["@mozilla.org/supports-array;1"]
.createInstance(Ci.nsISupportsArray);
for (var i = 0; i < aCards.length; i++) {
AbManager.checkCard(aCards[i], "AddressBook.deleteCards()");
arr.AppendElement(aCards[i], false);
}
}
if (arr) { // make sure arr isn't null (mailnews bug 448165)
this.mCardsUpdate = true;
this.mDirectory.deleteCards(arr);
}
},
/**
* AddressBook.updateCard
* Updates a card in this address book.
* @param aCard The card to update.
*/
updateCard: function AddressBook_updateCard(aCard) {
AbManager.checkCard(aCard);
this.mCardsUpdate = true;
if (this.mDirectory && this.mDirectory.modifyCard)
this.mDirectory.modifyCard(aCard);
else
aCard.editCardToDatabase(this.URI);
},
/**
* AddressBook.checkList
* Checks the validity of a mailing list and throws an error if it is invalid.
* @param aCard An object that should be a mailing list
* @param aMethodName The name of the method calling checkList (used when
* throwing the error)
*/
checkList: function AddressBook_checkList(aList, aMethodName) {
// if it is a MailList object, get it's actual list
var list = aList && aList.mList ? aList.mList : aList;
if (!list || !(list instanceof Ci.nsIAbDirectory) || !list.isMailList) {
throw "Invalid list: " + aList + " sent to the '" + aMethodName +
"' method" + StringBundle.getStr("pleaseReport");
}
},
/**
* AddressBook.checkDirectory
* Checks the validity of a directory and throws an error if it is invalid.
* @param aDirectory The directory to check.
* @param aMethodName The name of the method calling checkDirectory (used when
* throwing the error)
*/
checkDirectory: function AddressBook_checkDirectory(aDirectory, aMethodName) {
if (!this.isDirectoryValid(aDirectory))
throw "Invalid Directory: " + aDirectory + " sent to the '" + aMethodName
+ "' method" + StringBundle.getStr("pleaseReport");
},
/**
* AddressBook.checkDirectory
* Checks the validity of a directory and returns false if it is invalid.
* @param aDirectory The directory to check.
*/
isDirectoryValid: function AddressBook_isDirectoryValid(aDirectory) {
return aDirectory && aDirectory instanceof Ci.nsIAbDirectory
&& aDirectory.dirName != "" && (AbManager.mVersion == 3 ||
aDirectory instanceof Ci.nsIAbMDBDirectory);
},
/**
* AddressBook.getCardValue
* Returns the value of the specifiec property in the given card, or throws an
* error if it is not present or blank.
* @param aCard The card to get the value from.
* @param aAttrName The name of the attribute to get.
*/
getCardValue: function AddressBook_getCardValue(aCard, aAttrName) {
return AbManager.getCardValue(aCard, aAttrName);
},
/**
* AddressBook.getCardValue
* Sets the value of the specifiec property in the given card but does not
* update the card in the database.
* @param aCard The card to get the value from.
* @param aAttrName The name of the attribute to set.
* @param aValue The value to set for the attribute.
*/
setCardValue: function AddressBook_setCardValue(aCard, aAttrName, aValue) {
return AbManager.setCardValue(aCard, aAttrName, aValue);
},
/**
* AddressBook.hasAddress
* Returns true if the given card has at least one address-related property
* for the given type.
* @param aCard The card to check.
* @param aPrefix The prefix/type (Home or Work).
* @return True if aCard has at least one address-related property of the
* given type.
*/
hasAddress: function AddressBook_hasAddress(aCard, aPrefix) {
AbManager.checkCard(aCard);
return this.getCardValue(aCard, aPrefix + "Address") ||
this.getCardValue(aCard, aPrefix + "Address2") ||
this.getCardValue(aCard, aPrefix + "City") ||
this.getCardValue(aCard, aPrefix + "State") ||
this.getCardValue(aCard, aPrefix + "ZipCode") ||
this.getCardValue(aCard, aPrefix + "Country");
},
/**
* AddressBook.makeCard
* Creates and returns a new address book card.
* @return A new instantiation of nsIAbCard.
*/
makeCard: function AddressBook_makeCard() {
return Cc["@mozilla.org/addressbook/cardproperty;1"]
.createInstance(Ci.nsIAbCard);
},
/**
* AddressBook.equals
* Returns true if the directory passed in is the same as the directory
* stored by this AddressBook object. Two directories are considered the same
* if and only if their Uniform Resource Identifiers (URIs) are the same.
* @param aOtherDir The directory to compare with this object's directory.
* @return True if the URI of the passed directory is the same as the URI of
* the directory stored by this object.
*/
equals: function AddressBook_equals(aOtherDir) {
// return false if the directory isn't valid
if (!this.isDirectoryValid(aOtherDir))
return false;
// compare the URIs
if (this.mDirectory.URI)
return this.mDirectory.URI == aOtherDir.URI;
return this.mDirectory.getDirUri() == aOtherDir.getDirUri();
},
/**
* AddressBook.hasCard
* Returns the card in this directory, if any, with the same (not-null)
* value for the GoogleID attribute, or, if the GoogleID is null, if the
* display name, primary, and second emails are the same.
* @param aCard The card being searched for.
* @return The card in this list, if any, with the same, and non-null value
* for its GoogleID attribute, or, if the GoogleID is null, if the
* display name, primary, and second emails are the same.
*/
hasCard: function AddressBook_hasCard(aCard) {
AbManager.checkCard(aCard);
if (this.mCardsUpdate)
this.getAllCards();
var card, aCardID;
for (var i = 0, length = this.mCards.length; i < length; i++) {
card = this.mCards[i];
aCardID = AbManager.getCardValue(aCard, "GoogleID");
// if it is an old card (has id) compare IDs
if (aCardID) {
if (aCardID == AbManager.getCardValue(card, "GoogleID"))
return card;
}
// else check that display name, primary and second email are equal
else if (AbManager.getCardValue(aCard, "DisplayName") ==
AbManager.getCardValue(card,"DisplayName")
&& AbManager.getCardValue(aCard, "PrimaryEmail") ==
AbManager.getCardValue(card, "PrimaryEmail")
&& AbManager.getCardValue(aCard, "SecondEmail") ==
AbManager.getCardValue(card, "SecondEmail"))
return card;
}
return null;
},
/**
* AddressBook.setPrefId
* Sets the preference id for this mailing list. The update method must be
* called in order for the change to become permanent.
* @param aPrefId The new preference ID for this mailing list.
*/
setPrefId: function AddressBook_setPrefId(aPrefId) {
this.mDirectory.dirPrefId = aPrefId;
},
/**
* AddressBook.getPrefId
* Returns the preference ID of this directory.
* @return The preference ID of this directory.
*/
getPrefId: function AddressBook_getPrefId() {
return this.mDirectory.dirPrefId;
},
/**
* AddressBook.getStringPref
* Gets and returns the string preference, if possible, with the given name.
* Returns null if this list doesn't have a preference ID or if there was an
* error getting the preference.
* @param aName The name of the preference to get.
* @param aDefaultValue The value to set the preference at if it fails. Only
* used in Thunderbird 3.
* @return The value of the preference with the given name in the preference
* branch specified by the preference ID, if possible. Otherwise null.
*/
getStringPref: function AddressBook_getStringPref(aName, aDefaultValue) {
var id = this.getPrefId();
LOGGER.VERBOSE_LOG("Getting pref named: " + aName + " from the branch: " + id);
/* The code below is commented out for backward compatibility with TB 2,
* which crashes if you set a custom pref for a directory. It is a somewhat
* sloppy workaround that, instead of using preferences from the directory's
* actual branch, uses a preference with from the directory's pref. ID
* and appends the preference name to that ID without a period in between
* ex. "ldap_2.servers.emailaddrgmailcomgContactSyncPrimary" instead of
* "ldap_2.servers.emailaddrgmailcom.gContactSyncPrimary"
*/
/*
if (this.mDirectory.getStringValue) {
try {
var value = this.mDirectory.getStringValue(aName, aDefaultValue);
LOGGER.VERBOSE_LOG("-Found the value: " + value);
return value;
} catch (e) { LOGGER.LOG_WARNING("Error while setting directory pref", e); }
return null;
}*/
if (!id)
return null;
try {
var branch = Cc["@mozilla.org/preferences-service;1"]
.getService(Ci.nsIPrefService)
.getBranch(id)
.QueryInterface(Ci.nsIPrefBranch2);
var value = branch.getCharPref(aName);
LOGGER.VERBOSE_LOG("-Found the value: " + value);
return value;
}
catch(e) {
//LOGGER.VERBOSE_LOG("getStringPref: (this error is usually expected)\n" + e);
} // an error is expected if the value isn't present
return null;
},
/**
* AddressBook.setStringPref
* Setshe string preference, if possible, with the given name and value.
* @param aName The name of the preference to get.
* @param aValue The value to set the preference to.
*/
setStringPref: function AddressBook_setStringPref(aName, aValue) {
var id = this.getPrefId();
LOGGER.VERBOSE_LOG("Setting pref named: " + aName + " to value: " + aValue +
" to the branch: " + id);
/* The code below is commented out for backward compatibility with TB 2,
* which crashes if you set a custom pref for a directory. It is a somewhat
* sloppy workaround that, instead of using preferences from the directory's
* actual branch, uses a preference with from the directory's pref. ID
* and appends the preference name to that ID without a period in between
* ex. "ldap_2.servers.emailaddrgmailcomgContactSyncPrimary" instead of
* "ldap_2.servers.emailaddrgmailcom.gContactSyncPrimary"
*/
/*
if (this.mDirectory.setStringValue) {
try {
this.mDirectory.setStringValue(aName, aValue);
} catch (e) { LOGGER.LOG_WARNING("Error while setting directory pref", e); }
return;
}*/
if (!id) {
LOGGER.VERBOSE_LOG("Invalid ID");
return;
}
if (!aName || aName == "") {
LOGGER.VERBOSE_LOG("Invalid name");
return;
}
try {
var branch = Cc["@mozilla.org/preferences-service;1"]
.getService(Ci.nsIPrefService)
.getBranch(id)
.QueryInterface(Ci.nsIPrefBranch2);
branch.setCharPref(aName, aValue);
} catch(e) { LOGGER.LOG_WARNING("Error while setting directory pref", e); }
},
/**
* AddressBook.setUsername
* Sets the username for the account with which this address book is synced.
* @param aUsername The username for the Google account.
*/
setUsername: function AddressBook_setUsername(aUsername) {
this.setStringPref("gContactSyncUsername", aUsername);
},
/**
* AddressBook.getUsername
* Returns the username for the account with which this address book is synced.
* @return The username for the Google account.
*/
getUsername: function AddressBook_getUsername() {
return this.getStringPref("gContactSyncUsername");
},
/**
* AddressBook.setPrimary
* Sets whether or not this address book is the primary book to synchronize
* with the account.
* @param aPrimary True if this address book is the primary AB with which the
* account is synchronized.
*/
setPrimary: function AddressBook_setPrimary(aPrimary) {
this.setStringPref("gContactSyncPrimary", aPrimary);
},
/**
* AddressBook.setPrimary
* Returns true if this address book is the primary AB with which the account
* is synchronized.
* @return True if this is the primary AB for the account.
*/
getPrimary: function AddressBook_getPrimary() {
return this.getStringPref("gContactSyncPrimary");
},
/**
* AddressBook.getName
* Returns the name of this address book.
* @return The name of this address book.
*/
getName: function AddressBook_getName() {
return this.mDirectory.dirName;
},
/**
* AddressBook.setName
* Sets the name of this address book. Throws an error if the name is set to
* either the PAB or CAB's name.
* @param aName The new name for this directory.
*/
setName: function AddressBook_setName(aName) {
// make sure it isn't being set to the PAB or CAB name and make sure that
// this isn't the PAB or CAB
var pab = AbManager.getAbByURI("moz-abmdbdirectory://abook.mab");
var cab = AbManager.getAbByURI("moz-abmdbdirectory://history.mab");
if (aName == pab.dirName || aName == cab.dirName)
throw "Error - cannot rename a directory to the PAB or CAB's name";
if (this.getName() == pab.dirName || this.getName() == cab.dirName)
throw "Error - cannot rename the PAB or CAB";
// in TB 3, it is as simple as changing a property of the directory
if (AbManager.mVersion == 3)
this.mDirectory.dirName = aName;
// in TB 2 a few extra steps are necessary...
else {
/* NOTE: this code is originally from
* mailnews/addrbook/resources/content/addressbook.js:
* http://mxr.mozilla.org/mozilla1.8/source/mailnews/addrbook/resources/content/addressbook.js#353
*/
var addressbook = Cc["@mozilla.org/addressbook;1"]
.createInstance(Ci.nsIAddressBook);
// the rdf service
var RDF = Cc["@mozilla.org/rdf/rdf-service;1"].getService(Ci.nsIRDFService);
// get the datasource for the addressdirectory
var datasource = RDF.GetDataSource("rdf:addressdirectory");
// moz-abdirectory:// is the RDF root to get all types of addressbooks.
var parent = RDF.GetResource("moz-abdirectory://")
.QueryInterface(Ci.nsIAbDirectory);
// Copy existing dir type category id and mod time so they won't get reset.
var properties = this.mDirectory.directoryProperties;
properties.description = aName;
// Now do the modification.
addressbook.modifyAddressBook(datasource, parent, this.mDirectory, properties);
}
},
/**
* AddressBook.getGroupID
* Gets and returns the ID of the group in Google with which this Address
* Book is synchronized, if any.
* @return The ID of the group with which this directory is synchronized.
*/
getGroupID: function AddressBook_getGroupID() {
return this.getStringPref("GroupID");
},
/**
* AddressBook.getGroupID
* Setsthe ID of the group in Google with which this Address Book is
* synchronized.
* @return The ID of the group with which this directory is synchronized.
*/
setGroupID: function AddressBook_setGroupID(aGroupID) {
this.setStringPref("GroupID", aGroupID);
},
/**
* AddressBook.getLastSyncDate
* Returns the last time this address book was synchronized in milliseconds
* since the epoch.
* @return The last time this address book was synchronized.
*/
getLastSyncDate: function AddressBook_getLastSyncDate() {
return this.getStringPref("lastSync");
},
/**
* AddressBook.setLastSyncDate
* Sets the last time this address book was synchronized, in milliseconds
* since the epoch.
* @param aLastSync The last sync time.
*/
setLastSyncDate: function AddressBook_setLastSyncDate(aLastSync) {
this.setStringPref("lastSync", aLastSync);
},
/**
* AddressBook.reset
* 'Resets' this address book making it appear to be brand new and never
* synchronized.
* The username is NOT erased.
*
* This includes:
* - Deleting all mailing lists
* - Deleting all contacts
* - Setting the GroupID to ""
* - Setting primary to true
* - Setting the last sync date to 0
*/
reset: function AddressBook_reset(checkListener) {
LOGGER.LOG("Resetting the " + this.getName() + " directory.");
var original = false;
if (checkListener) {
// disable the address book listener
var original = Preferences.getPref(Preferences.mSyncBranch,
Preferences.mSyncPrefs.listenerDeleteFromGoogle.label,
Preferences.mSyncPrefs.listenerDeleteFromGoogle.type);
if (original) {
LOGGER.LOG("Disabled the listener");
changeDeleteListener(false);
}
}
try {
var lists = this.getAllLists(true);
} catch (e) {}
LOGGER.VERBOSE_LOG(" * Deleting all lists");
for (var i in lists) {
LOGGER.VERBOSE_LOG(" - Deleting list " + lists[i].getName());
lists[i].delete();
}
LOGGER.VERBOSE_LOG(" * Finished deleting lists");
LOGGER.VERBOSE_LOG(" * Deleting all contacts");
this.deleteCards(this.getAllCards());
LOGGER.VERBOSE_LOG(" * Setting GroupID to ''");
this.setGroupID("");
LOGGER.VERBOSE_LOG(" * Setting primary to true");
this.setPrimary(true);
LOGGER.VERBOSE_LOG(" * Setting Last Sync Date to 0");
this.setLastSyncDate(0);
LOGGER.LOG("Finished resetting the directory.");
// re-enable the address book listener, if necessary
if (original) {
LOGGER.LOG("Re-enabled the listener");
changeDeleteListener(true);
}
}
}
|