]> git.0d.be Git - empathy.git/blob - src/empathy.c
Add a Contact Map window
[empathy.git] / src / empathy.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2007-2008 Collabora Ltd.
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation; either version 2 of the
8  * License, or (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 GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public
16  * License along with this program; if not, write to the
17  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
18  * Boston, MA  02110-1301  USA
19  *
20  * Authors: Xavier Claessens <xclaesse@gmail.com>
21  */
22
23 #include <config.h>
24
25 #include <stdlib.h>
26 #include <errno.h>
27 #include <string.h>
28
29 #include <glib.h>
30 #include <glib/gi18n.h>
31 #include <gtk/gtk.h>
32 #include <gdk/gdkx.h>
33
34 #if HAVE_LIBCHAMPLAIN
35 #include <clutter-gtk/gtk-clutter-embed.h>
36 #endif
37
38 #include <libebook/e-book.h>
39 #include <libnotify/notify.h>
40
41 #include <telepathy-glib/util.h>
42 #include <libmissioncontrol/mc-account.h>
43 #include <libmissioncontrol/mission-control.h>
44
45 #include <libempathy/empathy-idle.h>
46 #include <libempathy/empathy-utils.h>
47 #include <libempathy/empathy-call-factory.h>
48 #include <libempathy/empathy-chatroom-manager.h>
49 #include <libempathy/empathy-account-manager.h>
50 #include <libempathy/empathy-dispatcher.h>
51 #include <libempathy/empathy-dispatch-operation.h>
52 #include <libempathy/empathy-log-manager.h>
53 #include <libempathy/empathy-tp-chat.h>
54 #include <libempathy/empathy-tp-call.h>
55
56 #include <libempathy-gtk/empathy-conf.h>
57 #include <libempathy-gtk/empathy-ui-utils.h>
58
59 #include "empathy-accounts-dialog.h"
60 #include "empathy-main-window.h"
61 #include "empathy-status-icon.h"
62 #include "empathy-call-window.h"
63 #include "empathy-chat-window.h"
64 #include "empathy-ft-manager.h"
65 #include "bacon-message-connection.h"
66
67 #include "extensions/extensions.h"
68
69 #define DEBUG_FLAG EMPATHY_DEBUG_OTHER
70 #include <libempathy/empathy-debug.h>
71
72 #include <gst/gst.h>
73
74 static BaconMessageConnection *connection = NULL;
75
76 static void
77 dispatch_cb (EmpathyDispatcher *dispatcher,
78              EmpathyDispatchOperation *operation,
79              gpointer           user_data)
80 {
81         GQuark channel_type;
82
83         channel_type = empathy_dispatch_operation_get_channel_type_id (operation);
84
85         if (channel_type == TP_IFACE_QUARK_CHANNEL_TYPE_TEXT) {
86                 EmpathyTpChat *tp_chat;
87                 EmpathyChat   *chat = NULL;
88                 const gchar   *id;
89
90                 tp_chat = EMPATHY_TP_CHAT (
91                         empathy_dispatch_operation_get_channel_wrapper (operation));
92
93                 id = empathy_tp_chat_get_id (tp_chat);
94                 if (!id) {
95                         EmpathyContact *contact;
96
97                         contact = empathy_tp_chat_get_remote_contact (tp_chat);
98                         if (contact) {
99                                 id = empathy_contact_get_id (contact);
100                         }
101                 }
102
103                 if (id) {
104                         EmpathyAccountManager *manager;
105                         TpConnection *connection;
106                         McAccount *account;
107
108                         manager = empathy_account_manager_dup_singleton ();
109                         connection = empathy_tp_chat_get_connection (tp_chat);
110                         account = empathy_account_manager_get_account (manager,
111                                                                        connection);
112                         chat = empathy_chat_window_find_chat (account, id);
113                         g_object_unref (manager);
114                 }
115
116                 if (chat) {
117                         empathy_chat_set_tp_chat (chat, tp_chat);
118                 } else {
119                         chat = empathy_chat_new (tp_chat);
120                 }
121
122                 empathy_chat_window_present_chat (chat);
123
124                 empathy_dispatch_operation_claim (operation);
125         } else if (channel_type == TP_IFACE_QUARK_CHANNEL_TYPE_STREAMED_MEDIA) {
126                 EmpathyCallFactory *factory;
127
128                 factory = empathy_call_factory_get ();
129                 empathy_call_factory_claim_channel (factory, operation);
130         } else if (channel_type == TP_IFACE_QUARK_CHANNEL_TYPE_FILE_TRANSFER) {
131                 EmpathyFTManager *ft_manager;
132                 EmpathyTpFile    *tp_file;
133
134                 ft_manager = empathy_ft_manager_dup_singleton ();
135                 tp_file = EMPATHY_TP_FILE (
136                         empathy_dispatch_operation_get_channel_wrapper (operation));
137                 empathy_ft_manager_add_tp_file (ft_manager, tp_file);
138                 empathy_dispatch_operation_claim (operation);
139                 g_object_unref (ft_manager);
140         }
141 }
142
143 static void
144 service_ended_cb (MissionControl *mc,
145                   gpointer        user_data)
146 {
147         DEBUG ("Mission Control stopped");
148 }
149
150 static void
151 operation_error_cb (MissionControl *mc,
152                     guint           operation_id,
153                     guint           error_code,
154                     gpointer        user_data)
155 {
156         const gchar *message;
157
158         switch (error_code) {
159         case MC_DISCONNECTED_ERROR:
160                 message = "Disconnected";
161                 break;
162         case MC_INVALID_HANDLE_ERROR:
163                 message = "Invalid handle";
164                 break;
165         case MC_NO_MATCHING_CONNECTION_ERROR:
166                 message = "No matching connection";
167                 break;
168         case MC_INVALID_ACCOUNT_ERROR:
169                 message = "Invalid account";
170                 break;
171         case MC_PRESENCE_FAILURE_ERROR:
172                 message = "Presence failure";
173                 break;
174         case MC_NO_ACCOUNTS_ERROR:
175                 message = "No accounts";
176                 break;
177         case MC_NETWORK_ERROR:
178                 message = "Network error";
179                 break;
180         case MC_CONTACT_DOES_NOT_SUPPORT_VOICE_ERROR:
181                 message = "Contact does not support voice";
182                 break;
183         case MC_LOWMEM_ERROR:
184                 message = "Lowmem";
185                 break;
186         case MC_CHANNEL_REQUEST_GENERIC_ERROR:
187                 message = "Channel request generic error";
188                 break;
189         case MC_CHANNEL_BANNED_ERROR:
190                 message = "Channel banned";
191                 break;
192         case MC_CHANNEL_FULL_ERROR:
193                 message = "Channel full";
194                 break;
195         case MC_CHANNEL_INVITE_ONLY_ERROR:
196                 message = "Channel invite only";
197                 break;
198         default:
199                 message = "Unknown error code";
200         }
201
202         DEBUG ("Error during operation %d: %s", operation_id, message);
203 }
204
205 static void
206 use_nm_notify_cb (EmpathyConf *conf,
207                   const gchar *key,
208                   gpointer     user_data)
209 {
210         EmpathyIdle *idle = user_data;
211         gboolean     use_nm;
212
213         if (empathy_conf_get_bool (conf, key, &use_nm)) {
214                 empathy_idle_set_use_nm (idle, use_nm);
215         }
216 }
217
218 static void
219 create_salut_account (void)
220 {
221         McProfile  *profile;
222         McProtocol *protocol;
223         gboolean    salut_created = FALSE;
224         McAccount  *account;
225         GList      *accounts;
226         EBook      *book;
227         EContact   *contact;
228         gchar      *nickname = NULL;
229         gchar      *first_name = NULL;
230         gchar      *last_name = NULL;
231         gchar      *email = NULL;
232         gchar      *jid = NULL;
233         GError     *error = NULL;
234
235         /* Check if we already created a salut account */
236         empathy_conf_get_bool (empathy_conf_get (),
237                                EMPATHY_PREFS_SALUT_ACCOUNT_CREATED,
238                                &salut_created);
239         if (salut_created) {
240                 return;
241         }
242
243         DEBUG ("Try to add a salut account...");
244
245         /* Check if the salut CM is installed */
246         profile = mc_profile_lookup ("salut");
247         if (!profile) {
248                 DEBUG ("No salut profile");
249                 return;
250         }
251         protocol = mc_profile_get_protocol (profile);
252         if (!protocol) {
253                 DEBUG ("Salut not installed");
254                 g_object_unref (profile);
255                 return;
256         }
257         g_object_unref (protocol);
258
259         /* Get self EContact from EDS */
260         if (!e_book_get_self (&contact, &book, &error)) {
261                 DEBUG ("Failed to get self econtact: %s",
262                         error ? error->message : "No error given");
263                 g_clear_error (&error);
264                 g_object_unref (profile);
265                 return;
266         }
267
268         empathy_conf_set_bool (empathy_conf_get (),
269                                EMPATHY_PREFS_SALUT_ACCOUNT_CREATED,
270                                TRUE);
271
272         /* Check if there is already a salut account */
273         accounts = mc_accounts_list_by_profile (profile);
274         if (accounts) {
275                 DEBUG ("There is already a salut account");
276                 mc_accounts_list_free (accounts);
277                 g_object_unref (profile);
278                 return;
279         }
280
281         account = mc_account_create (profile);
282         mc_account_set_display_name (account, _("People nearby"));
283         
284         nickname = e_contact_get (contact, E_CONTACT_NICKNAME);
285         first_name = e_contact_get (contact, E_CONTACT_GIVEN_NAME);
286         last_name = e_contact_get (contact, E_CONTACT_FAMILY_NAME);
287         email = e_contact_get (contact, E_CONTACT_EMAIL_1);
288         jid = e_contact_get (contact, E_CONTACT_IM_JABBER_HOME_1);
289         
290         if (!tp_strdiff (nickname, "nickname")) {
291                 g_free (nickname);
292                 nickname = NULL;
293         }
294
295         DEBUG ("Salut account created:\nnickname=%s\nfirst-name=%s\n"
296                 "last-name=%s\nemail=%s\njid=%s\n",
297                 nickname, first_name, last_name, email, jid);
298
299         mc_account_set_param_string (account, "nickname", nickname ? nickname : "");
300         mc_account_set_param_string (account, "first-name", first_name ? first_name : "");
301         mc_account_set_param_string (account, "last-name", last_name ? last_name : "");
302         mc_account_set_param_string (account, "email", email ? email : "");
303         mc_account_set_param_string (account, "jid", jid ? jid : "");
304
305         g_free (nickname);
306         g_free (first_name);
307         g_free (last_name);
308         g_free (email);
309         g_free (jid);
310         g_object_unref (account);
311         g_object_unref (profile);
312         g_object_unref (contact);
313         g_object_unref (book);
314 }
315
316 /* The code that handles single-instance and startup notification is
317  * copied from gedit.
318  *
319  * Copyright (C) 2005 - Paolo Maggi
320  */
321 static void
322 on_bacon_message_received (const char *message,
323                            gpointer    data)
324 {
325         GtkWidget *window = data;
326         guint32    startup_timestamp;
327
328         g_return_if_fail (message != NULL);
329
330         DEBUG ("Other instance launched, presenting the main window. message='%s'",
331                 message);
332
333         if (strcmp (message, "accounts") == 0) {
334                 /* accounts dialog requested */
335                 empathy_accounts_dialog_show (GTK_WINDOW (window), NULL);
336         } else {
337                 startup_timestamp = atoi (message);
338
339                 /* Set the proper interaction time on the window.
340                  * Fall back to roundtripping to the X server when we
341                  * don't have the timestamp, e.g. when launched from
342                  * terminal. We also need to make sure that the window
343                  * has been realized otherwise it will not work. lame. */
344                 if (startup_timestamp == 0) {
345                         /* Work if launched from the terminal */
346                         DEBUG ("Using X server timestamp as a fallback");
347
348                         if (!GTK_WIDGET_REALIZED (window)) {
349                                 gtk_widget_realize (GTK_WIDGET (window));
350                         }
351
352                         startup_timestamp = gdk_x11_get_server_time (window->window);
353                 }
354
355                 gtk_window_present_with_time (GTK_WINDOW (window), startup_timestamp);
356         }
357 }
358
359 static guint32
360 get_startup_timestamp ()
361 {
362         const gchar *startup_id_env;
363         gchar       *startup_id = NULL;
364         gchar       *time_str;
365         gchar       *end;
366         gulong       retval = 0;
367
368         /* we don't unset the env, since startup-notification
369          * may still need it */
370         startup_id_env = g_getenv ("DESKTOP_STARTUP_ID");
371         if (startup_id_env == NULL) {
372                 goto out;
373         }
374
375         startup_id = g_strdup (startup_id_env);
376
377         time_str = g_strrstr (startup_id, "_TIME");
378         if (time_str == NULL) {
379                 goto out;
380         }
381
382         errno = 0;
383
384         /* Skip past the "_TIME" part */
385         time_str += 5;
386
387         retval = strtoul (time_str, &end, 0);
388         if (end == time_str || errno != 0)
389                 retval = 0;
390
391  out:
392         g_free (startup_id);
393
394         return (retval > 0) ? retval : 0;
395 }
396
397 static gboolean
398 show_version_cb (const char *option_name,
399                  const char *value,
400                  gpointer data,
401                  GError **error)
402 {
403         g_print ("%s\n", PACKAGE_STRING);
404
405         exit (EXIT_SUCCESS);
406
407         return FALSE;
408 }
409
410 static void
411 new_call_handler_cb (EmpathyCallFactory *factory, EmpathyCallHandler *handler,
412         gboolean outgoing, gpointer user_data)
413 {
414                 EmpathyCallWindow *window;
415
416                 window = empathy_call_window_new (handler);
417                 gtk_widget_show (GTK_WIDGET (window));
418 }
419
420 int
421 main (int argc, char *argv[])
422 {
423         guint32            startup_timestamp;
424         EmpathyStatusIcon *icon;
425         EmpathyDispatcher *dispatcher;
426         EmpathyLogManager *log_manager;
427         EmpathyChatroomManager *chatroom_manager;
428         EmpathyFTManager  *ft_manager;
429         EmpathyCallFactory *call_factory;
430         GtkWidget         *window;
431         MissionControl    *mc;
432         EmpathyIdle       *idle;
433         gboolean           autoconnect = TRUE;
434         gboolean           no_connect = FALSE;
435         gboolean           hide_contact_list = FALSE;
436         gboolean           accounts_dialog = FALSE;
437         GError            *error = NULL;
438         GOptionEntry       options[] = {
439                 { "no-connect", 'n',
440                   0, G_OPTION_ARG_NONE, &no_connect,
441                   N_("Don't connect on startup"),
442                   NULL },
443                 { "hide-contact-list", 'h',
444                   0, G_OPTION_ARG_NONE, &hide_contact_list,
445                   N_("Don't show the contact list on startup"),
446                   NULL },
447                 { "accounts", 'a',
448                   0, G_OPTION_ARG_NONE, &accounts_dialog,
449                   N_("Show the accounts dialog"),
450                   NULL },
451                 { "version", 'v',
452                   G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, show_version_cb, NULL, NULL },
453                 { NULL }
454         };
455
456         /* Init */
457         g_thread_init (NULL);
458         empathy_init ();
459
460         if (!gtk_init_with_args (&argc, &argv,
461                                  N_("- Empathy Instant Messenger"),
462                                  options, GETTEXT_PACKAGE, &error)) {
463                 g_warning ("Error in empathy init: %s", error->message);
464                 return EXIT_FAILURE;
465         }
466
467         empathy_gtk_init ();
468         g_set_application_name (_(PACKAGE_NAME));
469         g_setenv ("PULSE_PROP_media.role", "phone", TRUE);
470
471         gst_init (&argc, &argv);
472
473 #if HAVE_LIBCHAMPLAIN
474         gtk_clutter_init(&argc, &argv);
475 #endif
476
477         gtk_window_set_default_icon_name ("empathy");
478         textdomain (GETTEXT_PACKAGE);
479
480         /* Setting up the bacon connection */
481         startup_timestamp = get_startup_timestamp ();
482         connection = bacon_message_connection_new ("empathy");
483         if (connection != NULL) {
484                 if (!bacon_message_connection_get_is_server (connection)) {
485                         gchar *message;
486
487                         if (accounts_dialog) {
488                                 DEBUG ("Showing accounts dialog from existing Empathy instance");
489
490                                 message = g_strdup ("accounts");
491
492                         } else {
493
494                                 DEBUG ("Activating existing instance");
495
496                                 message = g_strdup_printf ("%" G_GUINT32_FORMAT,
497                                                            startup_timestamp);
498                         }
499
500                         bacon_message_connection_send (connection, message);
501
502                         /* We never popup a window, so tell startup-notification
503                          * that we are done. */
504                         gdk_notify_startup_complete ();
505
506                         g_free (message);
507                         bacon_message_connection_free (connection);
508
509                         return EXIT_SUCCESS;
510                 }
511         } else {
512                 g_warning ("Cannot create the 'empathy' bacon connection.");
513         }
514
515         /* Setting up MC */
516         mc = empathy_mission_control_dup_singleton ();
517         g_signal_connect (mc, "ServiceEnded",
518                           G_CALLBACK (service_ended_cb),
519                           NULL);
520         g_signal_connect (mc, "Error",
521                           G_CALLBACK (operation_error_cb),
522                           NULL);
523
524         if (accounts_dialog) {
525                 GtkWidget *dialog;
526
527                 dialog = empathy_accounts_dialog_show (NULL, NULL);
528                 g_signal_connect (dialog, "destroy",
529                                   G_CALLBACK (gtk_main_quit),
530                                   NULL);
531
532                 gtk_main ();
533                 return 0;
534         }
535
536         /* Setting up Idle */
537         idle = empathy_idle_dup_singleton ();
538         empathy_idle_set_auto_away (idle, TRUE);
539         use_nm_notify_cb (empathy_conf_get (), EMPATHY_PREFS_USE_NM, idle);
540         empathy_conf_notify_add (empathy_conf_get (), EMPATHY_PREFS_USE_NM,
541                                  use_nm_notify_cb, idle);
542
543         /* Autoconnect */
544         empathy_conf_get_bool (empathy_conf_get (),
545                                EMPATHY_PREFS_AUTOCONNECT,
546                                &autoconnect);
547         if (autoconnect && ! no_connect &&
548             empathy_idle_get_state (idle) <= MC_PRESENCE_OFFLINE) {
549                 empathy_idle_set_state (idle, MC_PRESENCE_AVAILABLE);
550         }
551         
552         create_salut_account ();
553
554         /* Setting up UI */
555         window = empathy_main_window_show ();
556         icon = empathy_status_icon_new (GTK_WINDOW (window), hide_contact_list);
557
558         if (connection) {
559                 /* We se the callback here because we need window */
560                 bacon_message_connection_set_callback (connection,
561                                                        on_bacon_message_received,
562                                                        window);
563         }
564
565         /* Handle channels */
566         dispatcher = empathy_dispatcher_dup_singleton ();
567         g_signal_connect (dispatcher, "dispatch", G_CALLBACK (dispatch_cb), NULL);
568
569         /* Logging */
570         log_manager = empathy_log_manager_dup_singleton ();
571         empathy_log_manager_observe (log_manager, dispatcher);
572
573         chatroom_manager = empathy_chatroom_manager_dup_singleton (NULL);
574         empathy_chatroom_manager_observe (chatroom_manager, dispatcher);
575
576         ft_manager = empathy_ft_manager_dup_singleton ();
577
578         notify_init (_(PACKAGE_NAME));
579         /* Create the call factory */
580         call_factory = empathy_call_factory_initialise ();
581         g_signal_connect (G_OBJECT (call_factory), "new-call-handler",
582                 G_CALLBACK (new_call_handler_cb), NULL);
583
584         gtk_main ();
585
586         empathy_idle_set_state (idle, MC_PRESENCE_OFFLINE);
587
588         g_object_unref (mc);
589         g_object_unref (idle);
590         g_object_unref (icon);
591         g_object_unref (log_manager);
592         g_object_unref (dispatcher);
593         g_object_unref (chatroom_manager);
594         g_object_unref (ft_manager);
595
596         notify_uninit ();
597
598         return EXIT_SUCCESS;
599 }
600