|
@@ -21,14 +21,22 @@
|
|
|
|
|
|
package com.owncloud.android.services;
|
|
|
|
|
|
+import android.database.Cursor;
|
|
|
+import android.net.Uri;
|
|
|
+import android.provider.ContactsContract;
|
|
|
import android.support.annotation.NonNull;
|
|
|
|
|
|
import com.evernote.android.job.Job;
|
|
|
import com.evernote.android.job.util.support.PersistableBundleCompat;
|
|
|
import com.owncloud.android.lib.common.utils.Log_OC;
|
|
|
+import com.owncloud.android.ui.fragment.contactsbackup.ContactListFragment;
|
|
|
|
|
|
import java.io.File;
|
|
|
+import java.io.IOException;
|
|
|
+import java.io.InputStream;
|
|
|
import java.util.ArrayList;
|
|
|
+import java.util.Collections;
|
|
|
+import java.util.TreeMap;
|
|
|
|
|
|
import ezvcard.Ezvcard;
|
|
|
import ezvcard.VCard;
|
|
@@ -62,9 +70,30 @@ public class ContactsImportJob extends Job {
|
|
|
try {
|
|
|
ContactOperations operations = new ContactOperations(getContext(), accountName, accountType);
|
|
|
vCards.addAll(Ezvcard.parse(file).all());
|
|
|
+ Collections.sort(vCards, new ContactListFragment.VCardComparator());
|
|
|
+ Cursor cursor = getContext().getContentResolver().query(ContactsContract.Contacts.CONTENT_URI, null,
|
|
|
+ null, null, null);
|
|
|
|
|
|
- for (int i = 0; i < intArray.length; i++ ){
|
|
|
- operations.insertContact(vCards.get(intArray[i]));
|
|
|
+ TreeMap<VCard, Long> ownContactList = new TreeMap<>(new ContactListFragment.VCardComparator());
|
|
|
+ if (cursor != null && cursor.getCount() > 0) {
|
|
|
+ cursor.moveToFirst();
|
|
|
+ for (int i = 0; i < cursor.getCount(); i++) {
|
|
|
+ VCard vCard = getContactFromCursor(cursor);
|
|
|
+ if (vCard != null) {
|
|
|
+ ownContactList.put(vCard, cursor.getLong(cursor.getColumnIndex("NAME_RAW_CONTACT_ID")));
|
|
|
+ }
|
|
|
+ cursor.moveToNext();
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ for (int i = 0; i < intArray.length; i++) {
|
|
|
+ VCard vCard = vCards.get(intArray[i]);
|
|
|
+ if (!ownContactList.containsKey(vCard)) {
|
|
|
+ operations.insertContact(vCard);
|
|
|
+ } else {
|
|
|
+ operations.updateContact(vCard, ownContactList.get(vCard));
|
|
|
+ }
|
|
|
}
|
|
|
} catch (Exception e) {
|
|
|
Log_OC.e(TAG, e.getMessage());
|
|
@@ -72,4 +101,24 @@ public class ContactsImportJob extends Job {
|
|
|
|
|
|
return Result.SUCCESS;
|
|
|
}
|
|
|
+
|
|
|
+ private VCard getContactFromCursor(Cursor cursor) {
|
|
|
+ String lookupKey = cursor.getString(cursor.getColumnIndex(ContactsContract.Contacts.LOOKUP_KEY));
|
|
|
+ Uri uri = Uri.withAppendedPath(ContactsContract.Contacts.CONTENT_VCARD_URI, lookupKey);
|
|
|
+ VCard vCard = null;
|
|
|
+ try {
|
|
|
+ InputStream inputStream = getContext().getContentResolver().openInputStream(uri);
|
|
|
+ ArrayList<VCard> vCardList = new ArrayList<>();
|
|
|
+ vCardList.addAll(Ezvcard.parse(inputStream).all());
|
|
|
+ if (vCardList.size() > 0) {
|
|
|
+ vCard = vCardList.get(0);
|
|
|
+ }
|
|
|
+
|
|
|
+ } catch (IOException e) {
|
|
|
+ Log_OC.d(TAG, e.getMessage());
|
|
|
+ }
|
|
|
+ return vCard;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
}
|