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