blob: 6868ee9282aa009276a0d3da36c4c3623e6fefe1 [file] [log] [blame]
Stepan Salenikovich6f687072015-03-26 10:43:37 -04001/*
Stepan Salenikovichbe87d2c2016-01-25 14:14:34 -05002 * Copyright (C) 2015-2016 Savoir-faire Linux Inc.
Stepan Salenikovich6f687072015-03-26 10:43:37 -04003 * Author: Stepan Salenikovich <stepan.salenikovich@savoirfairelinux.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Stepan Salenikovich6f687072015-03-26 10:43:37 -040018 */
19
20#include "edscontactbackend.h"
21
Stepan Salenikovicha1b8cb32015-09-11 14:58:35 -040022#include <glib/gi18n.h>
Stepan Salenikovich6f687072015-03-26 10:43:37 -040023#include <person.h>
24#include <personmodel.h>
25#include <contactmethod.h>
26#include <collectioneditor.h>
27#include <memory>
28
29static void
30client_cb(G_GNUC_UNUSED ESource *source, GAsyncResult *result, G_GNUC_UNUSED gpointer user_data)
31{
32 GError *error = NULL;
33 EClient *client = e_book_client_connect_finish(result, &error);
34 if (!client) {
35 g_warning("%s", error->message);
Stepan Salenikovich8a287fc2015-05-01 16:53:20 -040036 g_clear_error(&error);
Stepan Salenikovich6f687072015-03-26 10:43:37 -040037 } else {
38 /* got a client for this addressbook, add as backend */
Guillaume Roguez5d1514b2015-10-22 15:55:31 -040039 PersonModel::instance().addCollection<EdsContactBackend, EClient *>(
Stepan Salenikovich6f687072015-03-26 10:43:37 -040040 client, LoadOptions::FORCE_ENABLED);
41 }
42}
43
44static void
45registry_cb(G_GNUC_UNUSED GObject *source, GAsyncResult *result, GCancellable *cancellable)
46{
47 GError *error = NULL;
48 ESourceRegistry *registry = e_source_registry_new_finish(result, &error);
49 if(!registry) {
Stepan Salenikovich6aa46d12017-02-10 12:24:57 -050050 g_warning("Unable to create EDS registry: %s", error->message);
Stepan Salenikovich8a287fc2015-05-01 16:53:20 -040051 g_clear_error(&error);
Stepan Salenikovich6f687072015-03-26 10:43:37 -040052 return;
53 } else {
54 GList *list = e_source_registry_list_enabled(registry, E_SOURCE_EXTENSION_ADDRESS_BOOK);
55
56 for (GList *l = list ; l; l = l->next) {
57 ESource *source = E_SOURCE(l->data);
58 /* try to connect to each source ansynch */
Stepan Salenikovichb53e9c02015-04-14 17:41:10 -040059#if EDS_CHECK_VERSION(3,16,0)
Edric Milaret66c50a32015-05-06 10:38:42 -040060 e_book_client_connect(source,
61 EdsContactBackend::WAIT_FOR_CONNECTED_SECONDS,
62 cancellable,
63 (GAsyncReadyCallback)client_cb,
64 NULL);
65#else
66 e_book_client_connect(source, cancellable, (GAsyncReadyCallback)client_cb, NULL);
Stepan Salenikovichb53e9c02015-04-14 17:41:10 -040067#endif
Stepan Salenikovich6f687072015-03-26 10:43:37 -040068 }
69
70 g_list_free_full(list, g_object_unref);
71 }
72}
73
74void load_eds_sources(GCancellable *cancellable)
75{
76 /* load the registery asynchronously, and then each source asynch as well
77 * pass the cancellable as a param so that the loading of each source can
78 * also be cancelled
79 */
80 e_source_registry_new(cancellable, (GAsyncReadyCallback)registry_cb, cancellable);
81}
82
83class EdsContactEditor : public CollectionEditor<Person>
84{
85public:
86 EdsContactEditor(CollectionMediator<Person>* m, EdsContactBackend* parent);
87 ~EdsContactEditor();
88 virtual bool save ( const Person* item ) override;
89 virtual bool remove ( const Person* item ) override;
90 virtual bool edit ( Person* item ) override;
Stepan Salenikovich58dd9e12015-08-05 10:39:36 -040091 virtual bool addNew ( Person* item ) override;
Stepan Salenikovich6f687072015-03-26 10:43:37 -040092 virtual bool addExisting( const Person* item ) override;
93
94private:
95 virtual QVector<Person*> items() const override;
96
97 QVector<Person*> items_;
98 EdsContactBackend* collection_;
99};
100
101EdsContactEditor::EdsContactEditor(CollectionMediator<Person>* m, EdsContactBackend* parent) :
102CollectionEditor<Person>(m),collection_(parent)
103{
104}
105
106EdsContactEditor::~EdsContactEditor()
107{
108}
109
110bool EdsContactEditor::save(const Person* item)
111{
Stepan Salenikovich0cf247d2015-07-24 17:36:32 -0400112 return collection_->savePerson(item);
Stepan Salenikovich6f687072015-03-26 10:43:37 -0400113}
114
115bool EdsContactEditor::remove(const Person* item)
116{
aviauff727952016-01-29 16:23:07 -0500117 bool ret = collection_->removePerson(item);
118 if (ret) {
119 mediator()->removeItem(item);
120 }
121 return ret;
Stepan Salenikovich6f687072015-03-26 10:43:37 -0400122}
123
124bool EdsContactEditor::edit( Person* item)
125{
126 Q_UNUSED(item)
127 return false;
128}
129
Stepan Salenikovich58dd9e12015-08-05 10:39:36 -0400130bool EdsContactEditor::addNew(Person* item)
Stepan Salenikovich6f687072015-03-26 10:43:37 -0400131{
Stepan Salenikovich58dd9e12015-08-05 10:39:36 -0400132 bool ret = collection_->addNewPerson(item);
Stepan Salenikovichf2d76c52015-07-17 17:54:56 -0400133 if (ret) {
Stepan Salenikovich58dd9e12015-08-05 10:39:36 -0400134 items_ << item;
Stepan Salenikovichf2d76c52015-07-17 17:54:56 -0400135 mediator()->addItem(item);
136 }
137 return ret;
Stepan Salenikovich6f687072015-03-26 10:43:37 -0400138}
139
140bool EdsContactEditor::addExisting(const Person* item)
141{
142 items_ << const_cast<Person*>(item);
143 mediator()->addItem(item);
144 return true;
145}
146
147QVector<Person*> EdsContactEditor::items() const
148{
149 return items_;
150}
151
Stepan Salenikovich8e882cd2015-05-28 14:18:06 -0400152static void free_client_view(EBookClientView *client_view) {
153 g_return_if_fail(client_view);
154 GError *error = NULL;
155 e_book_client_view_stop(client_view, &error);
156 if (error) {
157 g_warning("error stopping EBookClientView: %s", error->message);
158 g_clear_error(&error);
159 }
160 g_object_unref(client_view);
161}
162
163static void
Stepan Salenikovich21366ed2015-06-26 17:11:45 -0400164free_object_list(GSList *list)
Stepan Salenikovich8e882cd2015-05-28 14:18:06 -0400165{
166 g_slist_free_full(list, g_object_unref);
167};
168
Stepan Salenikovich21366ed2015-06-26 17:11:45 -0400169static void
170free_string_list(GSList *list)
171{
172 g_slist_free_full(list, g_free);
173};
174
Stepan Salenikovich6f687072015-03-26 10:43:37 -0400175EdsContactBackend::EdsContactBackend(CollectionMediator<Person>* mediator, EClient *client, CollectionInterface* parent)
176 : CollectionInterface(new EdsContactEditor(mediator,this), parent)
177 , mediator_(mediator)
178 , client_(client, g_object_unref)
179 , cancellable_(g_cancellable_new(), g_object_unref)
Stepan Salenikovich8e882cd2015-05-28 14:18:06 -0400180 , client_view_(nullptr, &free_client_view)
Stepan Salenikovich6f687072015-03-26 10:43:37 -0400181{
Stepan Salenikovichf4149272015-07-16 16:12:19 -0400182 // cache the name
183 if (client_) {
184 auto source = e_client_get_source(client_.get());
185 auto extension = (ESourceAddressBook *)e_source_get_extension(source, E_SOURCE_EXTENSION_ADDRESS_BOOK);
186 auto backend = e_source_backend_get_backend_name(E_SOURCE_BACKEND(extension));
187 auto addressbook = e_source_get_display_name(source);
188
189 gchar *name = g_strdup_printf("%s (%s)", addressbook, backend);
Stepan Salenikovicha1b8cb32015-09-11 14:58:35 -0400190 name_ = name;
Stepan Salenikovichf4149272015-07-16 16:12:19 -0400191 g_free(name);
192 } else
Stepan Salenikovicha1b8cb32015-09-11 14:58:35 -0400193 name_ = _("Unknown EDS addressbook");
Stepan Salenikovich6f687072015-03-26 10:43:37 -0400194}
195
196EdsContactBackend::~EdsContactBackend()
197{
198 /* cancel any cancellable operations */
199 g_cancellable_cancel(cancellable_.get());
Stepan Salenikovichdc7178b2015-04-13 17:38:46 -0400200
201 /* cancel contact loading timeout source, if its not finished */
202 if (add_contacts_source_id != 0)
203 g_source_remove(add_contacts_source_id);
Stepan Salenikovich6f687072015-03-26 10:43:37 -0400204}
205
206QString EdsContactBackend::name() const
207{
Stepan Salenikovichf4149272015-07-16 16:12:19 -0400208 return name_;
Stepan Salenikovich6f687072015-03-26 10:43:37 -0400209}
210
211QString EdsContactBackend::category() const
212{
Stepan Salenikovicha1b8cb32015-09-11 14:58:35 -0400213 return C_("Backend type", "Contacts");
Stepan Salenikovich6f687072015-03-26 10:43:37 -0400214}
215
216bool EdsContactBackend::isEnabled() const
217{
218 return true;
219}
220
221static void
Stepan Salenikovich8e882cd2015-05-28 14:18:06 -0400222contacts_added(G_GNUC_UNUSED EBookClientView *client_view, const GSList *objects, EdsContactBackend *self)
223{
224 std::unique_ptr<GSList,void(*)(GSList *)> contacts(
Stepan Salenikovich21366ed2015-06-26 17:11:45 -0400225 g_slist_copy_deep((GSList *)objects, (GCopyFunc)g_object_ref, NULL ), &free_object_list);
Stepan Salenikovich8e882cd2015-05-28 14:18:06 -0400226 self->addContacts(std::move(contacts));
227}
228
229static void
Stepan Salenikovicheccd3102015-06-26 15:49:34 -0400230contacts_modified(EBookClientView *client_view, const GSList *objects, EdsContactBackend *self)
231{
232 /* The parseContact function will check if the contacts we're "adding" have
233 * the same URI as any existing ones and if so will update those instead */
234 contacts_added(client_view, objects, self);
235}
236
237static void
Stepan Salenikovich21366ed2015-06-26 17:11:45 -0400238contacts_removed(G_GNUC_UNUSED EBookClientView *client_view, const GSList *uids, EdsContactBackend *self)
239{
240 std::unique_ptr<GSList,void(*)(GSList *)> contact_uids(
241 g_slist_copy_deep((GSList *)uids, (GCopyFunc)g_strdup, NULL ), &free_string_list);
242 self->removeContacts(std::move(contact_uids));
243}
244
245static void
Stepan Salenikovich8e882cd2015-05-28 14:18:06 -0400246client_view_cb(EBookClient *client, GAsyncResult *result, EdsContactBackend *self)
Stepan Salenikovich6f687072015-03-26 10:43:37 -0400247{
248 g_return_if_fail(E_IS_BOOK_CLIENT(client));
Stepan Salenikovich8e882cd2015-05-28 14:18:06 -0400249 EBookClientView *client_view = NULL;
Stepan Salenikovich6f687072015-03-26 10:43:37 -0400250 GError *error = NULL;
Stepan Salenikovich8e882cd2015-05-28 14:18:06 -0400251 if(!e_book_client_get_view_finish(client, result, &client_view, &error)) {
Stepan Salenikovich6aa46d12017-02-10 12:24:57 -0500252 g_warning("Unable to get EDS client view: %s", error->message);
Stepan Salenikovich8a287fc2015-05-01 16:53:20 -0400253 g_clear_error(&error);
Stepan Salenikovich6f687072015-03-26 10:43:37 -0400254 return;
255 } else {
Stepan Salenikovich8e882cd2015-05-28 14:18:06 -0400256 /* we want the EBookClientView to have the same life cycle as the backend */
257 std::unique_ptr<EBookClientView, void(*)(EBookClientView *)> client_view_ptr(
258 client_view, &free_client_view);
259 self->addClientView(std::move(client_view_ptr));
Stepan Salenikovich6f687072015-03-26 10:43:37 -0400260 }
261}
262
Stepan Salenikovichdc7178b2015-04-13 17:38:46 -0400263void EdsContactBackend::parseContact(EContact *contact)
264{
265 /* Check if the photo is in-line or a URI, in the case that it is a URI,
266 * try to make it inline so that the lrc vcard parser is able to get the
267 * photo. Note that this will only work on local URIs
268 */
269 EContactPhoto *photo = (EContactPhoto *)e_contact_get(contact, E_CONTACT_PHOTO);
270 if (photo) {
271 if (photo->type == E_CONTACT_PHOTO_TYPE_URI) {
272 GError *error = NULL;
273 if (!e_contact_inline_local_photos(contact, &error)) {
274 g_warning("could not inline photo from vcard URI: %s", error->message);
Stepan Salenikovich8a287fc2015-05-01 16:53:20 -0400275 g_clear_error(&error);
Stepan Salenikovichdc7178b2015-04-13 17:38:46 -0400276 }
277 }
278 }
279 e_contact_photo_free(photo);
280
281 EVCard *vcard = E_VCARD(contact);
282 gchar *vcard_str = e_vcard_to_string(vcard, EVC_FORMAT_VCARD_30);
Stepan Salenikovicheccd3102015-06-26 15:49:34 -0400283
284 /* check if this person already exists */
Stepan Salenikoviche86ffba2015-07-13 11:32:40 -0400285 Person *existing = nullptr;
286
287 gchar *uid = (gchar *)e_contact_get(contact, E_CONTACT_UID);
288 if (uid) {
Stepan Salenikovichf2d76c52015-07-17 17:54:56 -0400289 // g_warning("got uid: %s", uid);
Guillaume Roguez5d1514b2015-10-22 15:55:31 -0400290 existing = PersonModel::instance().getPersonByUid(uid);
Stepan Salenikoviche86ffba2015-07-13 11:32:40 -0400291 g_free(uid);
292 }
293
Stepan Salenikovicheccd3102015-06-26 15:49:34 -0400294 if (existing) {
295 /* update existing person */
Stepan Salenikoviche86ffba2015-07-13 11:32:40 -0400296 existing->updateFromVCard(vcard_str);
Stepan Salenikovicheccd3102015-06-26 15:49:34 -0400297 } else {
Stepan Salenikoviche86ffba2015-07-13 11:32:40 -0400298 Person *p = new Person(vcard_str, Person::Encoding::vCard, this);
Stepan Salenikovicheccd3102015-06-26 15:49:34 -0400299 editor<Person>()->addExisting(p);
300 }
Stepan Salenikoviche86ffba2015-07-13 11:32:40 -0400301
302 g_free(vcard_str);
Stepan Salenikovichdc7178b2015-04-13 17:38:46 -0400303}
304
305typedef struct AddContactsData_
306{
307 EdsContactBackend* backend;
308 GSList *next;
Stepan Salenikovich8e882cd2015-05-28 14:18:06 -0400309 std::unique_ptr<GSList, void(*)(GSList *)> contacts;
Stepan Salenikovichdc7178b2015-04-13 17:38:46 -0400310} AddContactsData;
311
Stepan Salenikovich8e882cd2015-05-28 14:18:06 -0400312void
313free_add_contacts_data(AddContactsData *data)
314{
315 g_return_if_fail(data && data->contacts);
316 data->contacts.reset();
317 g_free(data);
318}
319
Stepan Salenikovichdc7178b2015-04-13 17:38:46 -0400320static gboolean
321add_contacts(AddContactsData *data)
322{
323 for (int i = 0; i < data->backend->CONTACT_ADD_LIMIT && data->next; i++) {
324 data->backend->parseContact(E_CONTACT(data->next->data));
325 data->next = data->next->next;
326 }
327
328 if (!data->next) {
329 data->backend->lastContactAdded();
330 return G_SOURCE_REMOVE;
331 }
332
333 return G_SOURCE_CONTINUE;
334}
335
336void EdsContactBackend::lastContactAdded()
337{
338 /* Sets the source id to 0 to make sure we don't try to remove this source
339 * after it has already finished */
340 add_contacts_source_id = 0;
341}
342
Stepan Salenikovich8e882cd2015-05-28 14:18:06 -0400343void EdsContactBackend::addClientView(std::unique_ptr<EBookClientView, void(*)(EBookClientView *)> client_view)
Stepan Salenikovich6f687072015-03-26 10:43:37 -0400344{
Stepan Salenikovich8e882cd2015-05-28 14:18:06 -0400345 client_view_ = std::move(client_view);
Stepan Salenikovich6f687072015-03-26 10:43:37 -0400346
Stepan Salenikovich8e882cd2015-05-28 14:18:06 -0400347 /* connect signals for adding, removing, and modifying contacts */
348 g_signal_connect(client_view_.get(), "objects-added", G_CALLBACK(contacts_added), this);
Stepan Salenikovicheccd3102015-06-26 15:49:34 -0400349 g_signal_connect(client_view_.get(), "objects-modified", G_CALLBACK(contacts_modified), this);
Stepan Salenikovich21366ed2015-06-26 17:11:45 -0400350 g_signal_connect(client_view_.get(), "objects-removed", G_CALLBACK(contacts_removed), this);
Stepan Salenikovich8e882cd2015-05-28 14:18:06 -0400351
352 /* start processing the signals */
353 GError *error = NULL;
354 e_book_client_view_start(client_view_.get(), &error);
355 if (error) {
Stepan Salenikovich6aa46d12017-02-10 12:24:57 -0500356 g_warning("Unable to start EDS client view: %s", error->message);
Stepan Salenikovich8e882cd2015-05-28 14:18:06 -0400357 g_clear_error(&error);
358 }
359}
360
361void EdsContactBackend::addContacts(std::unique_ptr<GSList, void(*)(GSList *)> contacts)
362{
Stepan Salenikovichdc7178b2015-04-13 17:38:46 -0400363 /* add CONTACT_ADD_LIMIT # of contacts every CONTACT_ADD_INTERVAL miliseconds */
364 AddContactsData *data = g_new0(AddContactsData, 1);
365 data->backend = this;
Stepan Salenikovich8e882cd2015-05-28 14:18:06 -0400366 data->contacts = std::move(contacts);
367 data->next = data->contacts.get();
Stepan Salenikovich6f687072015-03-26 10:43:37 -0400368
Stepan Salenikovichdc7178b2015-04-13 17:38:46 -0400369 g_timeout_add_full(G_PRIORITY_DEFAULT,
370 CONTACT_ADD_INTERVAL,
371 (GSourceFunc)add_contacts,
372 data,
Stepan Salenikovich8e882cd2015-05-28 14:18:06 -0400373 (GDestroyNotify)free_add_contacts_data);
Stepan Salenikovich6f687072015-03-26 10:43:37 -0400374}
375
Stepan Salenikovich21366ed2015-06-26 17:11:45 -0400376void EdsContactBackend::removeContacts(std::unique_ptr<GSList, void(*)(GSList *)> contact_uids)
377{
378 GSList *next = contact_uids.get();
379 while(next) {
380 gchar *uid = (gchar *)next->data;
381 if (uid) {
Guillaume Roguez5d1514b2015-10-22 15:55:31 -0400382 Person *p = PersonModel::instance().getPersonByUid(uid);
Stepan Salenikovich21366ed2015-06-26 17:11:45 -0400383 if (p) {
384 g_debug("removing: %s", p->formattedName().toUtf8().constData());
385 deactivate(p);
aviauff727952016-01-29 16:23:07 -0500386 mediator_->removeItem(p);
Stepan Salenikovich21366ed2015-06-26 17:11:45 -0400387 } else {
388 g_warning("person with given UID doesn't exist: %s", uid);
389 }
390 } else {
391 g_warning("null UID in list");
392 }
393 next = g_slist_next(next);
394 }
395}
396
Stepan Salenikovich6f687072015-03-26 10:43:37 -0400397bool EdsContactBackend::load()
398{
399 /**
400 * load the contacts by querying for them,
401 * we want the contact to have some kind of name
402 */
403 EBookQuery *queries[4];
404 int idx = 0;
405 queries[idx++] = e_book_query_field_exists(E_CONTACT_NAME_OR_ORG);
406 queries[idx++] = e_book_query_field_exists(E_CONTACT_GIVEN_NAME);
407 queries[idx++] = e_book_query_field_exists(E_CONTACT_FAMILY_NAME);
408 queries[idx++] = e_book_query_field_exists(E_CONTACT_NICKNAME);
409
410 EBookQuery *name_query = e_book_query_or(idx, queries, TRUE);
411 gchar *query_str = e_book_query_to_string(name_query);
412 e_book_query_unref(name_query);
Stepan Salenikovich8e882cd2015-05-28 14:18:06 -0400413
414 /* test */
415 e_book_client_get_view(E_BOOK_CLIENT(client_.get()),
416 query_str,
417 cancellable_.get(),
418 (GAsyncReadyCallback)client_view_cb,
419 this);
Stepan Salenikovich6f687072015-03-26 10:43:37 -0400420 g_free(query_str);
421
422 return true;
423}
424
425bool EdsContactBackend::reload()
426{
427 return false;
428}
429
Stepan Salenikovich4e409932015-04-24 12:12:39 -0400430FlagPack<CollectionInterface::SupportedFeatures> EdsContactBackend::supportedFeatures() const
Stepan Salenikovich6f687072015-03-26 10:43:37 -0400431{
Stepan Salenikovich4e409932015-04-24 12:12:39 -0400432 return (CollectionInterface::SupportedFeatures::NONE |
Stepan Salenikovichf2d76c52015-07-17 17:54:56 -0400433 CollectionInterface::SupportedFeatures::LOAD |
Stepan Salenikovich0cf247d2015-07-24 17:36:32 -0400434 CollectionInterface::SupportedFeatures::ADD |
aviauff727952016-01-29 16:23:07 -0500435 CollectionInterface::SupportedFeatures::REMOVE |
Stepan Salenikovich0cf247d2015-07-24 17:36:32 -0400436 CollectionInterface::SupportedFeatures::SAVE );
Stepan Salenikovich6f687072015-03-26 10:43:37 -0400437}
438
439bool EdsContactBackend::clear()
440{
441 return false;
442}
443
444QByteArray EdsContactBackend::id() const
445{
Stepan Salenikovichf4149272015-07-16 16:12:19 -0400446 if (client_)
447 return e_source_get_uid(e_client_get_source(client_.get()));
448 return "edscb";
Stepan Salenikovich6f687072015-03-26 10:43:37 -0400449}
Stepan Salenikovichf2d76c52015-07-17 17:54:56 -0400450
451bool EdsContactBackend::addNewPerson(Person *item)
452{
Stepan Salenikovich0cf247d2015-07-24 17:36:32 -0400453 g_return_val_if_fail(client_.get(), false);
Stepan Salenikovichf2d76c52015-07-17 17:54:56 -0400454
455 auto contact = e_contact_new_from_vcard(item->toVCard().constData());
456 gchar *uid = NULL;
457 GError *error = NULL;
458
Stepan Salenikovich0cf247d2015-07-24 17:36:32 -0400459 /* FIXME: this methods returns True for a google addressbook, but it never
460 * actually adds the new contact... not clear if this is possible */
Stepan Salenikovichf2d76c52015-07-17 17:54:56 -0400461 bool ret = e_book_client_add_contact_sync(
462 E_BOOK_CLIENT(client_.get()),
463 contact,
464 &uid,
465 cancellable_.get(),
466 &error
467 );
468
469 if (!ret) {
470 if (error) {
471 g_warning("could not add contact to collection: %s", error->message);
472 g_clear_error(&error);
473 } else {
474 g_warning("could not add contact to collection");
475 }
476 } else {
477 item->setUid(uid);
478 }
479
480 g_free(uid);
481 g_object_unref(contact);
482
483 return ret;
484}
Stepan Salenikovich0cf247d2015-07-24 17:36:32 -0400485
aviauff727952016-01-29 16:23:07 -0500486bool EdsContactBackend::removePerson(const Person *item)
487{
488 g_return_val_if_fail(client_.get(), false);
489
490 g_debug("removing person");
491
492 GError *error = NULL;
493
494 bool ret = e_book_client_remove_contact_by_uid_sync(
495 E_BOOK_CLIENT(client_.get()),
496 item->uid(),
497 cancellable_.get(),
498 &error
499 );
500
501 if(!ret) {
502 if(error) {
503 g_warning("could not delete contact: %s", error->message);
504 g_clear_error(&error);
505 }
506 else {
507 g_warning("could not delete contact");
508 }
509 }
510
511 return ret;
512}
513
Stepan Salenikovich0cf247d2015-07-24 17:36:32 -0400514bool EdsContactBackend::savePerson(const Person *item)
515{
516 g_return_val_if_fail(client_.get(), false);
517
518 g_debug("saving person");
519
520 auto contact = e_contact_new_from_vcard(item->toVCard().constData());
521 GError *error = NULL;
522
523 /* FIXME: this methods fails for a google addressbook, not clear if it is
524 * possible to edit a google address book... gnome contacts simply creates
525 * a local contact with the same uid */
526 bool ret = e_book_client_modify_contact_sync(
527 E_BOOK_CLIENT(client_.get()),
528 contact,
529 cancellable_.get(),
530 &error
531 );
532
533 if (!ret) {
534 if (error) {
535 g_warning("could not modify contact: %s", error->message);
536 g_clear_error(&error);
537 } else {
538 g_warning("could not modify contact");
539 }
540 }
541
542 g_object_unref(contact);
543
544 return ret;
545}