]> git.0d.be Git - empathy.git/blob - src/empathy.c
Merge commit 'jtellier/video-call-button-sensitivity'
[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/dbus.h>
42 #include <telepathy-glib/util.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-debugger.h>
51 #include <libempathy/empathy-dispatcher.h>
52 #include <libempathy/empathy-dispatch-operation.h>
53 #include <libempathy/empathy-log-manager.h>
54 #include <libempathy/empathy-ft-factory.h>
55 #include <libempathy/empathy-tp-chat.h>
56 #include <libempathy/empathy-tp-call.h>
57
58 #include <libempathy-gtk/empathy-conf.h>
59 #include <libempathy-gtk/empathy-ui-utils.h>
60 #include <libempathy-gtk/empathy-location-manager.h>
61
62 #include "empathy-accounts-dialog.h"
63 #include "empathy-main-window.h"
64 #include "empathy-status-icon.h"
65 #include "empathy-call-window.h"
66 #include "empathy-chat-window.h"
67 #include "empathy-ft-manager.h"
68 #include "bacon-message-connection.h"
69
70 #include "extensions/extensions.h"
71
72 #define DEBUG_FLAG EMPATHY_DEBUG_OTHER
73 #include <libempathy/empathy-debug.h>
74
75 #include <gst/gst.h>
76
77 static BaconMessageConnection *connection = NULL;
78
79 static void
80 dispatch_cb (EmpathyDispatcher *dispatcher,
81              EmpathyDispatchOperation *operation,
82              gpointer           user_data)
83 {
84         GQuark channel_type;
85
86         channel_type = empathy_dispatch_operation_get_channel_type_id (operation);
87
88         if (channel_type == TP_IFACE_QUARK_CHANNEL_TYPE_TEXT) {
89                 EmpathyTpChat *tp_chat;
90                 EmpathyChat   *chat = NULL;
91                 const gchar   *id;
92
93                 tp_chat = EMPATHY_TP_CHAT (
94                         empathy_dispatch_operation_get_channel_wrapper (operation));
95
96                 id = empathy_tp_chat_get_id (tp_chat);
97                 if (!id) {
98                         EmpathyContact *contact;
99
100                         contact = empathy_tp_chat_get_remote_contact (tp_chat);
101                         if (contact) {
102                                 id = empathy_contact_get_id (contact);
103                         }
104                 }
105
106                 if (id) {
107                         EmpathyAccountManager *manager;
108                         TpConnection *connection;
109                         EmpathyAccount *account;
110
111                         manager = empathy_account_manager_dup_singleton ();
112                         connection = empathy_tp_chat_get_connection (tp_chat);
113                         account = empathy_account_manager_get_account (manager,
114                                                                        connection);
115                         chat = empathy_chat_window_find_chat (account, id);
116                         g_object_unref (manager);
117                 }
118
119                 if (chat) {
120                         empathy_chat_set_tp_chat (chat, tp_chat);
121                 } else {
122                         chat = empathy_chat_new (tp_chat);
123                 }
124
125                 empathy_chat_window_present_chat (chat);
126
127                 empathy_dispatch_operation_claim (operation);
128         } else if (channel_type == TP_IFACE_QUARK_CHANNEL_TYPE_STREAMED_MEDIA) {
129                 EmpathyCallFactory *factory;
130
131                 factory = empathy_call_factory_get ();
132                 empathy_call_factory_claim_channel (factory, operation);
133         } else if (channel_type == TP_IFACE_QUARK_CHANNEL_TYPE_FILE_TRANSFER) {
134                 EmpathyFTFactory *factory;
135
136                 factory = empathy_ft_factory_dup_singleton ();
137
138                 /* if the operation is not incoming, don't claim it,
139                  * as it might have been triggered by another client, and
140                  * we are observing it.
141                  */
142                 if (empathy_dispatch_operation_is_incoming (operation)) {
143                         empathy_ft_factory_claim_channel (factory, operation);
144                 }
145         }
146 }
147
148 static void
149 service_ended_cb (MissionControl *mc,
150                   gpointer        user_data)
151 {
152         DEBUG ("Mission Control stopped");
153 }
154
155 static void
156 operation_error_cb (MissionControl *mc,
157                     guint           operation_id,
158                     guint           error_code,
159                     gpointer        user_data)
160 {
161         const gchar *message;
162
163         switch (error_code) {
164         case MC_DISCONNECTED_ERROR:
165                 message = "Disconnected";
166                 break;
167         case MC_INVALID_HANDLE_ERROR:
168                 message = "Invalid handle";
169                 break;
170         case MC_NO_MATCHING_CONNECTION_ERROR:
171                 message = "No matching connection";
172                 break;
173         case MC_INVALID_ACCOUNT_ERROR:
174                 message = "Invalid account";
175                 break;
176         case MC_PRESENCE_FAILURE_ERROR:
177                 message = "Presence failure";
178                 break;
179         case MC_NO_ACCOUNTS_ERROR:
180                 message = "No accounts";
181                 break;
182         case MC_NETWORK_ERROR:
183                 message = "Network error";
184                 break;
185         case MC_CONTACT_DOES_NOT_SUPPORT_VOICE_ERROR:
186                 message = "Contact does not support voice";
187                 break;
188         case MC_LOWMEM_ERROR:
189                 message = "Lowmem";
190                 break;
191         case MC_CHANNEL_REQUEST_GENERIC_ERROR:
192                 message = "Channel request generic error";
193                 break;
194         case MC_CHANNEL_BANNED_ERROR:
195                 message = "Channel banned";
196                 break;
197         case MC_CHANNEL_FULL_ERROR:
198                 message = "Channel full";
199                 break;
200         case MC_CHANNEL_INVITE_ONLY_ERROR:
201                 message = "Channel invite only";
202                 break;
203         default:
204                 message = "Unknown error code";
205         }
206
207         DEBUG ("Error during operation %d: %s", operation_id, message);
208 }
209
210 static void
211 use_nm_notify_cb (EmpathyConf *conf,
212                   const gchar *key,
213                   gpointer     user_data)
214 {
215         EmpathyIdle *idle = user_data;
216         gboolean     use_nm;
217
218         if (empathy_conf_get_bool (conf, key, &use_nm)) {
219                 empathy_idle_set_use_nm (idle, use_nm);
220         }
221 }
222
223 static void
224 create_salut_account (void)
225 {
226         McProfile  *profile;
227         McProtocol *protocol;
228         gboolean    salut_created = FALSE;
229         EmpathyAccount  *account;
230         EmpathyAccountManager *account_manager;
231         GList      *accounts;
232         EBook      *book;
233         EContact   *contact;
234         gchar      *nickname = NULL;
235         gchar      *first_name = NULL;
236         gchar      *last_name = NULL;
237         gchar      *email = NULL;
238         gchar      *jid = NULL;
239         GError     *error = NULL;
240
241         /* Check if we already created a salut account */
242         empathy_conf_get_bool (empathy_conf_get (),
243                                EMPATHY_PREFS_SALUT_ACCOUNT_CREATED,
244                                &salut_created);
245         if (salut_created) {
246                 return;
247         }
248
249         DEBUG ("Try to add a salut account...");
250
251         /* Check if the salut CM is installed */
252         profile = mc_profile_lookup ("salut");
253         if (!profile) {
254                 DEBUG ("No salut profile");
255                 return;
256         }
257         protocol = mc_profile_get_protocol (profile);
258         if (!protocol) {
259                 DEBUG ("Salut not installed");
260                 g_object_unref (profile);
261                 return;
262         }
263         g_object_unref (protocol);
264
265         /* Get self EContact from EDS */
266         if (!e_book_get_self (&contact, &book, &error)) {
267                 DEBUG ("Failed to get self econtact: %s",
268                         error ? error->message : "No error given");
269                 g_clear_error (&error);
270                 g_object_unref (profile);
271                 return;
272         }
273
274         empathy_conf_set_bool (empathy_conf_get (),
275                                EMPATHY_PREFS_SALUT_ACCOUNT_CREATED,
276                                TRUE);
277
278         /* Check if there is already a salut account */
279         accounts = mc_accounts_list_by_profile (profile);
280         if (accounts) {
281                 DEBUG ("There is already a salut account");
282                 mc_accounts_list_free (accounts);
283                 g_object_unref (profile);
284                 return;
285         }
286
287         account_manager = empathy_account_manager_dup_singleton ();
288         account = empathy_account_manager_create (account_manager, profile);
289         empathy_account_set_display_name (account, _("People nearby"));
290         g_object_unref (account_manager);
291
292         nickname = e_contact_get (contact, E_CONTACT_NICKNAME);
293         first_name = e_contact_get (contact, E_CONTACT_GIVEN_NAME);
294         last_name = e_contact_get (contact, E_CONTACT_FAMILY_NAME);
295         email = e_contact_get (contact, E_CONTACT_EMAIL_1);
296         jid = e_contact_get (contact, E_CONTACT_IM_JABBER_HOME_1);
297
298         if (!tp_strdiff (nickname, "nickname")) {
299                 g_free (nickname);
300                 nickname = NULL;
301         }
302
303         DEBUG ("Salut account created:\nnickname=%s\nfirst-name=%s\n"
304                 "last-name=%s\nemail=%s\njid=%s\n",
305                 nickname, first_name, last_name, email, jid);
306
307         empathy_account_set_param_string (account, "nickname", nickname ? nickname : "");
308         empathy_account_set_param_string (account, "first-name", first_name ? first_name : "");
309         empathy_account_set_param_string (account, "last-name", last_name ? last_name : "");
310         empathy_account_set_param_string (account, "email", email ? email : "");
311         empathy_account_set_param_string (account, "jid", jid ? jid : "");
312
313         g_free (nickname);
314         g_free (first_name);
315         g_free (last_name);
316         g_free (email);
317         g_free (jid);
318         g_object_unref (account);
319         g_object_unref (profile);
320         g_object_unref (contact);
321         g_object_unref (book);
322 }
323
324 /* The code that handles single-instance and startup notification is
325  * copied from gedit.
326  *
327  * Copyright (C) 2005 - Paolo Maggi
328  */
329 static void
330 on_bacon_message_received (const char *message,
331                            gpointer    data)
332 {
333         GtkWidget *window = data;
334         guint32    startup_timestamp;
335
336         g_return_if_fail (message != NULL);
337
338         DEBUG ("Other instance launched, presenting the main window. message='%s'",
339                 message);
340
341         if (strcmp (message, "accounts") == 0) {
342                 /* accounts dialog requested */
343                 empathy_accounts_dialog_show (GTK_WINDOW (window), NULL);
344         } else {
345                 startup_timestamp = atoi (message);
346
347                 /* Set the proper interaction time on the window.
348                  * Fall back to roundtripping to the X server when we
349                  * don't have the timestamp, e.g. when launched from
350                  * terminal. We also need to make sure that the window
351                  * has been realized otherwise it will not work. lame. */
352                 if (startup_timestamp == 0) {
353                         /* Work if launched from the terminal */
354                         DEBUG ("Using X server timestamp as a fallback");
355
356                         if (!GTK_WIDGET_REALIZED (window)) {
357                                 gtk_widget_realize (GTK_WIDGET (window));
358                         }
359
360                         startup_timestamp = gdk_x11_get_server_time (gtk_widget_get_window (window));
361                 }
362
363                 gtk_window_present_with_time (GTK_WINDOW (window), startup_timestamp);
364         }
365 }
366
367 static guint32
368 get_startup_timestamp ()
369 {
370         const gchar *startup_id_env;
371         gchar       *startup_id = NULL;
372         gchar       *time_str;
373         gchar       *end;
374         gulong       retval = 0;
375
376         /* we don't unset the env, since startup-notification
377          * may still need it */
378         startup_id_env = g_getenv ("DESKTOP_STARTUP_ID");
379         if (startup_id_env == NULL) {
380                 goto out;
381         }
382
383         startup_id = g_strdup (startup_id_env);
384
385         time_str = g_strrstr (startup_id, "_TIME");
386         if (time_str == NULL) {
387                 goto out;
388         }
389
390         errno = 0;
391
392         /* Skip past the "_TIME" part */
393         time_str += 5;
394
395         retval = strtoul (time_str, &end, 0);
396         if (end == time_str || errno != 0)
397                 retval = 0;
398
399  out:
400         g_free (startup_id);
401
402         return (retval > 0) ? retval : 0;
403 }
404
405 static gboolean
406 show_version_cb (const char *option_name,
407                  const char *value,
408                  gpointer data,
409                  GError **error)
410 {
411         g_print ("%s\n", PACKAGE_STRING);
412
413         exit (EXIT_SUCCESS);
414
415         return FALSE;
416 }
417
418 static void
419 new_incoming_transfer_cb (EmpathyFTFactory *factory,
420                           EmpathyFTHandler *handler,
421                           GError *error,
422                           gpointer user_data)
423 {
424         if (error) {
425                 empathy_ft_manager_display_error (handler, error);
426         } else {
427                 empathy_receive_file_with_file_chooser (handler);
428         }
429 }
430
431 static void
432 new_ft_handler_cb (EmpathyFTFactory *factory,
433                    EmpathyFTHandler *handler,
434                    GError *error,
435                    gpointer user_data)
436 {
437         if (error) {
438                 empathy_ft_manager_display_error (handler, error);
439         } else {
440                 empathy_ft_manager_add_handler (handler);
441         }
442
443         g_object_unref (handler);
444 }
445
446 static void
447 new_call_handler_cb (EmpathyCallFactory *factory, EmpathyCallHandler *handler,
448         gboolean outgoing, gpointer user_data)
449 {
450         EmpathyCallWindow *window;
451
452         window = empathy_call_window_new (handler);
453         gtk_widget_show (GTK_WIDGET (window));
454 }
455
456 #ifdef ENABLE_DEBUG
457 static void
458 default_log_handler (const gchar *log_domain,
459     GLogLevelFlags log_level,
460     const gchar *message,
461     gpointer user_data)
462 {
463         g_log_default_handler (log_domain, log_level, message, NULL);
464
465         /* G_LOG_DOMAIN = "empathy". No need to send empathy messages to the
466          * debugger as they already have in empathy_debug. */
467         if (log_level != G_LOG_LEVEL_DEBUG
468             || tp_strdiff (log_domain, G_LOG_DOMAIN)) {
469                 EmpathyDebugger *dbg;
470                 GTimeVal now;
471
472                 dbg = empathy_debugger_get_singleton ();
473                 g_get_current_time (&now);
474
475                 empathy_debugger_add_message (dbg, &now, log_domain,
476                                               log_level, message);
477         }
478 }
479 #endif /* ENABLE_DEBUG */
480
481 int
482 main (int argc, char *argv[])
483 {
484         guint32            startup_timestamp;
485 #if HAVE_GEOCLUE
486         EmpathyLocationManager *location_manager = NULL;
487 #endif
488         EmpathyStatusIcon *icon;
489         EmpathyDispatcher *dispatcher;
490         EmpathyLogManager *log_manager;
491         EmpathyChatroomManager *chatroom_manager;
492         EmpathyCallFactory *call_factory;
493         EmpathyFTFactory  *ft_factory;
494         GtkWidget         *window;
495         MissionControl    *mc;
496         EmpathyIdle       *idle;
497         gboolean           autoconnect = TRUE;
498         gboolean           no_connect = FALSE;
499         gboolean           hide_contact_list = FALSE;
500         gboolean           accounts_dialog = FALSE;
501         GError            *error = NULL;
502         TpDBusDaemon      *dbus_daemon;
503         GOptionEntry       options[] = {
504                 { "no-connect", 'n',
505                   0, G_OPTION_ARG_NONE, &no_connect,
506                   N_("Don't connect on startup"),
507                   NULL },
508                 { "hide-contact-list", 'h',
509                   0, G_OPTION_ARG_NONE, &hide_contact_list,
510                   N_("Don't show the contact list on startup"),
511                   NULL },
512                 { "accounts", 'a',
513                   0, G_OPTION_ARG_NONE, &accounts_dialog,
514                   N_("Show the accounts dialog"),
515                   NULL },
516                 { "version", 'v',
517                   G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, show_version_cb, NULL, NULL },
518                 { NULL }
519         };
520
521         /* Init */
522         g_thread_init (NULL);
523         empathy_init ();
524
525         if (!gtk_init_with_args (&argc, &argv,
526                                  N_("- Empathy Instant Messenger"),
527                                  options, GETTEXT_PACKAGE, &error)) {
528                 g_warning ("Error in empathy init: %s", error->message);
529                 return EXIT_FAILURE;
530         }
531
532         empathy_gtk_init ();
533         g_set_application_name (_(PACKAGE_NAME));
534         g_setenv ("PULSE_PROP_media.role", "phone", TRUE);
535
536         gst_init (&argc, &argv);
537
538 #if HAVE_LIBCHAMPLAIN
539         gtk_clutter_init (&argc, &argv);
540 #endif
541
542         gtk_window_set_default_icon_name ("empathy");
543         textdomain (GETTEXT_PACKAGE);
544
545 #ifdef ENABLE_DEBUG
546         /* Set up debugger */
547         g_log_set_default_handler (default_log_handler, NULL);
548 #endif
549
550         /* Setting up the bacon connection */
551         startup_timestamp = get_startup_timestamp ();
552         connection = bacon_message_connection_new ("empathy");
553         if (connection != NULL) {
554                 if (!bacon_message_connection_get_is_server (connection)) {
555                         gchar *message;
556
557                         if (accounts_dialog) {
558                                 DEBUG ("Showing accounts dialog from existing Empathy instance");
559
560                                 message = g_strdup ("accounts");
561
562                         } else {
563
564                                 DEBUG ("Activating existing instance");
565
566                                 message = g_strdup_printf ("%" G_GUINT32_FORMAT,
567                                                            startup_timestamp);
568                         }
569
570                         bacon_message_connection_send (connection, message);
571
572                         /* We never popup a window, so tell startup-notification
573                          * that we are done. */
574                         gdk_notify_startup_complete ();
575
576                         g_free (message);
577                         bacon_message_connection_free (connection);
578
579                         return EXIT_SUCCESS;
580                 }
581         } else {
582                 g_warning ("Cannot create the 'empathy' bacon connection.");
583         }
584
585         /* Take well-known name */
586         dbus_daemon = tp_dbus_daemon_dup (&error);
587         if (error == NULL) {
588                 if (!tp_dbus_daemon_request_name (dbus_daemon,
589                                                   "org.gnome.Empathy",
590                                                   TRUE, &error)) {
591                         DEBUG ("Failed to request well-known name: %s",
592                                error ? error->message : "no message");
593                         g_clear_error (&error);
594                 }
595                 g_object_unref (dbus_daemon);
596         } else {
597                 DEBUG ("Failed to dup dbus daemon: %s",
598                        error ? error->message : "no message");
599                 g_clear_error (&error);
600         }
601
602         /* Setting up MC */
603         mc = empathy_mission_control_dup_singleton ();
604         g_signal_connect (mc, "ServiceEnded",
605                           G_CALLBACK (service_ended_cb),
606                           NULL);
607         g_signal_connect (mc, "Error",
608                           G_CALLBACK (operation_error_cb),
609                           NULL);
610
611         if (accounts_dialog) {
612                 GtkWidget *dialog;
613
614                 dialog = empathy_accounts_dialog_show (NULL, NULL);
615                 g_signal_connect (dialog, "destroy",
616                                   G_CALLBACK (gtk_main_quit),
617                                   NULL);
618
619                 gtk_main ();
620                 return 0;
621         }
622
623         /* Setting up Idle */
624         idle = empathy_idle_dup_singleton ();
625         empathy_idle_set_auto_away (idle, TRUE);
626         use_nm_notify_cb (empathy_conf_get (), EMPATHY_PREFS_USE_NM, idle);
627         empathy_conf_notify_add (empathy_conf_get (), EMPATHY_PREFS_USE_NM,
628                                  use_nm_notify_cb, idle);
629
630         /* Autoconnect */
631         empathy_conf_get_bool (empathy_conf_get (),
632                                EMPATHY_PREFS_AUTOCONNECT,
633                                &autoconnect);
634         if (autoconnect && ! no_connect &&
635                 tp_connection_presence_type_cmp_availability (empathy_idle_get_state
636                         (idle), TP_CONNECTION_PRESENCE_TYPE_OFFLINE) <= 0) {
637                 empathy_idle_set_state (idle, MC_PRESENCE_AVAILABLE);
638         }
639
640         create_salut_account ();
641
642         /* Setting up UI */
643         window = empathy_main_window_show ();
644         icon = empathy_status_icon_new (GTK_WINDOW (window), hide_contact_list);
645
646         if (connection) {
647                 /* We se the callback here because we need window */
648                 bacon_message_connection_set_callback (connection,
649                                                        on_bacon_message_received,
650                                                        window);
651         }
652
653         /* Handle channels */
654         dispatcher = empathy_dispatcher_dup_singleton ();
655         g_signal_connect (dispatcher, "dispatch", G_CALLBACK (dispatch_cb), NULL);
656
657         /* Logging */
658         log_manager = empathy_log_manager_dup_singleton ();
659         empathy_log_manager_observe (log_manager, dispatcher);
660
661         chatroom_manager = empathy_chatroom_manager_dup_singleton (NULL);
662         empathy_chatroom_manager_observe (chatroom_manager, dispatcher);
663
664         notify_init (_(PACKAGE_NAME));
665         /* Create the call factory */
666         call_factory = empathy_call_factory_initialise ();
667         g_signal_connect (G_OBJECT (call_factory), "new-call-handler",
668                 G_CALLBACK (new_call_handler_cb), NULL);
669         /* Create the FT factory */
670         ft_factory = empathy_ft_factory_dup_singleton ();
671         g_signal_connect (ft_factory, "new-ft-handler",
672                 G_CALLBACK (new_ft_handler_cb), NULL);
673         g_signal_connect (ft_factory, "new-incoming-transfer",
674                 G_CALLBACK (new_incoming_transfer_cb), NULL);
675
676         /* Location mananger */
677 #if HAVE_GEOCLUE
678         location_manager = empathy_location_manager_dup_singleton ();
679 #endif
680
681         gtk_main ();
682
683         empathy_idle_set_state (idle, TP_CONNECTION_PRESENCE_TYPE_OFFLINE);
684
685         g_object_unref (mc);
686         g_object_unref (idle);
687         g_object_unref (icon);
688         g_object_unref (log_manager);
689         g_object_unref (dispatcher);
690         g_object_unref (chatroom_manager);
691 #if HAVE_GEOCLUE
692         g_object_unref (location_manager);
693 #endif
694         g_object_unref (ft_factory);
695
696         notify_uninit ();
697
698         return EXIT_SUCCESS;
699 }
700