2009-11-10 09:45:02 +08:00
|
|
|
package com.phonegap;
|
2009-10-01 06:34:28 +08:00
|
|
|
|
2010-09-07 02:13:09 +08:00
|
|
|
import org.json.JSONArray;
|
|
|
|
import org.json.JSONException;
|
|
|
|
|
|
|
|
import com.phonegap.api.Command;
|
|
|
|
import com.phonegap.api.CommandResult;
|
|
|
|
|
2009-11-04 08:51:40 +08:00
|
|
|
import android.provider.Contacts.ContactMethods;
|
2009-10-01 06:34:28 +08:00
|
|
|
import android.provider.Contacts.People;
|
2009-11-04 08:51:40 +08:00
|
|
|
import android.util.Log;
|
|
|
|
import android.webkit.WebView;
|
2010-09-07 02:13:09 +08:00
|
|
|
import android.content.Intent;
|
2009-10-01 06:34:28 +08:00
|
|
|
import android.net.Uri;
|
|
|
|
import android.database.Cursor;
|
2009-11-04 08:51:40 +08:00
|
|
|
import android.database.sqlite.SQLiteException;
|
2009-10-01 06:34:28 +08:00
|
|
|
|
2009-12-02 03:55:15 +08:00
|
|
|
@SuppressWarnings("deprecation")
|
2010-09-07 02:13:09 +08:00
|
|
|
public class ContactManager implements Command {
|
2009-11-03 07:43:09 +08:00
|
|
|
|
2009-11-05 06:27:19 +08:00
|
|
|
public class ContactTriplet
|
|
|
|
{
|
|
|
|
public String name = "";
|
|
|
|
public String email = "";
|
|
|
|
public String phone = "";
|
|
|
|
}
|
2010-09-07 02:13:09 +08:00
|
|
|
|
|
|
|
WebView webView; // WebView object
|
|
|
|
DroidGap ctx; // DroidGap object
|
|
|
|
|
2009-11-04 08:51:40 +08:00
|
|
|
private static final String LOG_TAG = "Contact Query";
|
2009-11-03 07:43:09 +08:00
|
|
|
Uri mPeople = android.provider.Contacts.People.CONTENT_URI;
|
2009-11-04 08:51:40 +08:00
|
|
|
Uri mPhone = android.provider.Contacts.Phones.CONTENT_URI;
|
|
|
|
Uri mEmail = android.provider.Contacts.ContactMethods.CONTENT_URI;
|
2010-09-07 02:13:09 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor.
|
|
|
|
*/
|
|
|
|
public ContactManager() {
|
2009-10-10 01:23:21 +08:00
|
|
|
}
|
2010-06-05 04:32:00 +08:00
|
|
|
|
2010-09-07 02:13:09 +08:00
|
|
|
/**
|
|
|
|
* Sets the context of the Command. This can then be used to do things like
|
|
|
|
* get file paths associated with the Activity.
|
|
|
|
*
|
|
|
|
* @param ctx The context of the main Activity.
|
|
|
|
*/
|
|
|
|
public void setContext(DroidGap ctx) {
|
|
|
|
this.ctx = ctx;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the main View of the application, this is the WebView within which
|
|
|
|
* a PhoneGap app runs.
|
|
|
|
*
|
|
|
|
* @param webView The PhoneGap WebView
|
|
|
|
*/
|
|
|
|
public void setView(WebView webView) {
|
|
|
|
this.webView = webView;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Executes the request and returns CommandResult.
|
|
|
|
*
|
|
|
|
* @param action The command to execute.
|
|
|
|
* @param args JSONArry of arguments for the command.
|
|
|
|
* @return A CommandResult object with a status and message.
|
|
|
|
*/
|
|
|
|
public CommandResult execute(String action, JSONArray args) {
|
|
|
|
CommandResult.Status status = CommandResult.Status.OK;
|
|
|
|
String result = "";
|
|
|
|
|
|
|
|
try {
|
|
|
|
if (action.equals("getContactsAndSendBack")) {
|
|
|
|
this.getContactsAndSendBack();
|
|
|
|
}
|
|
|
|
else if (action.equals("search")) {
|
|
|
|
this.search(args.getString(0), args.getString(1), args.getString(2));
|
|
|
|
}
|
|
|
|
return new CommandResult(status, result);
|
|
|
|
} catch (JSONException e) {
|
|
|
|
return new CommandResult(CommandResult.Status.JSON_EXCEPTION);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called when the system is about to start resuming a previous activity.
|
|
|
|
*/
|
|
|
|
public void onPause() {
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called when the activity will start interacting with the user.
|
|
|
|
*/
|
|
|
|
public void onResume() {
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called by AccelBroker when listener is to be shut down.
|
|
|
|
* Stop listener.
|
|
|
|
*/
|
|
|
|
public void onDestroy() {
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called when an activity you launched exits, giving you the requestCode you started it with,
|
|
|
|
* the resultCode it returned, and any additional data from it.
|
|
|
|
*
|
|
|
|
* @param requestCode The request code originally supplied to startActivityForResult(),
|
|
|
|
* allowing you to identify who this result came from.
|
|
|
|
* @param resultCode The integer result code returned by the child activity through its setResult().
|
|
|
|
* @param data An Intent, which can return result data to the caller (various data can be attached to Intent "extras").
|
|
|
|
*/
|
|
|
|
public void onActivityResult(int requestCode, int resultCode, Intent intent) {
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------
|
|
|
|
// LOCAL METHODS
|
|
|
|
//--------------------------------------------------------------------------
|
|
|
|
|
2009-11-10 09:22:36 +08:00
|
|
|
// This is to add backwards compatibility to the OLD Contacts API\
|
|
|
|
public void getContactsAndSendBack()
|
|
|
|
{
|
|
|
|
String[] projection = new String[] {
|
|
|
|
People._ID,
|
|
|
|
People.NAME,
|
|
|
|
People.NUMBER,
|
|
|
|
People.PRIMARY_EMAIL_ID
|
|
|
|
};
|
|
|
|
|
|
|
|
try{
|
2010-09-07 02:13:09 +08:00
|
|
|
Cursor myCursor = this.ctx.managedQuery(mPeople, projection,
|
2009-11-10 09:22:36 +08:00
|
|
|
null, null , People.NAME + " ASC");
|
|
|
|
processResults(myCursor, true);
|
|
|
|
}
|
|
|
|
catch (SQLiteException ex)
|
|
|
|
{
|
|
|
|
Log.d(LOG_TAG, ex.getMessage());
|
|
|
|
}
|
|
|
|
}
|
2009-11-05 06:27:19 +08:00
|
|
|
|
|
|
|
public void search(String name, String npa, String email)
|
|
|
|
{
|
|
|
|
|
|
|
|
if (email.length() > 0)
|
|
|
|
searchByEmail(email);
|
|
|
|
else
|
|
|
|
searchPeople(name, npa);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void searchByEmail(String email)
|
|
|
|
{
|
|
|
|
String[] projection = new String[] {
|
|
|
|
ContactMethods._ID,
|
|
|
|
ContactMethods.DATA,
|
|
|
|
ContactMethods.KIND,
|
|
|
|
ContactMethods.PERSON_ID
|
|
|
|
};
|
|
|
|
String[] variables = new String[] {
|
|
|
|
email
|
|
|
|
};
|
|
|
|
|
|
|
|
try{
|
2010-09-07 02:13:09 +08:00
|
|
|
Cursor myCursor = this.ctx.managedQuery(mEmail, projection,
|
2009-11-05 06:27:19 +08:00
|
|
|
"contact_methods." + ContactMethods.DATA + " = ?" + "AND contact_methods.kind = 1", variables , ContactMethods.DATA + " ASC");
|
|
|
|
getMethodData(myCursor);
|
|
|
|
|
|
|
|
}
|
|
|
|
catch (SQLiteException ex)
|
|
|
|
{
|
|
|
|
Log.d(LOG_TAG, ex.getMessage());
|
|
|
|
}
|
2009-11-04 08:51:40 +08:00
|
|
|
|
2009-11-05 06:27:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
private void searchPeople(String name, String number)
|
|
|
|
{
|
|
|
|
String conditions = "";
|
|
|
|
|
|
|
|
if (name.length() == 0)
|
|
|
|
{
|
|
|
|
name = "%";
|
2009-12-02 06:57:02 +08:00
|
|
|
conditions += People.NAME + " LIKE ? AND ";
|
2009-11-05 06:27:19 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
conditions += People.NAME + " = ? AND ";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (number.length() == 0)
|
|
|
|
number = "%";
|
|
|
|
else
|
|
|
|
{
|
|
|
|
number = number.replace('+', '%');
|
|
|
|
number = number.replace('.', '%');
|
|
|
|
number = number.replace('-', '%');
|
|
|
|
}
|
|
|
|
|
|
|
|
conditions += People.NUMBER + " LIKE ? ";
|
|
|
|
|
|
|
|
String[] projection = new String[] {
|
|
|
|
People._ID,
|
|
|
|
People.NAME,
|
|
|
|
People.NUMBER,
|
|
|
|
People.PRIMARY_EMAIL_ID
|
|
|
|
};
|
|
|
|
|
|
|
|
String[] variables = new String[] {
|
|
|
|
name, number
|
|
|
|
};
|
|
|
|
|
|
|
|
try{
|
2010-09-07 02:13:09 +08:00
|
|
|
Cursor myCursor = this.ctx.managedQuery(mPeople, projection,
|
2009-11-05 06:27:19 +08:00
|
|
|
conditions, variables , People.NAME + " ASC");
|
2009-11-10 09:22:36 +08:00
|
|
|
processResults(myCursor, false);
|
2009-11-05 06:27:19 +08:00
|
|
|
}
|
|
|
|
catch (SQLiteException ex)
|
|
|
|
{
|
|
|
|
Log.d(LOG_TAG, ex.getMessage());
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2009-11-10 09:22:36 +08:00
|
|
|
private void processResults(Cursor cur, boolean all){
|
2009-11-05 06:27:19 +08:00
|
|
|
|
2009-10-01 06:34:28 +08:00
|
|
|
if (cur.moveToFirst()) {
|
|
|
|
|
|
|
|
String name;
|
2009-11-04 08:51:40 +08:00
|
|
|
String phoneNumber;
|
2009-11-05 06:27:19 +08:00
|
|
|
String email_id;
|
2009-11-03 07:43:09 +08:00
|
|
|
String email;
|
2009-11-04 08:51:40 +08:00
|
|
|
|
2009-11-03 07:43:09 +08:00
|
|
|
int nameColumn = cur.getColumnIndex(People.NAME);
|
2009-10-01 06:34:28 +08:00
|
|
|
int phoneColumn = cur.getColumnIndex(People.NUMBER);
|
2009-11-05 06:27:19 +08:00
|
|
|
int emailIdColumn = cur.getColumnIndex(People.PRIMARY_EMAIL_ID);
|
|
|
|
|
2009-10-01 06:34:28 +08:00
|
|
|
do {
|
|
|
|
// Get the field values
|
2009-11-03 07:43:09 +08:00
|
|
|
name = cur.getString(nameColumn);
|
2009-10-01 06:34:28 +08:00
|
|
|
phoneNumber = cur.getString(phoneColumn);
|
2009-11-05 06:27:19 +08:00
|
|
|
email_id = cur.getString(emailIdColumn);
|
2009-11-20 02:34:49 +08:00
|
|
|
if (email_id != null && email_id.length() > 0)
|
2009-11-05 06:27:19 +08:00
|
|
|
email = getEmail(email_id);
|
|
|
|
else
|
|
|
|
email = "";
|
2009-11-04 08:51:40 +08:00
|
|
|
|
2009-11-10 09:22:36 +08:00
|
|
|
// Code for backwards compatibility with the OLD Contacts API
|
2010-08-20 03:37:49 +08:00
|
|
|
if (all) {
|
2010-09-07 02:13:09 +08:00
|
|
|
this.ctx.sendJavascript("navigator.ContactManager.droidAddContact('" + name + "','" + phoneNumber + "','" + email +"');");
|
2010-08-20 03:37:49 +08:00
|
|
|
}
|
|
|
|
else {
|
2010-09-07 02:13:09 +08:00
|
|
|
this.ctx.sendJavascript("navigator.contacts.droidFoundContact('" + name + "','" + phoneNumber + "','" + email +"');");
|
2010-08-20 03:37:49 +08:00
|
|
|
}
|
2009-10-01 06:34:28 +08:00
|
|
|
} while (cur.moveToNext());
|
2010-08-20 03:37:49 +08:00
|
|
|
if (all) {
|
2010-09-07 02:13:09 +08:00
|
|
|
this.ctx.sendJavascript("navigator.ContactManager.droidDone();");
|
2010-08-20 03:37:49 +08:00
|
|
|
}
|
|
|
|
else {
|
2010-09-07 02:13:09 +08:00
|
|
|
this.ctx.sendJavascript("navigator.contacts.droidDone();");
|
2010-08-20 03:37:49 +08:00
|
|
|
}
|
2009-10-01 06:34:28 +08:00
|
|
|
}
|
2009-11-05 06:27:19 +08:00
|
|
|
else
|
|
|
|
{
|
2010-08-20 03:37:49 +08:00
|
|
|
if (all) {
|
2010-09-07 02:13:09 +08:00
|
|
|
this.ctx.sendJavascript("navigator.ContactManager.fail();");
|
2010-08-20 03:37:49 +08:00
|
|
|
}
|
|
|
|
else {
|
2010-09-07 02:13:09 +08:00
|
|
|
this.ctx.sendJavascript("navigator.contacts.fail('None found!');");
|
2010-08-20 03:37:49 +08:00
|
|
|
}
|
2009-11-05 06:27:19 +08:00
|
|
|
}
|
|
|
|
}
|
2009-10-01 06:34:28 +08:00
|
|
|
|
2009-11-05 06:27:19 +08:00
|
|
|
private void getMethodData(Cursor cur)
|
|
|
|
{
|
|
|
|
ContactTriplet data = new ContactTriplet();
|
|
|
|
String id;
|
|
|
|
String email;
|
|
|
|
|
|
|
|
if (cur.moveToFirst()) {
|
2009-11-04 08:51:40 +08:00
|
|
|
|
2009-11-05 06:27:19 +08:00
|
|
|
int idColumn = cur.getColumnIndex(ContactMethods._ID);
|
|
|
|
int emailColumn = cur.getColumnIndex(ContactMethods.DATA);
|
|
|
|
do {
|
|
|
|
// Get the field values
|
|
|
|
id = cur.getString(idColumn);
|
|
|
|
email = cur.getString(emailColumn);
|
|
|
|
|
|
|
|
data = getContactData(id);
|
|
|
|
if(data != null)
|
|
|
|
{
|
|
|
|
data.email = email;
|
2010-09-07 02:13:09 +08:00
|
|
|
this.ctx.sendJavascript("navigator.Contacts.droidFoundContact('" + data.name + "','" + data.phone + "','" + data.email +"');");
|
2009-11-05 06:27:19 +08:00
|
|
|
}
|
|
|
|
} while (cur.moveToNext());
|
2010-09-07 02:13:09 +08:00
|
|
|
this.ctx.sendJavascript("navigator.contacts.droidDoneContacts();");
|
2009-11-05 06:27:19 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private ContactTriplet getContactData(String id) {
|
|
|
|
ContactTriplet data = null;
|
2009-11-03 07:43:09 +08:00
|
|
|
String[] projection = new String[] {
|
2009-11-05 06:27:19 +08:00
|
|
|
People._ID,
|
2009-11-04 08:51:40 +08:00
|
|
|
People.NAME,
|
|
|
|
People.NUMBER,
|
2009-11-05 06:27:19 +08:00
|
|
|
People.PRIMARY_EMAIL_ID
|
2009-11-04 08:51:40 +08:00
|
|
|
};
|
2009-11-05 06:27:19 +08:00
|
|
|
|
|
|
|
String[] variables = new String[] {
|
|
|
|
id
|
|
|
|
};
|
|
|
|
|
|
|
|
try{
|
2010-09-07 02:13:09 +08:00
|
|
|
Cursor myCursor = this.ctx.managedQuery(mPeople, projection,
|
2009-11-05 06:27:19 +08:00
|
|
|
People.PRIMARY_EMAIL_ID + " = ?", variables , People.NAME + " ASC");
|
|
|
|
data = getTriplet(myCursor);
|
|
|
|
}
|
|
|
|
catch (SQLiteException ex)
|
|
|
|
{
|
|
|
|
Log.d(LOG_TAG, ex.getMessage());
|
|
|
|
}
|
2009-11-04 08:51:40 +08:00
|
|
|
|
2009-11-05 06:27:19 +08:00
|
|
|
return data;
|
2009-11-04 08:51:40 +08:00
|
|
|
}
|
2009-11-05 06:27:19 +08:00
|
|
|
|
|
|
|
private ContactTriplet getTriplet(Cursor cur) {
|
|
|
|
ContactTriplet data = new ContactTriplet();
|
|
|
|
if (cur.moveToFirst()) {
|
|
|
|
|
|
|
|
int nameColumn = cur.getColumnIndex(People.NAME);
|
|
|
|
int numberColumn = cur.getColumnIndex(People.NUMBER);
|
|
|
|
do {
|
|
|
|
|
|
|
|
data.name = cur.getString(nameColumn);
|
|
|
|
data.phone = cur.getString(numberColumn);
|
|
|
|
|
|
|
|
} while (cur.moveToNext());
|
|
|
|
}
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
private String getEmailColumnData(Cursor cur)
|
|
|
|
{
|
|
|
|
String email = "";
|
2009-11-20 02:34:49 +08:00
|
|
|
if (cur != null && cur.moveToFirst()) {
|
2009-11-05 06:27:19 +08:00
|
|
|
int emailColumn = cur.getColumnIndex(ContactMethods.DATA);
|
2009-11-04 08:51:40 +08:00
|
|
|
do {
|
|
|
|
// Get the field values
|
2009-11-05 06:27:19 +08:00
|
|
|
email = cur.getString(emailColumn);
|
|
|
|
} while (cur.moveToNext());
|
2009-11-04 08:51:40 +08:00
|
|
|
}
|
|
|
|
return email;
|
2009-11-03 07:43:09 +08:00
|
|
|
}
|
|
|
|
|
2009-11-04 08:51:40 +08:00
|
|
|
private String getEmail(String id)
|
|
|
|
{
|
2009-11-05 06:27:19 +08:00
|
|
|
String email = "";
|
2009-11-04 08:51:40 +08:00
|
|
|
String[] projection = new String[] {
|
|
|
|
ContactMethods._ID,
|
|
|
|
ContactMethods.DATA,
|
|
|
|
ContactMethods.KIND
|
|
|
|
};
|
|
|
|
String[] variables = new String[] {
|
|
|
|
id
|
|
|
|
};
|
|
|
|
|
2009-11-05 06:27:19 +08:00
|
|
|
try
|
|
|
|
{
|
2010-09-07 02:13:09 +08:00
|
|
|
Cursor myCursor = this.ctx.managedQuery(mEmail, projection,
|
2009-11-05 06:27:19 +08:00
|
|
|
"contact_methods." + ContactMethods._ID + " = ?" + " AND contact_methods.kind = 1", variables , ContactMethods.DATA + " ASC");
|
|
|
|
email = getEmailColumnData(myCursor);
|
2009-11-04 08:51:40 +08:00
|
|
|
}
|
|
|
|
catch (SQLiteException ex)
|
|
|
|
{
|
|
|
|
Log.d(LOG_TAG, ex.getMessage());
|
|
|
|
}
|
|
|
|
|
|
|
|
return email;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-10-01 06:34:28 +08:00
|
|
|
}
|