]> git.0d.be Git - empathy.git/blob - src/empathy.c
update gnome-contacts's desktop file
[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
321       /* check if Shell is running */
322       dbus = tp_dbus_daemon_dup (&error);
323       g_assert_no_error (error);
324
325       tp_dbus_daemon_list_names (dbus, -1, list_names_cb,
326               self, NULL, G_OBJECT (self));
327
328       g_object_unref (dbus);
329
330       self->notifications_approver =
331         empathy_notifications_approver_dup_singleton ();
332     }
333
334   if (self->show_preferences)
335     {
336       empathy_roster_window_show_preferences (
337           EMPATHY_ROSTER_WINDOW (self->window),
338           tp_str_empty (self->preferences_tab) ? NULL : self->preferences_tab);
339
340       self->show_preferences = FALSE;
341     }
342   else
343     {
344       if (!self->start_hidden)
345         tpaw_window_present (GTK_WINDOW (self->window));
346     }
347
348   /* Display the accounts dialog if needed */
349   tp_proxy_prepare_async (self->account_manager, NULL,
350       account_manager_ready_cb, self);
351 }
352
353 static gboolean
354 preferences_cb (const char *option_name,
355     const char *value,
356     gpointer data,
357     GError **error)
358 {
359   EmpathyApp *self = data;
360
361   self->show_preferences = TRUE;
362
363   g_free (self->preferences_tab);
364   self->preferences_tab = g_strdup (value);
365
366   return TRUE;
367 }
368
369 static gboolean
370 show_version_cb (const char *option_name,
371     const char *value,
372     gpointer data,
373     GError **error);
374
375 static void
376 open_preference_action_cb (GAction  *action,
377     GVariant *parameter,
378     gpointer  data)
379 {
380   EmpathyApp *self = EMPATHY_APP (data);
381
382   self->show_preferences = TRUE;
383
384   g_free (self->preferences_tab);
385   self->preferences_tab = g_variant_dup_string (parameter, NULL);
386 }
387
388 static gboolean
389 empathy_app_local_command_line (GApplication *app,
390     gchar ***arguments,
391     gint *exit_status)
392 {
393   EmpathyApp *self = (EmpathyApp *) app;
394   GSimpleAction *action;
395   gint i;
396   gchar **argv;
397   gint argc = 0;
398   gboolean retval = TRUE;
399   GError *error = NULL;
400   gboolean no_connect = FALSE, start_hidden = FALSE;
401
402   GOptionContext *optcontext;
403   GOptionGroup *group;
404   GOptionEntry options[] = {
405       { "no-connect", 'n',
406         0, G_OPTION_ARG_NONE, &no_connect,
407         N_("Don't connect on startup"),
408         NULL },
409       { "start-hidden", 'h',
410         0, G_OPTION_ARG_NONE, &start_hidden,
411         N_("Don't display the contact list or any other dialogs on startup"),
412         NULL },
413       { "show-preferences", 'p',
414         G_OPTION_FLAG_OPTIONAL_ARG, G_OPTION_ARG_CALLBACK, &preferences_cb,
415         NULL, NULL },
416       { "version", 'v',
417         G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, show_version_cb,
418         NULL, NULL },
419       { NULL }
420   };
421
422   if (!g_application_register (app, NULL, &error))
423     {
424       g_warning ("Impossible to register empathy: %s", error->message);
425       g_clear_error (&error);
426       *exit_status = EXIT_FAILURE;
427       return retval;
428     }
429
430   action = g_simple_action_new ("open-preferences", G_VARIANT_TYPE_STRING);
431   g_signal_connect (action, "activate", G_CALLBACK (open_preference_action_cb), app);
432   g_action_map_add_action (G_ACTION_MAP (app), G_ACTION (action));
433   g_object_unref (action);
434
435   /* We create a group so that GOptionArgFuncs get the user data */
436   group = g_option_group_new ("empathy", NULL, NULL, app, NULL);
437   g_option_group_set_translation_domain (group, GETTEXT_PACKAGE);
438   g_option_group_add_entries (group, options);
439
440   optcontext = g_option_context_new (N_("- Empathy IM Client"));
441   g_option_context_add_group (optcontext, gtk_get_option_group (FALSE));
442   g_option_context_set_main_group (optcontext, group);
443   g_option_context_set_translation_domain (optcontext, GETTEXT_PACKAGE);
444
445   argc = g_strv_length (*arguments);
446
447   /* We dup the args because g_option_context_parse() sets things to NULL,
448    * but we want to parse all the command line to the primary instance
449    * if necessary. */
450   argv = g_new (gchar*, argc + 1);
451   for (i = 0; i <= argc; i++)
452     argv[i] = (*arguments)[i];
453
454   if (!g_option_context_parse (optcontext, &argc, &argv, &error))
455     {
456       g_print ("%s\nRun '%s --help' to see a full list of available command "
457           "line options.\n",
458           error->message, argv[0]);
459       g_warning ("Error in empathy init: %s", error->message);
460       g_clear_error (&error);
461
462       *exit_status = EXIT_FAILURE;
463     }
464   else
465     {
466       self->no_connect = no_connect;
467       self->start_hidden = start_hidden;
468
469       if (self->show_preferences)
470         {
471           GVariant *parameter;
472           parameter = g_variant_new_string (self->preferences_tab ? self->preferences_tab : "");
473           g_action_group_activate_action (G_ACTION_GROUP (app), "open-preferences", parameter);
474         }
475
476       g_application_activate (app);
477     }
478
479   g_free (argv);
480   g_option_context_free (optcontext);
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->local_command_line = empathy_app_local_command_line;
500   g_app_class->activate = empathy_app_activate;
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 migrate_config_to_xdg_dir (void)
522 {
523   gchar *xdg_dir, *old_dir, *xdg_filename, *old_filename;
524   int i;
525   GFile *xdg_file, *old_file;
526   static const gchar* filenames[] = {
527     "geometry.ini",
528     "irc-networks.xml",
529     "chatrooms.xml",
530     "contact-groups.xml",
531     "status-presets.xml",
532     "accels.txt",
533     NULL
534   };
535
536   xdg_dir = g_build_filename (g_get_user_config_dir (), PACKAGE_NAME, NULL);
537   if (g_file_test (xdg_dir, G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR))
538     {
539       /* xdg config dir already exists */
540       g_free (xdg_dir);
541       return;
542     }
543
544   old_dir = g_build_filename (g_get_home_dir (), ".gnome2",
545       PACKAGE_NAME, NULL);
546   if (!g_file_test (old_dir, G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR))
547     {
548       /* old config dir didn't exist */
549       g_free (xdg_dir);
550       g_free (old_dir);
551       return;
552     }
553
554   if (g_mkdir_with_parents (xdg_dir, (S_IRUSR | S_IWUSR | S_IXUSR)) == -1)
555     {
556       DEBUG ("Failed to create configuration directory; aborting migration");
557       g_free (xdg_dir);
558       g_free (old_dir);
559       return;
560     }
561
562   for (i = 0; filenames[i]; i++)
563     {
564       old_filename = g_build_filename (old_dir, filenames[i], NULL);
565       if (!g_file_test (old_filename, G_FILE_TEST_EXISTS))
566         {
567           g_free (old_filename);
568           continue;
569         }
570       xdg_filename = g_build_filename (xdg_dir, filenames[i], NULL);
571       old_file = g_file_new_for_path (old_filename);
572       xdg_file = g_file_new_for_path (xdg_filename);
573
574       if (!g_file_move (old_file, xdg_file, G_FILE_COPY_NONE,
575           NULL, NULL, NULL, NULL))
576         DEBUG ("Failed to migrate %s", filenames[i]);
577
578       g_free (old_filename);
579       g_free (xdg_filename);
580       g_object_unref (old_file);
581       g_object_unref (xdg_file);
582     }
583
584   g_free (xdg_dir);
585   g_free (old_dir);
586 }
587
588 static void
589 show_accounts_ui (EmpathyApp *self,
590     GdkScreen *screen,
591     gboolean if_needed)
592 {
593   empathy_accounts_dialog_show_application (screen,
594       NULL, if_needed, self->start_hidden);
595 }
596
597 static gboolean
598 show_version_cb (const char *option_name,
599     const char *value,
600     gpointer data,
601     GError **error)
602 {
603   g_print ("%s\n", PACKAGE_STRING);
604
605   exit (EXIT_SUCCESS);
606 }
607
608 static void
609 account_manager_ready_cb (GObject *source_object,
610     GAsyncResult *result,
611     gpointer user_data)
612 {
613   TpAccountManager *manager = TP_ACCOUNT_MANAGER (source_object);
614   EmpathyApp *self = user_data;
615   GError *error = NULL;
616   TpConnectionPresenceType presence;
617
618   if (!tp_proxy_prepare_finish (manager, result, &error))
619     {
620       GtkWidget *dialog;
621
622       DEBUG ("Failed to prepare account manager: %s", error->message);
623
624       dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_MODAL,
625           GTK_MESSAGE_ERROR, GTK_BUTTONS_OK,
626           _("Error contacting the Account Manager"));
627       gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
628           _("There was an error while trying to connect to the Telepathy "
629             "Account Manager. The error was:\n\n%s"),
630           error->message);
631
632       gtk_dialog_run (GTK_DIALOG (dialog));
633       gtk_widget_destroy (dialog);
634
635       g_error_free (error);
636       return;
637     }
638
639   /* Autoconnect */
640   presence = tp_account_manager_get_most_available_presence (manager, NULL,
641       NULL);
642
643   if (g_settings_get_boolean (self->gsettings, EMPATHY_PREFS_AUTOCONNECT) &&
644       !self->no_connect &&
645       tp_connection_presence_type_cmp_availability
646           (presence, TP_CONNECTION_PRESENCE_TYPE_OFFLINE)
647             <= 0)
648       /* if current state is Offline, then put it online */
649       empathy_presence_manager_set_state (self->presence_mgr,
650           TP_CONNECTION_PRESENCE_TYPE_AVAILABLE);
651
652   /* Pop up the accounts dialog if we don't have any account */
653   if (!empathy_accounts_has_accounts (manager))
654     show_accounts_ui (self, gdk_screen_get_default (), TRUE);
655 }
656
657 static void
658 account_join_chatrooms (TpAccount *account,
659   EmpathyChatroomManager *chatroom_manager)
660 {
661   TpConnection *conn;
662   GList *chatrooms, *p;
663
664   /* Wait if we are not connected or the TpConnection is not prepared yet */
665   conn = tp_account_get_connection (account);
666   if (conn == NULL)
667     return;
668
669   chatrooms = empathy_chatroom_manager_get_chatrooms (
670           chatroom_manager, account);
671
672   for (p = chatrooms; p != NULL; p = p->next)
673     {
674       EmpathyChatroom *room = EMPATHY_CHATROOM (p->data);
675
676       if (!empathy_chatroom_get_auto_connect (room))
677         continue;
678
679       empathy_join_muc (account, empathy_chatroom_get_room (room),
680         TP_USER_ACTION_TIME_NOT_USER_ACTION);
681     }
682   g_list_free (chatrooms);
683 }
684
685 static void
686 account_connection_changed_cb (TpAccount *account,
687     GParamSpec *spec,
688     EmpathyChatroomManager *manager)
689 {
690   account_join_chatrooms (account, manager);
691 }
692
693 static void
694 account_manager_chatroom_ready_cb (GObject *source_object,
695     GAsyncResult *result,
696     gpointer user_data)
697 {
698   TpAccountManager *account_manager = TP_ACCOUNT_MANAGER (source_object);
699   EmpathyChatroomManager *chatroom_manager = user_data;
700   GList *accounts, *l;
701   GError *error = NULL;
702
703   if (!tp_proxy_prepare_finish (account_manager, result, &error))
704     {
705       DEBUG ("Failed to prepare account manager: %s", error->message);
706       g_error_free (error);
707       return;
708     }
709
710   accounts = tp_account_manager_dup_valid_accounts (account_manager);
711
712   for (l = accounts; l != NULL; l = g_list_next (l))
713     {
714       TpAccount *account = TP_ACCOUNT (l->data);
715
716       /* Try to join all rooms if we're connected */
717       account_join_chatrooms (account, chatroom_manager);
718
719       /* And/or join them on (re)connection */
720       tp_g_signal_connect_object (account, "notify::connection",
721         G_CALLBACK (account_connection_changed_cb), chatroom_manager, 0);
722     }
723   g_list_free_full (accounts, g_object_unref);
724 }
725
726 static void
727 chatroom_manager_ready_cb (EmpathyChatroomManager *chatroom_manager,
728     GParamSpec *pspec,
729     gpointer user_data)
730 {
731   TpAccountManager *account_manager = user_data;
732
733   tp_proxy_prepare_async (account_manager, NULL,
734       account_manager_chatroom_ready_cb, chatroom_manager);
735 }
736
737 static void
738 empathy_app_constructed (GObject *object)
739 {
740   EmpathyApp *self = (EmpathyApp *) object;
741   gboolean chatroom_manager_ready;
742
743   textdomain (GETTEXT_PACKAGE);
744   g_set_application_name (_(PACKAGE_NAME));
745
746   gtk_window_set_default_icon_name ("empathy");
747
748 #ifdef ENABLE_DEBUG
749   /* Set up debug sender */
750   self->debug_sender = tp_debug_sender_dup ();
751   g_log_set_default_handler (tp_debug_sender_log_handler, G_LOG_DOMAIN);
752 #endif
753
754   notify_init (_(PACKAGE_NAME));
755
756   /* Setting up Idle */
757   self->presence_mgr = empathy_presence_manager_dup_singleton ();
758
759   self->gsettings = g_settings_new (EMPATHY_PREFS_SCHEMA);
760
761   /* account management */
762   self->account_manager = tp_account_manager_dup ();
763   tp_proxy_prepare_async (self->account_manager, NULL,
764       account_manager_ready_cb, self);
765
766   tp_account_manager_enable_restart (self->account_manager);
767
768   migrate_config_to_xdg_dir ();
769
770   /* Logging */
771   self->log_manager = tpl_log_manager_dup_singleton ();
772
773   self->chatroom_manager = empathy_chatroom_manager_dup_singleton (NULL);
774
775   g_object_get (self->chatroom_manager, "ready", &chatroom_manager_ready, NULL);
776   if (!chatroom_manager_ready)
777     {
778       g_signal_connect (G_OBJECT (self->chatroom_manager), "notify::ready",
779           G_CALLBACK (chatroom_manager_ready_cb), self->account_manager);
780     }
781   else
782     {
783       chatroom_manager_ready_cb (self->chatroom_manager, NULL,
784           self->account_manager);
785     }
786
787   /* Location mananger */
788 #ifdef HAVE_GEOCLUE
789   self->location_manager = empathy_location_manager_dup_singleton ();
790 #endif
791
792   self->conn_aggregator = empathy_connection_aggregator_dup_singleton ();
793
794   self->activated = FALSE;
795   self->ft_factory = NULL;
796   self->window = NULL;
797 }
798
799 static void
800 add_empathy_features (void)
801 {
802   /* Add 'empathy' specific feature before doing any preparation */
803   EmpathyClientFactory *factory;
804
805   factory = empathy_client_factory_dup ();
806
807   tp_simple_client_factory_add_connection_features_varargs (
808       TP_SIMPLE_CLIENT_FACTORY (factory),
809       /* empathy_connection_aggregator_get_all_groups(), used by
810        * EmpathyGroupsWidget relies on it */
811       TP_CONNECTION_FEATURE_CONTACT_GROUPS,
812       /* empathy_connection_aggregator_dup_all_contacts(), used by
813        * EmpathyEventManager relies on it */
814       TP_CONNECTION_FEATURE_CONTACT_LIST,
815       NULL);
816
817   g_object_unref (factory);
818 }
819
820 int
821 main (int argc, char *argv[])
822 {
823   EmpathyApp *app;
824   gint retval;
825
826   g_type_init ();
827
828 #ifdef HAVE_LIBCHAMPLAIN
829   g_return_val_if_fail (gtk_clutter_init (&argc, &argv) ==
830       CLUTTER_INIT_SUCCESS, 1);
831 #endif
832
833   g_type_init ();
834   empathy_init ();
835
836   add_empathy_features ();
837
838   app = g_object_new (EMPATHY_TYPE_APP,
839       "application-id", EMPATHY_BUS_NAME,
840       NULL);
841
842   retval = g_application_run (G_APPLICATION (app), argc, argv);
843
844   notify_uninit ();
845   xmlCleanupParser ();
846
847   g_object_unref (app);
848
849   return retval;
850 }