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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 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 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 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 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406
|
/* Ekiga -- A VoIP and Video-Conferencing application
* Copyright (C) 2000-2009 Damien Sandras <dsandras@seconix.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
*
*
* Ekiga is licensed under the GPL license and as a special exception,
* you have permission to link or otherwise combine this program with the
* programs OPAL, OpenH323 and PWLIB, and distribute the combination,
* without applying the requirements of the GNU GPL to the OPAL, OpenH323
* and PWLIB programs, as long as you do follow the requirements of the
* GNU GPL for all the rest of the software thus combined.
*/
/*
* evolution-book.cpp - description
* ------------------------------------------
* begin : written in 2007 by Julien Puydt
* copyright : (c) 2007 by Julien Puydt
* description : implementation of an evolution addressbook
*
*/
#include <string>
#include <glib/gi18n.h>
#include "form-request-simple.h"
#include "evolution-book.h"
#include "evolution-contact.h"
static void
on_view_contacts_added_c (EBook * /*ebook*/,
GList *contacts,
gpointer data)
{
((Evolution::Book *)data)->on_view_contacts_added (contacts);
}
void
Evolution::Book::on_view_contacts_added (GList *econtacts)
{
EContact *econtact = NULL;
int nbr = 0;
gchar* c_status = NULL;
for (; econtacts != NULL; econtacts = g_list_next (econtacts)) {
econtact = E_CONTACT (econtacts->data);
if (e_contact_get_const (econtact, E_CONTACT_FULL_NAME) != NULL) {
ContactPtr contact(new Evolution::Contact (services, book,
econtact));
add_contact (contact);
nbr++;
}
}
c_status = g_strdup_printf (ngettext ("%d user found", "%d users found", nbr),
nbr);
status = c_status;
g_free (c_status);
updated ();
}
static void
on_view_contacts_removed_c (EBook */*ebook*/,
GList *ids,
gpointer data)
{
((Evolution::Book *)data)->on_view_contacts_removed (ids);
}
class contacts_removed_helper
{
public:
contacts_removed_helper (GList* ids_): ids(ids_)
{}
~contacts_removed_helper ()
{
for (std::list<Evolution::ContactPtr>::iterator iter = dead_contacts.begin ();
iter != dead_contacts.end ();
++iter) {
(*iter)->removed ();
}
}
bool operator() (Ekiga::ContactPtr contact_)
{
Evolution::ContactPtr contact = boost::dynamic_pointer_cast<Evolution::Contact> (contact_);
bool result = true;
if (contact) {
for (GList* ptr = ids; ptr != NULL; ptr = g_list_next (ptr)) {
if (contact->get_id () == std::string ((gchar*)ptr->data)) {
dead_contacts.push_front (contact);
result = false;
}
}
}
return result;
}
private:
GList* ids;
std::list<Evolution::ContactPtr> dead_contacts;
};
void
Evolution::Book::on_view_contacts_removed (GList *ids)
{
contacts_removed_helper helper (ids);
visit_contacts (boost::ref (helper));
}
static void
on_view_contacts_changed_c (EBook */*ebook*/,
GList *econtacts,
gpointer data)
{
((Evolution::Book*)data)->on_view_contacts_changed (econtacts);
}
class contact_updated_helper
{
public:
contact_updated_helper (EContact* econtact_): econtact(econtact_)
{
id = (const gchar*)e_contact_get_const (econtact, E_CONTACT_UID);
}
bool operator() (Ekiga::ContactPtr contact_)
{
Evolution::ContactPtr contact = boost::dynamic_pointer_cast<Evolution::Contact> (contact_);
bool result = true;
if (contact && contact->get_id () == id) {
contact->update_econtact (econtact);
result = false;
}
return result;
}
private:
EContact* econtact;
std::string id;
};
void
Evolution::Book::on_view_contacts_changed (GList *econtacts)
{
for (; econtacts != NULL; econtacts = g_list_next (econtacts)) {
contact_updated_helper helper (E_CONTACT (econtacts->data));
visit_contacts (boost::ref (helper));
}
}
static void
on_book_view_obtained_c (EBook */*book*/,
EBookStatus status,
EBookView *view,
gpointer data)
{
((Evolution::Book*)data)->on_book_view_obtained (status, view);
}
void
Evolution::Book::on_book_view_obtained (EBookStatus _status,
EBookView *_view)
{
if (_status == E_BOOK_ERROR_OK) {
if (view != NULL)
g_object_unref (view);
view = _view;
/* no need for wrappers here : the view will only die with us */
g_object_ref (view);
g_signal_connect (view, "contacts-added",
G_CALLBACK (on_view_contacts_added_c), this);
g_signal_connect (view, "contacts-removed",
G_CALLBACK (on_view_contacts_removed_c), this);
g_signal_connect (view, "contacts-changed",
G_CALLBACK (on_view_contacts_changed_c), this);
e_book_view_start (view);
} else
removed ();
}
static void
on_book_opened_c (EBook */*book*/,
EBookStatus _status,
gpointer data)
{
((Evolution::Book*)data)->on_book_opened (_status);
}
void
Evolution::Book::on_book_opened (EBookStatus _status)
{
EBookQuery *query = NULL;
if (_status == E_BOOK_ERROR_OK) {
if (search_filter.empty ())
query = e_book_query_field_exists (E_CONTACT_FULL_NAME);
else
query = e_book_query_field_test (E_CONTACT_FULL_NAME,
E_BOOK_QUERY_CONTAINS,
search_filter.c_str ());
(void)e_book_async_get_book_view (book, query, NULL, 100,
on_book_view_obtained_c, this);
e_book_query_unref (query);
}
else {
book = NULL;
removed ();
}
}
Evolution::Book::Book (Ekiga::ServiceCore &_services,
EBook *_book)
: services(_services), book(_book), view(NULL)
{
g_object_ref (book);
refresh ();
}
Evolution::Book::~Book ()
{
if (book != NULL)
g_object_unref (book);
}
const std::string
Evolution::Book::get_name () const
{
ESource *source = NULL;
std::string result;
source = e_book_get_source (book);
if (source && E_IS_SOURCE (source))
#if EDS_CHECK_VERSION(3,5,3)
result = e_source_get_display_name (source);
#else
result = e_source_peek_name (source);
#endif
return result;
}
EBook *
Evolution::Book::get_ebook () const
{
return book;
}
bool
Evolution::Book::populate_menu (Ekiga::MenuBuilder &builder)
{
builder.add_action ("new", _("New _Contact"),
boost::bind (&Evolution::Book::new_contact_action, this));
return true;
}
void
Evolution::Book::set_search_filter (const std::string _search_filter)
{
search_filter = _search_filter;
refresh ();
}
const std::string
Evolution::Book::get_search_filter () const
{
return search_filter;
}
const std::string
Evolution::Book::get_status () const
{
return status;
}
void
Evolution::Book::refresh ()
{
remove_all_objects ();
/* we go */
if (e_book_is_opened (book))
on_book_opened_c (book, E_BOOK_ERROR_OK, this);
else
e_book_async_open (book, TRUE,
on_book_opened_c, this);
}
void
Evolution::Book::new_contact_action ()
{
boost::shared_ptr<Ekiga::FormRequestSimple> request = boost::shared_ptr<Ekiga::FormRequestSimple> (new Ekiga::FormRequestSimple (boost::bind (&Evolution::Book::on_new_contact_form_submitted, this, _1, _2)));
request->title (_("_New Contact"));
request->instructions (_("Please update the following fields:"));
request->text ("name", _("_Name:"), "", std::string ());
request->text ("video", _("VoIP _URI:"), "", std::string ());
request->text ("home", _("_Home phone:"), "", std::string ());
request->text ("work", _("_Office phone:"), "", std::string ());
request->text ("cell", _("_Cell phone:"), "", std::string ());
request->text ("pager", _("_Pager:"), "", std::string ());
questions (request);
}
void
Evolution::Book::set_econtact_attribute_value (EContact *econtact,
const std::string subtype,
const std::string value) const
{
EVCardAttribute *attribute = NULL;
EVCardAttributeParam *param = NULL;
attribute = e_vcard_attribute_new ("", EVC_TEL);
param = e_vcard_attribute_param_new (EVC_TYPE);
e_vcard_attribute_param_add_value (param, subtype.c_str ());
e_vcard_attribute_add_param (attribute, param);
e_vcard_attribute_add_value (attribute, value.c_str ());
e_vcard_add_attribute (E_VCARD (econtact), attribute);
}
void
Evolution::Book::on_new_contact_form_submitted (bool submitted,
Ekiga::Form &result)
{
if ( !submitted)
return;
EContact *econtact = NULL;
/* first check we have everything before using */
std::string name = result.text ("name");
std::string home = result.text ("home");
std::string cell = result.text ("cell");
std::string work = result.text ("work");
std::string pager = result.text ("pager");
std::string video = result.text ("video");
econtact = e_contact_new ();
e_contact_set (econtact, E_CONTACT_FULL_NAME, (gpointer)name.c_str ());
if ( !home.empty ())
set_econtact_attribute_value (econtact, "HOME", home);
if ( !cell.empty ())
set_econtact_attribute_value (econtact, "CELL", cell);
if ( !work.empty ())
set_econtact_attribute_value (econtact, "WORK", work);
if ( !pager.empty ())
set_econtact_attribute_value (econtact, "PAGER", pager);
if ( !video.empty ())
set_econtact_attribute_value (econtact, "VIDEO", video);
e_book_add_contact (book, econtact, NULL);
g_object_unref (econtact);
}
|