]> git.0d.be Git - empathy.git/blob - src/empathy.c
Merge branch 'crash-659118'
[empathy.git] / src / empathy.c
1 /*
2  * Copyright (C) 2007-2009 Collabora Ltd.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public
15  * License along with this program; if not, write to the
16  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
17  * Boston, MA  02110-1301  USA
18  *
19  * Authors: Xavier Claessens <xclaesse@gmail.com>
20  */
21
22 #include <config.h>
23
24 #include <stdlib.h>
25 #include <errno.h>
26 #include <string.h>
27
28 #include <glib.h>
29 #include <glib/gstdio.h>
30 #include <glib/gi18n.h>
31 #include <gtk/gtk.h>
32 #include <gdk/gdkx.h>
33
34 #ifdef HAVE_LIBCHAMPLAIN
35 #include <clutter-gtk/clutter-gtk.h>
36 #endif
37
38 #include <libnotify/notify.h>
39
40 #include <telepathy-glib/account-manager.h>
41 #include <telepathy-glib/dbus.h>
42 #include <telepathy-glib/debug-sender.h>
43 #include <telepathy-glib/util.h>
44 #include <telepathy-glib/connection-manager.h>
45 #include <telepathy-glib/interfaces.h>
46
47 #include <telepathy-yell/telepathy-yell.h>
48
49 #include <telepathy-logger/log-manager.h>
50
51 #include <libempathy/empathy-presence-manager.h>
52 #include <libempathy/empathy-utils.h>
53 #include <libempathy/empathy-chatroom-manager.h>
54 #include <libempathy/empathy-account-settings.h>
55 #include <libempathy/empathy-connectivity.h>
56 #include <libempathy/empathy-connection-managers.h>
57 #include <libempathy/empathy-request-util.h>
58 #include <libempathy/empathy-ft-factory.h>
59 #include <libempathy/empathy-gsettings.h>
60 #include <libempathy/empathy-tp-chat.h>
61
62 #include <libempathy-gtk/empathy-ui-utils.h>
63 #include <libempathy-gtk/empathy-location-manager.h>
64 #include <libempathy-gtk/empathy-notify-manager.h>
65
66 #include "empathy-main-window.h"
67 #include "empathy-accounts-common.h"
68 #include "empathy-accounts-dialog.h"
69 #include "empathy-status-icon.h"
70 #include "empathy-ft-manager.h"
71 #include "empathy-notifications-approver.h"
72
73 #include "extensions/extensions.h"
74
75 #define DEBUG_FLAG EMPATHY_DEBUG_OTHER
76 #include <libempathy/empathy-debug.h>
77
78 #define EMPATHY_DBUS_NAME "org.gnome.Empathy"
79
80 #define EMPATHY_TYPE_APP (empathy_app_get_type ())
81 #define EMPATHY_APP(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), EMPATHY_TYPE_APP, EmpathyApp))
82 #define EMPATHY_APP_CLASS(obj) (G_TYPE_CHECK_CLASS_CAST ((obj), EMPATHY_TYPE_APP, EmpathyAppClass))
83 #define EMPATHY_IS_EMPATHY_APP(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EMPATHY_TYPE_APP))
84 #define EMPATHY_IS_EMPATHY_APP_CLASS(obj) (G_TYPE_CHECK_CLASS_TYPE ((obj), EMPATHY_TYPE_APP))
85 #define EMPATHY_APP_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), EMPATHY_TYPE_APP, EmpathyAppClass))
86
87 typedef struct _EmpathyApp EmpathyApp;
88 typedef struct _EmpathyAppClass EmpathyAppClass;
89
90 enum
91 {
92   PROP_NO_CONNECT = 1,
93   PROP_START_HIDDEN
94 };
95
96 GType empathy_app_get_type (void);
97
98 struct _EmpathyAppClass
99 {
100   GtkApplicationClass parent_class;
101 };
102
103 struct _EmpathyApp
104 {
105   GtkApplication parent;
106
107   /* Properties */
108   gboolean no_connect;
109   gboolean start_hidden;
110   gboolean show_preferences;
111   gchar *preferences_tab;
112
113   gboolean activated;
114
115   GtkWidget *window;
116   EmpathyStatusIcon *icon;
117   TpAccountManager *account_manager;
118   TplLogManager *log_manager;
119   EmpathyChatroomManager *chatroom_manager;
120   EmpathyFTFactory  *ft_factory;
121   EmpathyPresenceManager *presence_mgr;
122   EmpathyConnectivity *connectivity;
123   GSettings *gsettings;
124   EmpathyNotificationsApprover *notifications_approver;
125 #ifdef HAVE_GEOCLUE
126   EmpathyLocationManager *location_manager;
127 #endif
128 #ifdef ENABLE_DEBUG
129   TpDebugSender *debug_sender;
130 #endif
131
132   gboolean shell_running;
133 };
134
135
136 G_DEFINE_TYPE(EmpathyApp, empathy_app, GTK_TYPE_APPLICATION)
137
138 static void
139 empathy_app_dispose (GObject *object)
140 {
141   EmpathyApp *self = EMPATHY_APP (object);
142   void (*dispose) (GObject *) =
143     G_OBJECT_CLASS (empathy_app_parent_class)->dispose;
144
145   /* Only set our presence to offline when exiting if GNOME Shell is not
146    * running */
147   if (self->presence_mgr != NULL &&
148       !self->shell_running)
149     {
150       empathy_presence_manager_set_state (self->presence_mgr,
151           TP_CONNECTION_PRESENCE_TYPE_OFFLINE);
152     }
153
154 #ifdef ENABLE_DEBUG
155   tp_clear_object (&self->debug_sender);
156 #endif
157
158   tp_clear_object (&self->presence_mgr);
159   tp_clear_object (&self->connectivity);
160   tp_clear_object (&self->icon);
161   tp_clear_object (&self->account_manager);
162   tp_clear_object (&self->log_manager);
163   tp_clear_object (&self->chatroom_manager);
164 #ifdef HAVE_GEOCLUE
165   tp_clear_object (&self->location_manager);
166 #endif
167   tp_clear_object (&self->ft_factory);
168   tp_clear_object (&self->gsettings);
169   tp_clear_object (&self->notifications_approver);
170
171   if (dispose != NULL)
172     dispose (object);
173 }
174
175 static void
176 empathy_app_finalize (GObject *object)
177 {
178   EmpathyApp *self = EMPATHY_APP (object);
179   void (*finalize) (GObject *) =
180     G_OBJECT_CLASS (empathy_app_parent_class)->finalize;
181
182   g_free (self->preferences_tab);
183
184   if (self->window != NULL)
185     gtk_widget_destroy (self->window);
186
187   if (finalize != NULL)
188     finalize (object);
189 }
190
191 static void account_manager_ready_cb (GObject *source_object,
192     GAsyncResult *result,
193     gpointer user_data);
194
195 static void
196 empathy_app_set_property (GObject *object,
197     guint prop_id,
198     const GValue *value,
199     GParamSpec *pspec)
200 {
201   EmpathyApp *self = EMPATHY_APP (object);
202
203   switch (prop_id)
204     {
205       case PROP_NO_CONNECT:
206         self->no_connect = g_value_get_boolean (value);
207         break;
208       case PROP_START_HIDDEN:
209         self->start_hidden = g_value_get_boolean (value);
210         break;
211       default:
212         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
213         break;
214     }
215 }
216
217 static void
218 new_incoming_transfer_cb (EmpathyFTFactory *factory,
219     EmpathyFTHandler *handler,
220     GError *error,
221     gpointer user_data)
222 {
223   if (error)
224     empathy_ft_manager_display_error (handler, error);
225   else
226     empathy_receive_file_with_file_chooser (handler);
227 }
228
229 static void
230 new_ft_handler_cb (EmpathyFTFactory *factory,
231     EmpathyFTHandler *handler,
232     GError *error,
233     gpointer user_data)
234 {
235   if (error)
236     empathy_ft_manager_display_error (handler, error);
237   else
238     empathy_ft_manager_add_handler (handler);
239
240   g_object_unref (handler);
241 }
242
243 static gboolean
244 empathy_app_local_command_line (GApplication *app,
245     gchar ***arguments,
246     gint *exit_status);
247
248 static void
249 empathy_presence_manager_set_auto_away_cb (GSettings *gsettings,
250     const gchar *key,
251     gpointer user_data)
252 {
253   EmpathyPresenceManager *presence_mgr = user_data;
254
255   empathy_presence_manager_set_auto_away (presence_mgr,
256       g_settings_get_boolean (gsettings, key));
257 }
258
259 #define GNOME_SHELL_BUS_NAME "org.gnome.Shell"
260
261 static void
262 list_names_cb (TpDBusDaemon *bus_daemon,
263         const gchar * const *names,
264         const GError *error,
265         gpointer user_data,
266         GObject *weak_object)
267 {
268   EmpathyApp *self = (EmpathyApp *) weak_object;
269   guint i;
270
271   if (error != NULL)
272       goto out;
273
274   for (i = 0; names[i] != NULL; i++)
275     {
276       if (!tp_strdiff (names[i], GNOME_SHELL_BUS_NAME))
277         {
278           self->shell_running = TRUE;
279           break;
280         }
281     }
282
283 out:
284   if (self->shell_running)
285     {
286       DEBUG ("GNOME Shell is running, don't create status icon");
287
288       /* Rely on GNOME Shell to watch session state */
289       empathy_presence_manager_set_auto_away (self->presence_mgr, FALSE);
290     }
291   else
292     {
293       gboolean autoaway;
294
295       self->icon = empathy_status_icon_new (GTK_WINDOW (self->window),
296           self->start_hidden);
297
298       /* Allow Empathy to watch session state */
299       autoaway = g_settings_get_boolean (self->gsettings,
300           EMPATHY_PREFS_AUTOAWAY);
301
302       g_signal_connect (self->gsettings,
303           "changed::" EMPATHY_PREFS_AUTOAWAY,
304           G_CALLBACK (empathy_presence_manager_set_auto_away_cb),
305           self->presence_mgr);
306
307       empathy_presence_manager_set_auto_away (self->presence_mgr, autoaway);
308     }
309 }
310
311 static int
312 empathy_app_command_line (GApplication *app,
313     GApplicationCommandLine *cmdline)
314 {
315   EmpathyApp *self = (EmpathyApp *) app;
316   gchar **args, **argv;
317   gint argc, exit_status, i;
318
319   args = g_application_command_line_get_arguments (cmdline, &argc);
320   /* We have to make an extra copy of the array, since g_option_context_parse()
321    * assumes that it can remove strings from the array without freeing them. */
322   argv = g_new (gchar*, argc + 1);
323   for (i = 0; i <= argc; i++)
324     argv[i] = args[i];
325
326   if (empathy_app_local_command_line (app, &argv, &exit_status))
327     DEBUG ("failed to parse command line!");
328
329   g_free (argv);
330   g_strfreev (args);
331
332   if (!self->activated)
333     {
334       GError *error = NULL;
335       TpDBusDaemon *dbus;
336
337       /* Create the FT factory */
338       self->ft_factory = empathy_ft_factory_dup_singleton ();
339       g_signal_connect (self->ft_factory, "new-ft-handler",
340           G_CALLBACK (new_ft_handler_cb), NULL);
341       g_signal_connect (self->ft_factory, "new-incoming-transfer",
342           G_CALLBACK (new_incoming_transfer_cb), NULL);
343
344       if (!empathy_ft_factory_register (self->ft_factory, &error))
345         {
346           g_warning ("Failed to register FileTransfer handler: %s",
347               error->message);
348           g_error_free (error);
349         }
350
351       g_application_hold (G_APPLICATION (app));
352       self->activated = TRUE;
353
354       /* Setting up UI */
355       self->window = empathy_main_window_dup ();
356
357       /* check if Shell is running */
358       dbus = tp_dbus_daemon_dup (&error);
359       g_assert_no_error (error);
360
361       tp_dbus_daemon_list_names (dbus, -1, list_names_cb,
362               self, NULL, G_OBJECT (self));
363
364       g_object_unref (dbus);
365
366       self->notifications_approver =
367         empathy_notifications_approver_dup_singleton ();
368     }
369   else
370     {
371       /* We're requested to show stuff again, disable the start hidden global in
372        * case the accounts wizard wants to pop up.
373        */
374       self->start_hidden = FALSE;
375     }
376
377   if (self->show_preferences)
378     empathy_main_window_show_preferences (EMPATHY_MAIN_WINDOW (self->window),
379         self->preferences_tab);
380
381   if (!self->start_hidden)
382     empathy_window_present (GTK_WINDOW (self->window));
383
384   /* Display the accounts dialog if needed */
385   tp_proxy_prepare_async (self->account_manager, NULL,
386       account_manager_ready_cb, self);
387
388   return 0;
389 }
390
391 static gboolean
392 preferences_cb (const char *option_name,
393     const char *value,
394     gpointer data,
395     GError **error)
396 {
397   EmpathyApp *self = data;
398
399   self->show_preferences = TRUE;
400
401   g_free (self->preferences_tab);
402   self->preferences_tab = g_strdup (value);
403
404   return TRUE;
405 }
406
407 static gboolean
408 show_version_cb (const char *option_name,
409     const char *value,
410     gpointer data,
411     GError **error);
412
413 static gboolean
414 empathy_app_local_command_line (GApplication *app,
415     gchar ***arguments,
416     gint *exit_status)
417 {
418   EmpathyApp *self = (EmpathyApp *) app;
419   gint i;
420   gchar **argv;
421   gint argc = 0;
422   gboolean retval = FALSE;
423   GError *error = NULL;
424   gboolean no_connect = FALSE, start_hidden = FALSE;
425
426   GOptionContext *optcontext;
427   GOptionGroup *group;
428   GOptionEntry options[] = {
429       { "no-connect", 'n',
430         0, G_OPTION_ARG_NONE, &no_connect,
431         N_("Don't connect on startup"),
432         NULL },
433       { "start-hidden", 'h',
434         0, G_OPTION_ARG_NONE, &start_hidden,
435         N_("Don't display the contact list or any other dialogs on startup"),
436         NULL },
437       { "show-preferences", 'p',
438         G_OPTION_FLAG_OPTIONAL_ARG, G_OPTION_ARG_CALLBACK, &preferences_cb,
439         NULL, NULL },
440       { "version", 'v',
441         G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, show_version_cb,
442         NULL, NULL },
443       { NULL }
444   };
445
446   /* We create a group so that GOptionArgFuncs get the user data */
447   group = g_option_group_new ("empathy", NULL, NULL, app, NULL);
448   g_option_group_add_entries (group, options);
449
450   optcontext = g_option_context_new (N_("- Empathy IM Client"));
451   g_option_context_add_group (optcontext, gtk_get_option_group (TRUE));
452   g_option_context_set_main_group (optcontext, group);
453   g_option_context_set_translation_domain (optcontext, GETTEXT_PACKAGE);
454
455   argc = g_strv_length (*arguments);
456
457   /* We dup the args because g_option_context_parse() sets things to NULL,
458    * but we want to parse all the command line to the primary instance
459    * if necessary. */
460   argv = g_new (gchar*, argc + 1);
461   for (i = 0; i <= argc; i++)
462     argv[i] = (*arguments)[i];
463
464   if (!g_option_context_parse (optcontext, &argc, &argv, &error))
465     {
466       g_print ("%s\nRun '%s --help' to see a full list of available command "
467           "line options.\n",
468           error->message, argv[0]);
469       g_warning ("Error in empathy init: %s", error->message);
470
471       *exit_status = EXIT_FAILURE;
472       retval = TRUE;
473     }
474
475   g_free (argv);
476
477   g_option_context_free (optcontext);
478
479   self->no_connect = no_connect;
480   self->start_hidden = start_hidden;
481
482   return retval;
483 }
484
485 static void empathy_app_constructed (GObject *object);
486
487 static void
488 empathy_app_class_init (EmpathyAppClass *klass)
489 {
490   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
491   GApplicationClass *g_app_class = G_APPLICATION_CLASS (klass);
492   GParamSpec *spec;
493
494   gobject_class->set_property = empathy_app_set_property;
495   gobject_class->constructed = empathy_app_constructed;
496   gobject_class->dispose = empathy_app_dispose;
497   gobject_class->finalize = empathy_app_finalize;
498
499   g_app_class->command_line = empathy_app_command_line;
500   g_app_class->local_command_line = empathy_app_local_command_line;
501
502   spec = g_param_spec_boolean ("no-connect", "no connect",
503       "Don't connect on startup",
504       FALSE,
505       G_PARAM_STATIC_STRINGS | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY);
506   g_object_class_install_property (gobject_class, PROP_NO_CONNECT, spec);
507
508   spec = g_param_spec_boolean ("start-hidden", "start hidden",
509       "Don't display the contact list or any other dialogs on startup",
510       FALSE,
511       G_PARAM_STATIC_STRINGS | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY);
512   g_object_class_install_property (gobject_class, PROP_START_HIDDEN, spec);
513 }
514
515 static void
516 empathy_app_init (EmpathyApp *self)
517 {
518 }
519
520 static void
521 use_conn_notify_cb (GSettings *gsettings,
522     const gchar *key,
523     gpointer     user_data)
524 {
525   EmpathyConnectivity *connectivity = user_data;
526
527   empathy_connectivity_set_use_conn (connectivity,
528       g_settings_get_boolean (gsettings, key));
529 }
530
531 static void
532 migrate_config_to_xdg_dir (void)
533 {
534   gchar *xdg_dir, *old_dir, *xdg_filename, *old_filename;
535   int i;
536   GFile *xdg_file, *old_file;
537   static const gchar* filenames[] = {
538     "geometry.ini",
539     "irc-networks.xml",
540     "chatrooms.xml",
541     "contact-groups.xml",
542     "status-presets.xml",
543     "accels.txt",
544     NULL
545   };
546
547   xdg_dir = g_build_filename (g_get_user_config_dir (), PACKAGE_NAME, NULL);
548   if (g_file_test (xdg_dir, G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR))
549     {
550       /* xdg config dir already exists */
551       g_free (xdg_dir);
552       return;
553     }
554
555   old_dir = g_build_filename (g_get_home_dir (), ".gnome2",
556       PACKAGE_NAME, NULL);
557   if (!g_file_test (old_dir, G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR))
558     {
559       /* old config dir didn't exist */
560       g_free (xdg_dir);
561       g_free (old_dir);
562       return;
563     }
564
565   if (g_mkdir_with_parents (xdg_dir, (S_IRUSR | S_IWUSR | S_IXUSR)) == -1)
566     {
567       DEBUG ("Failed to create configuration directory; aborting migration");
568       g_free (xdg_dir);
569       g_free (old_dir);
570       return;
571     }
572
573   for (i = 0; filenames[i]; i++)
574     {
575       old_filename = g_build_filename (old_dir, filenames[i], NULL);
576       if (!g_file_test (old_filename, G_FILE_TEST_EXISTS))
577         {
578           g_free (old_filename);
579           continue;
580         }
581       xdg_filename = g_build_filename (xdg_dir, filenames[i], NULL);
582       old_file = g_file_new_for_path (old_filename);
583       xdg_file = g_file_new_for_path (xdg_filename);
584
585       if (!g_file_move (old_file, xdg_file, G_FILE_COPY_NONE,
586           NULL, NULL, NULL, NULL))
587         DEBUG ("Failed to migrate %s", filenames[i]);
588
589       g_free (old_filename);
590       g_free (xdg_filename);
591       g_object_unref (old_file);
592       g_object_unref (xdg_file);
593     }
594
595   g_free (xdg_dir);
596   g_free (old_dir);
597 }
598
599 static void
600 show_accounts_ui (EmpathyApp *self,
601     GdkScreen *screen,
602     gboolean if_needed)
603 {
604   empathy_accounts_dialog_show_application (screen,
605       NULL, if_needed, self->start_hidden);
606 }
607
608 static gboolean
609 show_version_cb (const char *option_name,
610     const char *value,
611     gpointer data,
612     GError **error)
613 {
614   g_print ("%s\n", PACKAGE_STRING);
615
616   exit (EXIT_SUCCESS);
617 }
618
619 static void
620 account_manager_ready_cb (GObject *source_object,
621     GAsyncResult *result,
622     gpointer user_data)
623 {
624   TpAccountManager *manager = TP_ACCOUNT_MANAGER (source_object);
625   EmpathyApp *self = user_data;
626   GError *error = NULL;
627   TpConnectionPresenceType presence;
628
629   if (!tp_proxy_prepare_finish (manager, result, &error))
630     {
631       GtkWidget *dialog;
632
633       DEBUG ("Failed to prepare account manager: %s", error->message);
634
635       dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_MODAL,
636           GTK_MESSAGE_ERROR, GTK_BUTTONS_OK,
637           _("Error contacting the Account Manager"));
638       gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
639           _("There was an error while trying to connect to the Telepathy "
640             "Account Manager. The error was:\n\n%s"),
641           error->message);
642
643       gtk_dialog_run (GTK_DIALOG (dialog));
644       gtk_widget_destroy (dialog);
645
646       g_error_free (error);
647       return;
648     }
649
650   /* Autoconnect */
651   presence = tp_account_manager_get_most_available_presence (manager, NULL,
652       NULL);
653
654   if (g_settings_get_boolean (self->gsettings, EMPATHY_PREFS_AUTOCONNECT) &&
655       !self->no_connect &&
656       tp_connection_presence_type_cmp_availability
657           (presence, TP_CONNECTION_PRESENCE_TYPE_OFFLINE)
658             <= 0)
659       /* if current state is Offline, then put it online */
660       empathy_presence_manager_set_state (self->presence_mgr,
661           TP_CONNECTION_PRESENCE_TYPE_AVAILABLE);
662
663   /* Pop up the accounts dialog if we don't have any account */
664   if (!empathy_accounts_has_accounts (manager))
665     show_accounts_ui (self, gdk_screen_get_default (), TRUE);
666 }
667
668 static void
669 account_join_chatrooms (TpAccount *account,
670   EmpathyChatroomManager *chatroom_manager)
671 {
672   TpConnection *conn;
673   GList *chatrooms, *p;
674
675   /* Wait if we are not connected or the TpConnection is not prepared yet */
676   conn = tp_account_get_connection (account);
677   if (conn == NULL)
678     return;
679
680   chatrooms = empathy_chatroom_manager_get_chatrooms (
681           chatroom_manager, account);
682
683   for (p = chatrooms; p != NULL; p = p->next)
684     {
685       EmpathyChatroom *room = EMPATHY_CHATROOM (p->data);
686
687       if (!empathy_chatroom_get_auto_connect (room))
688         continue;
689
690       empathy_join_muc (account, empathy_chatroom_get_room (room),
691         TP_USER_ACTION_TIME_NOT_USER_ACTION);
692     }
693   g_list_free (chatrooms);
694 }
695
696 static void
697 account_connection_changed_cb (TpAccount *account,
698     GParamSpec *spec,
699     EmpathyChatroomManager *manager)
700 {
701   account_join_chatrooms (account, manager);
702 }
703
704 static void
705 account_manager_chatroom_ready_cb (GObject *source_object,
706     GAsyncResult *result,
707     gpointer user_data)
708 {
709   TpAccountManager *account_manager = TP_ACCOUNT_MANAGER (source_object);
710   EmpathyChatroomManager *chatroom_manager = user_data;
711   GList *accounts, *l;
712   GError *error = NULL;
713
714   if (!tp_proxy_prepare_finish (account_manager, result, &error))
715     {
716       DEBUG ("Failed to prepare account manager: %s", error->message);
717       g_error_free (error);
718       return;
719     }
720
721   accounts = tp_account_manager_get_valid_accounts (account_manager);
722
723   for (l = accounts; l != NULL; l = g_list_next (l))
724     {
725       TpAccount *account = TP_ACCOUNT (l->data);
726
727       /* Try to join all rooms if we're connected */
728       account_join_chatrooms (account, chatroom_manager);
729
730       /* And/or join them on (re)connection */
731       tp_g_signal_connect_object (account, "notify::connection",
732         G_CALLBACK (account_connection_changed_cb), chatroom_manager, 0);
733     }
734   g_list_free (accounts);
735 }
736
737 static void
738 chatroom_manager_ready_cb (EmpathyChatroomManager *chatroom_manager,
739     GParamSpec *pspec,
740     gpointer user_data)
741 {
742   TpAccountManager *account_manager = user_data;
743
744   tp_proxy_prepare_async (account_manager, NULL,
745       account_manager_chatroom_ready_cb, chatroom_manager);
746 }
747
748 static void
749 empathy_app_constructed (GObject *object)
750 {
751   EmpathyApp *self = (EmpathyApp *) object;
752   gboolean chatroom_manager_ready;
753
754   g_set_application_name (_(PACKAGE_NAME));
755
756   gtk_window_set_default_icon_name ("empathy");
757   textdomain (GETTEXT_PACKAGE);
758
759 #ifdef ENABLE_DEBUG
760   /* Set up debug sender */
761   self->debug_sender = tp_debug_sender_dup ();
762   g_log_set_default_handler (tp_debug_sender_log_handler, G_LOG_DOMAIN);
763 #endif
764
765   notify_init (_(PACKAGE_NAME));
766
767   /* Setting up Idle */
768   self->presence_mgr = empathy_presence_manager_dup_singleton ();
769
770   self->gsettings = g_settings_new (EMPATHY_PREFS_SCHEMA);
771
772   /* Setting up Connectivity */
773   self->connectivity = empathy_connectivity_dup_singleton ();
774   use_conn_notify_cb (self->gsettings, EMPATHY_PREFS_USE_CONN,
775       self->connectivity);
776   g_signal_connect (self->gsettings,
777       "changed::" EMPATHY_PREFS_USE_CONN,
778       G_CALLBACK (use_conn_notify_cb), self->connectivity);
779
780   /* account management */
781   self->account_manager = tp_account_manager_dup ();
782   tp_proxy_prepare_async (self->account_manager, NULL,
783       account_manager_ready_cb, self);
784
785   migrate_config_to_xdg_dir ();
786
787   /* Logging */
788   self->log_manager = tpl_log_manager_dup_singleton ();
789
790   self->chatroom_manager = empathy_chatroom_manager_dup_singleton (NULL);
791
792   g_object_get (self->chatroom_manager, "ready", &chatroom_manager_ready, NULL);
793   if (!chatroom_manager_ready)
794     {
795       g_signal_connect (G_OBJECT (self->chatroom_manager), "notify::ready",
796           G_CALLBACK (chatroom_manager_ready_cb), self->account_manager);
797     }
798   else
799     {
800       chatroom_manager_ready_cb (self->chatroom_manager, NULL,
801           self->account_manager);
802     }
803
804   /* Location mananger */
805 #ifdef HAVE_GEOCLUE
806   self->location_manager = empathy_location_manager_dup_singleton ();
807 #endif
808
809   self->activated = FALSE;
810   self->ft_factory = NULL;
811   self->window = NULL;
812 }
813
814 int
815 main (int argc, char *argv[])
816 {
817   EmpathyApp *app;
818   gint retval;
819
820   g_thread_init (NULL);
821   g_type_init ();
822
823 #ifdef HAVE_LIBCHAMPLAIN
824   gtk_clutter_init (&argc, &argv);
825 #endif
826
827   g_type_init ();
828   tpy_cli_init ();
829   empathy_init ();
830   gtk_init (&argc, &argv);
831   empathy_gtk_init ();
832
833   app = g_object_new (EMPATHY_TYPE_APP,
834       "application-id", EMPATHY_DBUS_NAME,
835       "flags", G_APPLICATION_HANDLES_COMMAND_LINE,
836       NULL);
837
838   retval = g_application_run (G_APPLICATION (app), argc, argv);
839
840   notify_uninit ();
841   xmlCleanupParser ();
842
843   g_object_unref (app);
844
845   return retval;
846 }