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