Skip to content
This repository has been archived by the owner on Sep 4, 2021. It is now read-only.

Latest commit

 

History

History
565 lines (480 loc) · 20.2 KB

seasideimport.cpp

File metadata and controls

565 lines (480 loc) · 20.2 KB
 
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
/*
* Copyright (C) 2013 Jolla Mobile <matthew.vogt@jollamobile.com>
*
* You may use this file under the terms of the BSD license as follows:
*
* "Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
* * Neither the name of Nemo Mobile nor the names of its contributors
* may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
*/
#include "seasideimport.h"
#include "seasidecache.h"
Dec 4, 2013
Dec 4, 2013
35
#include "seasidepropertyhandler.h"
36
37
38
39
40
41
42
43
44
45
46
47
#include <QContactDetailFilter>
#include <QContactFetchHint>
#include <QContactManager>
#include <QContactSortOrder>
#include <QContactSyncTarget>
#include <QContactAddress>
#include <QContactAnniversary>
#include <QContactAvatar>
#include <QContactBirthday>
#include <QContactEmailAddress>
Jul 22, 2014
Jul 22, 2014
48
49
#include <QContactFamily>
#include <QContactGeoLocation>
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
#include <QContactGuid>
#include <QContactHobby>
#include <QContactName>
#include <QContactNickname>
#include <QContactNote>
#include <QContactOnlineAccount>
#include <QContactOrganization>
#include <QContactPhoneNumber>
#include <QContactRingtone>
#include <QContactTag>
#include <QContactUrl>
#include <QContactIdFilter>
#include <QContactExtendedDetail>
#include <QVersitContactExporter>
#include <QVersitContactImporter>
#include <QVersitReader>
#include <QVersitWriter>
#include <QHash>
#include <QString>
namespace {
QContactFetchHint basicFetchHint()
{
QContactFetchHint fetchHint;
fetchHint.setOptimizationHints(QContactFetchHint::NoRelationships |
QContactFetchHint::NoActionPreferences |
QContactFetchHint::NoBinaryBlobs);
return fetchHint;
}
QContactFilter localContactFilter()
{
Jun 30, 2014
Jun 30, 2014
88
89
// Contacts that are local to the device have sync target 'local' or 'was_local' or 'bluetooth'
QContactDetailFilter filterLocal, filterWasLocal, filterBluetooth;
90
91
filterLocal.setDetailType(QContactSyncTarget::Type, QContactSyncTarget::FieldSyncTarget);
filterWasLocal.setDetailType(QContactSyncTarget::Type, QContactSyncTarget::FieldSyncTarget);
Jun 30, 2014
Jun 30, 2014
92
filterBluetooth.setDetailType(QContactSyncTarget::Type, QContactSyncTarget::FieldSyncTarget);
93
94
filterLocal.setValue(QString::fromLatin1("local"));
filterWasLocal.setValue(QString::fromLatin1("was_local"));
Jun 30, 2014
Jun 30, 2014
95
filterBluetooth.setValue(QString::fromLatin1("bluetooth"));
Jul 22, 2014
Jul 22, 2014
97
return filterLocal | filterWasLocal | filterBluetooth;
Jan 9, 2014
Jan 9, 2014
100
101
102
103
104
105
106
107
108
109
110
111
bool nameIsEmpty(const QContactName &name)
{
if (name.isEmpty())
return true;
return (name.prefix().isEmpty() &&
name.firstName().isEmpty() &&
name.middleName().isEmpty() &&
name.lastName().isEmpty() &&
name.suffix().isEmpty());
}
112
113
114
115
QString contactNameString(const QContact &contact)
{
QStringList details;
QContactName name(contact.detail<QContactName>());
Jan 9, 2014
Jan 9, 2014
116
117
118
if (nameIsEmpty(name))
return QString();
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
details.append(name.prefix());
details.append(name.firstName());
details.append(name.middleName());
details.append(name.lastName());
details.append(name.suffix());
return details.join(QChar::fromLatin1('|'));
}
template<typename T, typename F>
QVariant detailValue(const T &detail, F field)
{
return detail.value(field);
}
typedef QMap<int, QVariant> DetailMap;
DetailMap detailValues(const QContactDetail &detail)
{
DetailMap rv(detail.values());
return rv;
}
static bool variantEqual(const QVariant &lhs, const QVariant &rhs)
{
// Work around incorrect result from QVariant::operator== when variants contain QList<int>
static const int QListIntType = QMetaType::type("QList<int>");
const int lhsType = lhs.userType();
if (lhsType != rhs.userType()) {
return false;
}
if (lhsType == QListIntType) {
return (lhs.value<QList<int> >() == rhs.value<QList<int> >());
}
return (lhs == rhs);
}
static bool detailValuesSuperset(const QContactDetail &lhs, const QContactDetail &rhs)
{
// True if all values in rhs are present in lhs
const DetailMap lhsValues(detailValues(lhs));
const DetailMap rhsValues(detailValues(rhs));
if (lhsValues.count() < rhsValues.count()) {
return false;
}
foreach (const DetailMap::key_type &key, rhsValues.keys()) {
if (!variantEqual(lhsValues[key], rhsValues[key])) {
return false;
}
}
return true;
}
static void fixupDetail(QContactDetail &)
{
}
// Fixup QContactUrl because importer produces incorrectly typed URL field
static void fixupDetail(QContactUrl &url)
{
QVariant urlField = url.value(QContactUrl::FieldUrl);
if (!urlField.isNull()) {
QString urlString = urlField.toString();
if (!urlString.isEmpty()) {
url.setValue(QContactUrl::FieldUrl, QUrl(urlString));
} else {
url.setValue(QContactUrl::FieldUrl, QVariant());
}
}
}
// Fixup QContactOrganization because importer produces invalid department
static void fixupDetail(QContactOrganization &org)
{
QVariant deptField = org.value(QContactOrganization::FieldDepartment);
if (!deptField.isNull()) {
QStringList deptList = deptField.toStringList();
// Remove any empty elements from the list
QStringList::iterator it = deptList.begin();
while (it != deptList.end()) {
if ((*it).isEmpty()) {
it = deptList.erase(it);
} else {
++it;
}
}
if (!deptList.isEmpty()) {
org.setValue(QContactOrganization::FieldDepartment, deptList);
} else {
org.setValue(QContactOrganization::FieldDepartment, QVariant());
}
}
}
template<typename T>
bool updateExistingDetails(QContact *updateContact, const QContact &importedContact, bool singular = false)
{
bool rv = false;
QList<T> existingDetails(updateContact->details<T>());
if (singular && !existingDetails.isEmpty())
return rv;
foreach (T detail, importedContact.details<T>()) {
// Make any corrections to the input
fixupDetail(detail);
// See if the contact already has a detail which is a superset of this one
bool found = false;
foreach (const T &existing, existingDetails) {
if (detailValuesSuperset(existing, detail)) {
found = true;
break;
}
}
if (!found) {
updateContact->saveDetail(&detail);
rv = true;
}
}
return rv;
}
bool mergeIntoExistingContact(QContact *updateContact, const QContact &importedContact)
{
bool rv = false;
// Update the existing contact with any details in the new import
rv |= updateExistingDetails<QContactAddress>(updateContact, importedContact);
rv |= updateExistingDetails<QContactAnniversary>(updateContact, importedContact);
rv |= updateExistingDetails<QContactAvatar>(updateContact, importedContact);
rv |= updateExistingDetails<QContactBirthday>(updateContact, importedContact, true);
rv |= updateExistingDetails<QContactEmailAddress>(updateContact, importedContact);
Jul 22, 2014
Jul 22, 2014
260
261
rv |= updateExistingDetails<QContactFamily>(updateContact, importedContact);
rv |= updateExistingDetails<QContactGeoLocation>(updateContact, importedContact);
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
rv |= updateExistingDetails<QContactGuid>(updateContact, importedContact);
rv |= updateExistingDetails<QContactHobby>(updateContact, importedContact);
rv |= updateExistingDetails<QContactNickname>(updateContact, importedContact);
rv |= updateExistingDetails<QContactNote>(updateContact, importedContact);
rv |= updateExistingDetails<QContactOnlineAccount>(updateContact, importedContact);
rv |= updateExistingDetails<QContactOrganization>(updateContact, importedContact);
rv |= updateExistingDetails<QContactPhoneNumber>(updateContact, importedContact);
rv |= updateExistingDetails<QContactRingtone>(updateContact, importedContact);
rv |= updateExistingDetails<QContactTag>(updateContact, importedContact);
rv |= updateExistingDetails<QContactUrl>(updateContact, importedContact);
rv |= updateExistingDetails<QContactExtendedDetail>(updateContact, importedContact);
return rv;
}
bool updateExistingContact(QContact *updateContact, const QContact &contact)
{
// Replace the imported contact with the existing version
QContact importedContact(*updateContact);
*updateContact = contact;
return mergeIntoExistingContact(updateContact, importedContact);
}
Nov 5, 2013
Nov 5, 2013
286
287
288
289
290
291
292
293
294
295
296
297
298
void setNickname(QContact &contact, const QString &text)
{
foreach (const QContactNickname &nick, contact.details<QContactNickname>()) {
if (nick.nickname() == text) {
return;
}
}
QContactNickname nick;
nick.setNickname(text);
contact.saveDetail(&nick);
}
299
300
301
302
303
304
305
306
307
308
}
QList<QContact> SeasideImport::buildImportContacts(const QList<QVersitDocument> &details, int *newCount, int *updatedCount)
{
if (newCount)
*newCount = 0;
if (updatedCount)
*updatedCount = 0;
// Read the contacts from the import details
Dec 4, 2013
Dec 4, 2013
309
SeasidePropertyHandler propertyHandler;
310
QVersitContactImporter importer;
Dec 4, 2013
Dec 4, 2013
311
importer.setPropertyHandler(&propertyHandler);
312
313
314
315
importer.importDocuments(details);
QList<QContact> importedContacts(importer.contacts());
Nov 20, 2013
Nov 20, 2013
316
317
318
QHash<QString, int> importGuids;
QHash<QString, int> importNames;
QHash<QString, int> importLabels;
Jan 23, 2014
Jan 23, 2014
320
321
322
323
QSet<QContactDetail::DetailType> unimportableDetailTypes;
unimportableDetailTypes.insert(QContactDetail::TypeGlobalPresence);
unimportableDetailTypes.insert(QContactDetail::TypeVersion);
324
// Merge any duplicates in the import list
Nov 20, 2013
Nov 20, 2013
325
326
QList<QContact>::iterator it = importedContacts.begin();
while (it != importedContacts.end()) {
327
328
QContact &contact(*it);
Jan 23, 2014
Jan 23, 2014
329
330
// Remove any details that our backend can't store
foreach (QContactDetail detail, contact.details()) {
Jun 30, 2014
Jun 30, 2014
331
332
333
334
335
336
337
338
339
340
341
if (detail.type() == QContactSyncTarget::Type) {
// We allow some syncTarget values
const QString syncTarget(detail.value<QString>(QContactSyncTarget::FieldSyncTarget));
if (syncTarget == QStringLiteral("was_local") ||
syncTarget == QStringLiteral("bluetooth")) {
// These values are permissible
} else {
qDebug() << " Removing unimportable syncTarget:" << syncTarget;
contact.removeDetail(&detail);
}
} else if (unimportableDetailTypes.contains(detail.type())) {
Jan 23, 2014
Jan 23, 2014
342
343
344
345
346
qDebug() << " Removing unimportable detail:" << detail;
contact.removeDetail(&detail);
}
}
347
348
const QString guid = contact.detail<QContactGuid>().guid();
const QString name = contactNameString(contact);
Jan 9, 2014
Jan 9, 2014
349
350
351
352
353
354
355
356
357
358
359
360
const bool emptyName = name.isEmpty();
QString label;
if (emptyName) {
QContactName nameDetail = contact.detail<QContactName>();
contact.removeDetail(&nameDetail);
label = contact.detail<QContactDisplayLabel>().label();
if (label.isEmpty()) {
label = SeasideCache::generateDisplayLabelFromNonNameDetails(contact);
}
}
Nov 20, 2013
Nov 20, 2013
362
363
int previousIndex = -1;
QHash<QString, int>::const_iterator git = importGuids.find(guid);
364
if (git != importGuids.end()) {
Nov 20, 2013
Nov 20, 2013
365
previousIndex = git.value();
Jan 15, 2014
Jan 15, 2014
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
if (!emptyName) {
// If we have a GUID match, but names differ, ignore the match
const QContact &previous(importedContacts[previousIndex]);
const QString previousName = contactNameString(previous);
if (!previousName.isEmpty() && (previousName != name)) {
previousIndex = -1;
// Remove the conflicting GUID from this contact
QContactGuid guidDetail = contact.detail<QContactGuid>();
contact.removeDetail(&guidDetail);
}
}
}
if (previousIndex == -1) {
Jan 9, 2014
Jan 9, 2014
381
382
383
384
385
386
if (!emptyName) {
QHash<QString, int>::const_iterator nit = importNames.find(name);
if (nit != importNames.end()) {
previousIndex = nit.value();
}
} else if (!label.isEmpty()) {
387
// Only if name is empty, use displayLabel - probably SIM import
Jan 9, 2014
Jan 9, 2014
388
389
390
QHash<QString, int>::const_iterator lit = importLabels.find(label);
if (lit != importLabels.end()) {
previousIndex = lit.value();
391
392
393
394
}
}
}
Nov 20, 2013
Nov 20, 2013
395
if (previousIndex != -1) {
396
// Combine these duplicate contacts
Nov 20, 2013
Nov 20, 2013
397
398
399
400
QContact &previous(importedContacts[previousIndex]);
mergeIntoExistingContact(&previous, contact);
it = importedContacts.erase(it);
Nov 20, 2013
Nov 20, 2013
402
const int index = it - importedContacts.begin();
403
if (!guid.isEmpty()) {
Nov 20, 2013
Nov 20, 2013
404
importGuids.insert(guid, index);
405
406
}
if (!emptyName) {
Nov 20, 2013
Nov 20, 2013
407
importNames.insert(name, index);
408
} else if (!label.isEmpty()) {
Nov 20, 2013
Nov 20, 2013
409
importLabels.insert(label, index);
Jan 9, 2014
Jan 9, 2014
411
412
413
414
if (contact.details<QContactNickname>().isEmpty()) {
// Modify this contact to have the label as a nickname
setNickname(contact, label);
}
Nov 20, 2013
Nov 20, 2013
417
418
++it;
}
Nov 4, 2013
Nov 4, 2013
419
420
}
421
422
423
424
425
426
// Find all names and GUIDs for local contacts that might match these contacts
QContactFetchHint fetchHint(basicFetchHint());
fetchHint.setDetailTypesHint(QList<QContactDetail::DetailType>() << QContactName::Type << QContactNickname::Type << QContactGuid::Type);
QHash<QString, QContactId> existingGuids;
QHash<QString, QContactId> existingNames;
Jan 15, 2014
Jan 15, 2014
427
QMap<QContactId, QString> existingContactNames;
428
429
430
431
432
433
434
435
436
437
438
439
440
QHash<QString, QContactId> existingNicknames;
QContactManager *mgr(SeasideCache::manager());
foreach (const QContact &contact, mgr->contacts(localContactFilter(), QList<QContactSortOrder>(), fetchHint)) {
const QString guid = contact.detail<QContactGuid>().guid();
const QString name = contactNameString(contact);
if (!guid.isEmpty()) {
existingGuids.insert(guid, contact.id());
}
if (!name.isEmpty()) {
existingNames.insert(name, contact.id());
Jan 15, 2014
Jan 15, 2014
441
existingContactNames.insert(contact.id(), name);
442
443
444
445
446
447
448
}
foreach (const QContactNickname &nick, contact.details<QContactNickname>()) {
existingNicknames.insert(nick.nickname(), contact.id());
}
}
// Find any imported contacts that match contacts we already have
Nov 20, 2013
Nov 20, 2013
449
QMap<QContactId, int> existingIds;
Nov 20, 2013
Nov 20, 2013
451
452
it = importedContacts.begin();
while (it != importedContacts.end()) {
453
const QString guid = (*it).detail<QContactGuid>().guid();
Jan 15, 2014
Jan 15, 2014
454
455
const QString name = contactNameString(*it);
const bool emptyName = name.isEmpty();
456
457
458
459
460
461
462
QContactId existingId;
QHash<QString, QContactId>::const_iterator git = existingGuids.find(guid);
if (git != existingGuids.end()) {
existingId = *git;
Jan 15, 2014
Jan 15, 2014
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
if (!emptyName) {
// If we have a GUID match, but names differ, ignore the match
QMap<QContactId, QString>::iterator nit = existingContactNames.find(existingId);
if (nit != existingContactNames.end()) {
const QString &existingName(*nit);
if (!existingName.isEmpty() && (existingName != name)) {
existingId = QContactId();
// Remove the conflicting GUID from this contact
QContactGuid guidDetail = (*it).detail<QContactGuid>();
(*it).removeDetail(&guidDetail);
}
}
}
}
if (existingId.isNull()) {
if (!emptyName) {
480
481
482
483
484
QHash<QString, QContactId>::const_iterator nit = existingNames.find(name);
if (nit != existingNames.end()) {
existingId = *nit;
}
} else {
Jan 9, 2014
Jan 9, 2014
485
486
487
488
489
490
491
492
foreach (const QContactNickname nick, (*it).details<QContactNickname>()) {
const QString nickname(nick.nickname());
if (!nickname.isEmpty()) {
QHash<QString, QContactId>::const_iterator nit = existingNicknames.find(nickname);
if (nit != existingNicknames.end()) {
existingId = *nit;
break;
}
493
494
495
496
497
}
}
}
}
Jan 9, 2014
Jan 9, 2014
498
if (!existingId.isNull()) {
Nov 20, 2013
Nov 20, 2013
499
QMap<QContactId, int>::iterator eit = existingIds.find(existingId);
500
if (eit == existingIds.end()) {
Nov 20, 2013
Nov 20, 2013
501
502
503
existingIds.insert(existingId, (it - importedContacts.begin()));
++it;
504
505
} else {
// Combine these contacts with matching names
Nov 20, 2013
Nov 20, 2013
506
507
QContact &previous(importedContacts[*eit]);
mergeIntoExistingContact(&previous, *it);
Nov 20, 2013
Nov 20, 2013
509
it = importedContacts.erase(it);
Nov 20, 2013
Nov 20, 2013
511
512
} else {
++it;
513
514
515
516
517
518
519
520
521
522
523
524
525
}
}
int existingCount(existingIds.count());
if (existingCount > 0) {
// Retrieve all the contacts that we have matches for
QContactIdFilter idFilter;
idFilter.setIds(existingIds.keys());
QSet<QContactId> modifiedContacts;
QSet<QContactId> unmodifiedContacts;
foreach (const QContact &contact, mgr->contacts(idFilter & localContactFilter(), QList<QContactSortOrder>(), basicFetchHint())) {
Nov 20, 2013
Nov 20, 2013
526
QMap<QContactId, int>::const_iterator it = existingIds.find(contact.id());
527
528
if (it != existingIds.end()) {
// Update the existing version of the contact with any new details
Nov 20, 2013
Nov 20, 2013
529
QContact &importContact(importedContacts[*it]);
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
bool modified = updateExistingContact(&importContact, contact);
if (modified) {
modifiedContacts.insert(importContact.id());
} else {
unmodifiedContacts.insert(importContact.id());
}
} else {
qWarning() << "unable to update existing contact:" << contact.id();
}
}
if (!unmodifiedContacts.isEmpty()) {
QList<QContact>::iterator it = importedContacts.begin();
while (it != importedContacts.end()) {
const QContact &importContact(*it);
const QContactId contactId(importContact.id());
if (unmodifiedContacts.contains(contactId) && !modifiedContacts.contains(contactId)) {
// This contact was not modified by import - don't update it
it = importedContacts.erase(it);
--existingCount;
} else {
++it;
}
}
}
}
if (updatedCount)
*updatedCount = existingCount;
if (newCount)
*newCount = importedContacts.count() - existingCount;
return importedContacts;
}