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