ContactsImportJob.java 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. /**
  2. * Nextcloud Android client application
  3. *
  4. * @author Tobias Kaminsky
  5. * Copyright (C) 2017 Tobias Kaminsky
  6. * Copyright (C) 2017 Nextcloud GmbH.
  7. * <p>
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU Affero General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * at your option) any later version.
  12. * <p>
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU Affero General Public License for more details.
  17. * <p>
  18. * You should have received a copy of the GNU Affero General Public License
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. */
  21. package com.owncloud.android.services;
  22. import android.database.Cursor;
  23. import android.net.Uri;
  24. import android.provider.ContactsContract;
  25. import android.support.annotation.NonNull;
  26. import com.evernote.android.job.Job;
  27. import com.evernote.android.job.util.support.PersistableBundleCompat;
  28. import com.owncloud.android.lib.common.utils.Log_OC;
  29. import com.owncloud.android.ui.fragment.contactsbackup.ContactListFragment;
  30. import java.io.File;
  31. import java.io.IOException;
  32. import java.io.InputStream;
  33. import java.util.ArrayList;
  34. import java.util.Collections;
  35. import java.util.TreeMap;
  36. import ezvcard.Ezvcard;
  37. import ezvcard.VCard;
  38. import third_parties.ezvcard_android.ContactOperations;
  39. /**
  40. * Job to import contacts
  41. */
  42. public class ContactsImportJob extends Job {
  43. public static final String TAG = "ContactsImportJob";
  44. public static final String ACCOUNT_TYPE = "account_type";
  45. public static final String ACCOUNT_NAME = "account_name";
  46. public static final String VCARD_FILE_PATH = "vcard_file_path";
  47. public static final String CHECKED_ITEMS_ARRAY = "checked_items_array";
  48. @NonNull
  49. @Override
  50. protected Result onRunJob(Params params) {
  51. PersistableBundleCompat bundle = params.getExtras();
  52. String vCardFilePath = bundle.getString(VCARD_FILE_PATH, "");
  53. String accountName = bundle.getString(ACCOUNT_NAME, "");
  54. String accountType = bundle.getString(ACCOUNT_TYPE, "");
  55. int[] intArray = bundle.getIntArray(CHECKED_ITEMS_ARRAY);
  56. File file = new File(vCardFilePath);
  57. ArrayList<VCard> vCards = new ArrayList<>();
  58. try {
  59. ContactOperations operations = new ContactOperations(getContext(), accountName, accountType);
  60. vCards.addAll(Ezvcard.parse(file).all());
  61. Collections.sort(vCards, new ContactListFragment.VCardComparator());
  62. Cursor cursor = getContext().getContentResolver().query(ContactsContract.Contacts.CONTENT_URI, null,
  63. null, null, null);
  64. TreeMap<VCard, Long> ownContactList = new TreeMap<>(new ContactListFragment.VCardComparator());
  65. if (cursor != null && cursor.getCount() > 0) {
  66. cursor.moveToFirst();
  67. for (int i = 0; i < cursor.getCount(); i++) {
  68. VCard vCard = getContactFromCursor(cursor);
  69. if (vCard != null) {
  70. ownContactList.put(vCard, cursor.getLong(cursor.getColumnIndex("NAME_RAW_CONTACT_ID")));
  71. }
  72. cursor.moveToNext();
  73. }
  74. }
  75. for (int i = 0; i < intArray.length; i++) {
  76. VCard vCard = vCards.get(intArray[i]);
  77. if (!ownContactList.containsKey(vCard)) {
  78. operations.insertContact(vCard);
  79. } else {
  80. operations.updateContact(vCard, ownContactList.get(vCard));
  81. }
  82. }
  83. } catch (Exception e) {
  84. Log_OC.e(TAG, e.getMessage());
  85. }
  86. return Result.SUCCESS;
  87. }
  88. private VCard getContactFromCursor(Cursor cursor) {
  89. String lookupKey = cursor.getString(cursor.getColumnIndex(ContactsContract.Contacts.LOOKUP_KEY));
  90. Uri uri = Uri.withAppendedPath(ContactsContract.Contacts.CONTENT_VCARD_URI, lookupKey);
  91. VCard vCard = null;
  92. try {
  93. InputStream inputStream = getContext().getContentResolver().openInputStream(uri);
  94. ArrayList<VCard> vCardList = new ArrayList<>();
  95. vCardList.addAll(Ezvcard.parse(inputStream).all());
  96. if (vCardList.size() > 0) {
  97. vCard = vCardList.get(0);
  98. }
  99. } catch (IOException e) {
  100. Log_OC.d(TAG, e.getMessage());
  101. }
  102. return vCard;
  103. }
  104. }