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