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