mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
127 lines
3.3 KiB
JavaScript
127 lines
3.3 KiB
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
let EXPORTED_SYMBOLS = ["Contacts"];
|
|
|
|
const Cu = Components.utils;
|
|
|
|
let Contacts = {
|
|
_providers: [],
|
|
_contacts: [],
|
|
|
|
_load: function _load() {
|
|
this._contacts = [];
|
|
|
|
this._providers.forEach(function(provider) {
|
|
this._contacts = this._contacts.concat(provider.getContacts());
|
|
}, this)
|
|
},
|
|
|
|
init: function init() {
|
|
// Not much to do for now
|
|
this._load();
|
|
},
|
|
|
|
refresh: function refresh() {
|
|
// Pretty simple for now
|
|
this._load();
|
|
},
|
|
|
|
addProvider: function(aProvider) {
|
|
this._providers.push(aProvider);
|
|
this.refresh();
|
|
},
|
|
|
|
find: function find(aMatch) {
|
|
let results = [];
|
|
|
|
if (!this._contacts.length)
|
|
return results;
|
|
|
|
for (let field in aMatch) {
|
|
// Simple string-only partial matching
|
|
let match = aMatch[field];
|
|
this._contacts.forEach(function(aContact) {
|
|
if (field in aContact && aContact[field].indexOf(match) != -1)
|
|
results.push(aContact);
|
|
});
|
|
}
|
|
return results;
|
|
}
|
|
};
|
|
|
|
#ifndef ANDROID
|
|
#ifndef XP_MACOSX
|
|
#ifdef XP_UNIX
|
|
Cu.import("resource://gre/modules/ctypes.jsm");
|
|
Cu.import("resource:///modules/linuxTypes.jsm");
|
|
|
|
function EBookProvider() {
|
|
EBook.init();
|
|
}
|
|
|
|
EBookProvider.prototype = {
|
|
getContacts: function() {
|
|
if (!EBook.lib) {
|
|
Cu.reportError("EBook not loaded")
|
|
return [];
|
|
}
|
|
|
|
let gError = new GLib.GError.ptr;
|
|
let book = EBook.openSystem(gError.address());
|
|
if (!book) {
|
|
Cu.reportError("EBook.openSystem: " + gError.contents.message.readString())
|
|
return [];
|
|
}
|
|
|
|
if (!EBook.openBook(book, false, gError.address())) {
|
|
Cu.reportError("EBook.openBook: " + gError.contents.message.readString())
|
|
return [];
|
|
}
|
|
|
|
let query = EBook.queryAnyFieldContains("");
|
|
if (query) {
|
|
let gList = new GLib.GList.ptr();
|
|
if (!EBook.getContacts(book, query, gList.address(), gError.address())) {
|
|
Cu.reportError("EBook.getContacts: " + gError.contents.message.readString())
|
|
return [];
|
|
}
|
|
|
|
let contacts = [];
|
|
while (gList && !gList.isNull()) {
|
|
let fullName = EBook.getContactField(gList.contents.data, EBook.E_CONTACT_FULL_NAME);
|
|
if (!fullName.isNull()) {
|
|
let contact = {};
|
|
contact.fullName = fullName.readString();
|
|
contact.emails = [];
|
|
contact.phoneNumbers = [];
|
|
|
|
for (let emailIndex=EBook.E_CONTACT_EMAIL_FIRST; emailIndex<=EBook.E_CONTACT_EMAIL_LAST; emailIndex++) {
|
|
let email = EBook.getContactField(gList.contents.data, emailIndex);
|
|
if (!email.isNull())
|
|
contact.emails.push(email.readString());
|
|
}
|
|
|
|
for (let phoneIndex=EBook.E_CONTACT_PHONE_FIRST; phoneIndex<=EBook.E_CONTACT_PHONE_LAST; phoneIndex++) {
|
|
let phone = EBook.getContactField(gList.contents.data, phoneIndex);
|
|
if (!phone.isNull())
|
|
contact.phoneNumbers.push(phone.readString());
|
|
}
|
|
|
|
contacts.push(contact);
|
|
}
|
|
gList = ctypes.cast(gList.contents.next, GLib.GList.ptr);
|
|
}
|
|
return contacts;
|
|
}
|
|
return [];
|
|
}
|
|
};
|
|
|
|
Contacts.addProvider(new EBookProvider);
|
|
# XP_UNIX
|
|
#endif
|
|
#endif
|
|
#endif
|