]> git.0d.be Git - empathy.git/blob - src/empathy.c
0d3c694216a22bdbc6a9e43abde4d7750a3657f5
[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-chatroom-manager.h"
36 #include "empathy-client-factory.h"
37 #include "empathy-connection-aggregator.h"
38 #include "empathy-ft-factory.h"
39 #include "empathy-ft-manager.h"
40 #include "empathy-gsettings.h"
41 #include "empathy-location-manager.h"
42 #include "empathy-notifications-approver.h"
43 #include "empathy-presence-manager.h"
44 #include "empathy-request-util.h"
45 #include "empathy-roster-window.h"
46 #include "empathy-status-icon.h"
47 #include "empathy-ui-utils.h"
48 #include "empathy-utils.h"
49
50 #define DEBUG_FLAG EMPATHY_DEBUG_OTHER
51 #include "empathy-debug.h"
52
53 #define EMPATHY_DBUS_NAME "org.gnome.Empathy"
54
55 #define EMPATHY_TYPE_APP (empathy_app_get_type ())
56 #define EMPATHY_APP(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), EMPATHY_TYPE_APP, EmpathyApp))
57 #define EMPATHY_APP_CLASS(obj) (G_TYPE_CHECK_CLASS_CAST ((obj), EMPATHY_TYPE_APP, EmpathyAppClass))
58 #define EMPATHY_IS_EMPATHY_APP(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EMPATHY_TYPE_APP))
59 #define EMPATHY_IS_EMPATHY_APP_CLASS(obj) (G_TYPE_CHECK_CLASS_TYPE ((obj), EMPATHY_TYPE_APP))
60 #define EMPATHY_APP_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), EMPATHY_TYPE_APP, EmpathyAppClass))
61
62 typedef struct _EmpathyApp EmpathyApp;
63 typedef struct _EmpathyAppClass EmpathyAppClass;
64
65 enum
66 {
67   PROP_NO_CONNECT = 1,
68   PROP_START_HIDDEN
69 };
70
71 GType empathy_app_get_type (void);
72
73 struct _EmpathyAppClass
74 {
75   GtkApplicationClass parent_class;
76 };
77
78 struct _EmpathyApp
79 {
80   GtkApplication parent;
81
82   /* Properties */
83   gboolean no_connect;
84   gboolean start_hidden;
85   gboolean show_preferences;
86   gchar *preferences_tab;
87
88   gboolean activated;
89
90   GtkWidget *window;
91   EmpathyStatusIcon *icon;
92   TpAccountManager *account_manager;
93   TplLogManager *log_manager;
94   EmpathyChatroomManager *chatroom_manager;
95   EmpathyFTFactory  *ft_factory;
96   EmpathyPresenceManager *presence_mgr;
97   GSettings *gsettings;
98   EmpathyNotificationsApprover *notifications_approver;
99   EmpathyConnectionAggregator *conn_aggregator;
100 #ifdef HAVE_GEOCLUE
101   EmpathyLocationManager *location_manager;
102 #endif
103 #ifdef ENABLE_DEBUG
104   TpDebugSender *debug_sender;
105 #endif
106
107   gboolean shell_running;
108 };
109
110
111 G_DEFINE_TYPE(EmpathyApp, empathy_app, GTK_TYPE_APPLICATION)
112
113 static void
114 empathy_app_dispose (GObject *object)
115 {
116   EmpathyApp *self = EMPATHY_APP (object);
117   void (*dispose) (GObject *) =
118     G_OBJECT_CLASS (empathy_app_parent_class)->dispose;
119
120   /* Only set our presence to offline when exiting if GNOME Shell is not
121    * running */
122   if (self->presence_mgr != NULL &&
123       !self->shell_running)
124     {
125       empathy_presence_manager_set_state (self->presence_mgr,
126           TP_CONNECTION_PRESENCE_TYPE_OFFLINE);
127     }
128
129 #ifdef ENABLE_DEBUG
130   tp_clear_object (&self->debug_sender);
131 #endif
132
133   tp_clear_object (&self->presence_mgr);
134   tp_clear_object (&self->icon);
135   tp_clear_object (&self->account_manager);
136   tp_clear_object (&self->log_manager);
137   tp_clear_object (&self->chatroom_manager);
138 #ifdef HAVE_GEOCLUE
139   tp_clear_object (&self->location_manager);
140 #endif
141   tp_clear_object (&self->ft_factory);
142   tp_clear_object (&self->gsettings);
143   tp_clear_object (&self->notifications_approver);
144   tp_clear_object (&self->conn_aggregator);
145
146   if (dispose != NULL)
147     dispose (object);
148 }
149
150 static void
151 empathy_app_finalize (GObject *object)
152 {
153   EmpathyApp *self = EMPATHY_APP (object);
154   void (*finalize) (GObject *) =
155     G_OBJECT_CLASS (empathy_app_parent_class)->finalize;
156
157   g_free (self->preferences_tab);
158
159   if (finalize != NULL)
160     finalize (object);
161 }
162
163 static void account_manager_ready_cb (GObject *source_object,
164     GAsyncResult *result,
165     gpointer user_data);
166
167 static void
168 empathy_app_set_property (GObject *object,
169     guint prop_id,
170     const GValue *value,
171     GParamSpec *pspec)
172 {
173   EmpathyApp *self = EMPATHY_APP (object);
174
175   switch (prop_id)
176     {
177       case PROP_NO_CONNECT:
178         self->no_connect = g_value_get_boolean (value);
179         break;
180       case PROP_START_HIDDEN:
181         self->start_hidden = g_value_get_boolean (value);
182         break;
183       default:
184         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
185         break;
186     }
187 }
188
189 static void
190 new_incoming_transfer_cb (EmpathyFTFactory *factory,
191     EmpathyFTHandler *handler,
192     GError *error,
193     gpointer user_data)
194 {
195   if (error)
196     empathy_ft_manager_display_error (handler, error);
197   else
198     empathy_receive_file_with_file_chooser (handler);
199 }
200
201 static void
202 new_ft_handler_cb (EmpathyFTFactory *factory,
203     EmpathyFTHandler *handler,
204     GError *error,
205     gpointer user_data)
206 {
207   if (error)
208     empathy_ft_manager_display_error (handler, error);
209   else
210     empathy_ft_manager_add_handler (handler);
211
212   g_object_unref (handler);
213 }
214
215 static void
216 empathy_presence_manager_set_auto_away_cb (GSettings *gsettings,
217     const gchar *key,
218     gpointer user_data)
219 {
220   EmpathyPresenceManager *presence_mgr = user_data;
221
222   empathy_presence_manager_set_auto_away (presence_mgr,
223       g_settings_get_boolean (gsettings, key));
224 }
225
226 #define GNOME_SHELL_BUS_NAME "org.gnome.Shell"
227
228 static void
229 list_names_cb (TpDBusDaemon *bus_daemon,
230         const gchar * const *names,
231         const GError *error,
232         gpointer user_data,
233         GObject *weak_object)
234 {
235   EmpathyApp *self = (EmpathyApp *) weak_object;
236   guint i;
237
238   if (error != NULL)
239       goto out;
240
241   for (i = 0; names[i] != NULL; i++)
242     {
243       if (!tp_strdiff (names[i], GNOME_SHELL_BUS_NAME))
244         {
245           self->shell_running = TRUE;
246           break;
247         }
248     }
249
250 out:
251   if (self->shell_running)
252     {
253       DEBUG ("GNOME Shell is running, don't create status icon");
254
255       /* Rely on GNOME Shell to watch session state */
256       empathy_presence_manager_set_auto_away (self->presence_mgr, FALSE);
257
258       empathy_roster_window_set_shell_running (
259           EMPATHY_ROSTER_WINDOW (self->window), TRUE);
260     }
261   else
262     {
263       gboolean autoaway;
264
265       self->icon = empathy_status_icon_new (GTK_WINDOW (self->window),
266           self->start_hidden);
267
268       /* Allow Empathy to watch session state */
269       autoaway = g_settings_get_boolean (self->gsettings,
270           EMPATHY_PREFS_AUTOAWAY);
271
272       g_signal_connect (self->gsettings,
273           "changed::" EMPATHY_PREFS_AUTOAWAY,
274           G_CALLBACK (empathy_presence_manager_set_auto_away_cb),
275           self->presence_mgr);
276
277       empathy_presence_manager_set_auto_away (self->presence_mgr, autoaway);
278     }
279 }
280
281 static void
282 empathy_app_activate (GApplication *app)
283 {
284   EmpathyApp *self = (EmpathyApp *) app;
285
286   if (!self->activated)
287     {
288       GError *error = NULL;
289       TpDBusDaemon *dbus;
290
291       empathy_gtk_init ();
292
293       /* Create the FT factory */
294       self->ft_factory = empathy_ft_factory_dup_singleton ();
295       g_signal_connect (self->ft_factory, "new-ft-handler",
296           G_CALLBACK (new_ft_handler_cb), NULL);
297       g_signal_connect (self->ft_factory, "new-incoming-transfer",
298           G_CALLBACK (new_incoming_transfer_cb), NULL);
299
300       if (!empathy_ft_factory_register (self->ft_factory, &error))
301         {
302           g_warning ("Failed to register FileTransfer handler: %s",
303               error->message);
304           g_error_free (error);
305         }
306
307       self->activated = TRUE;
308
309       /* Setting up UI */
310       self->window = empathy_roster_window_new (GTK_APPLICATION (app));
311       gtk_application_set_app_menu (GTK_APPLICATION (self),
312           empathy_roster_window_get_menu_model (
313             EMPATHY_ROSTER_WINDOW (self->window)));
314
315       gtk_application_add_window (GTK_APPLICATION (app),
316           GTK_WINDOW (self->window));
317       gtk_application_add_accelerator (GTK_APPLICATION (app),
318           "<Primary>h",
319           "win." EMPATHY_PREFS_UI_SHOW_OFFLINE,
320           NULL);
321
322       /* check if Shell is running */
323       dbus = tp_dbus_daemon_dup (&error);
324       g_assert_no_error (error);
325
326       tp_dbus_daemon_list_names (dbus, -1, list_names_cb,
327               self, NULL, G_OBJECT (self));
328
329       g_object_unref (dbus);
330
331       self->notifications_approver =
332         empathy_notifications_approver_dup_singleton ();
333     }
334
335   if (self->show_preferences)
336     {
337       empathy_roster_window_show_preferences (
338           EMPATHY_ROSTER_WINDOW (self->window),
339           tp_str_empty (self->preferences_tab) ? NULL : self->preferences_tab);
340
341       self->show_preferences = FALSE;
342     }
343   else
344     {
345       if (!self->start_hidden)
346         tpaw_window_present (GTK_WINDOW (self->window));
347     }
348
349   /* Display the accounts dialog if needed */
350   tp_proxy_prepare_async (self->account_manager, NULL,
351       account_manager_ready_cb, self);
352 }
353
354 static gboolean
355 preferences_cb (const char *option_name,
356     const char *value,
357     gpointer data,
358     GError **error)
359 {
360   EmpathyApp *self = data;
361
362   self->show_preferences = TRUE;
363
364   g_free (self->preferences_tab);
365   self->preferences_tab = g_strdup (value);
366
367   return TRUE;
368 }
369
370 static gboolean
371 show_version_cb (const char *option_name,
372     const char *value,
373     gpointer data,
374     GError **error);
375
376 static void
377 open_preference_action_cb (GAction  *action,
378     GVariant *parameter,
379     gpointer  data)
380 {
381   EmpathyApp *self = EMPATHY_APP (data);
382
383   self->show_preferences = TRUE;
384
385   g_free (self->preferences_tab);
386   self->preferences_tab = g_variant_dup_string (parameter, NULL);
387 }
388
389 static gboolean
390 empathy_app_local_command_line (GApplication *app,
391     gchar ***arguments,
392     gint *exit_status)
393 {
394   EmpathyApp *self = (EmpathyApp *) app;
395   GSimpleAction *action;
396   gint i;
397   gchar **argv;
398   gint argc = 0;
399   gboolean retval = TRUE;
400   GError *error = NULL;
401   gboolean no_connect = FALSE, start_hidden = FALSE;
402
403   GOptionContext *optcontext;
404   GOptionGroup *group;
405   GOptionEntry options[] = {
406       { "no-connect", 'n',
407         0, G_OPTION_ARG_NONE, &no_connect,
408         N_("Don't connect on startup"),
409         NULL },
410       { "start-hidden", 'h',
411         0, G_OPTION_ARG_NONE, &start_hidden,
412         N_("Don't display the contact list or any other dialogs on startup"),
413         NULL },
414       { "show-preferences", 'p',
415         G_OPTION_FLAG_OPTIONAL_ARG, G_OPTION_ARG_CALLBACK, &preferences_cb,
416         NULL, NULL },
417       { "version", 'v',
418         G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, show_version_cb,
419         NULL, NULL },
420       { NULL }
421   };
422
423   if (!g_application_register (app, NULL, &error))
424     {
425       g_warning ("Impossible to register empathy: %s", error->message);
426       g_clear_error (&error);
427       *exit_status = EXIT_FAILURE;
428       return retval;
429     }
430
431   action = g_simple_action_new ("open-preferences", G_VARIANT_TYPE_STRING);
432   g_signal_connect (action, "activate", G_CALLBACK (open_preference_action_cb), app);
433   g_action_map_add_action (G_ACTION_MAP (app), G_ACTION (action));
434   g_object_unref (action);
435
436   /* We create a group so that GOptionArgFuncs get the user data */
437   group = g_option_group_new ("empathy", NULL, NULL, app, NULL);
438   g_option_group_set_translation_domain (group, GETTEXT_PACKAGE);
439   g_option_group_add_entries (group, options);
440
441   optcontext = g_option_context_new (N_("- Empathy IM Client"));
442   g_option_context_add_group (optcontext, gtk_get_option_group (FALSE));
443   g_option_context_set_main_group (optcontext, group);
444   g_option_context_set_translation_domain (optcontext, GETTEXT_PACKAGE);
445
446   argc = g_strv_length (*arguments);
447
448   /* We dup the args because g_option_context_parse() sets things to NULL,
449    * but we want to parse all the command line to the primary instance
450    * if necessary. */
451   argv = g_new (gchar*, argc + 1);
452   for (i = 0; i <= argc; i++)
453     argv[i] = (*arguments)[i];
454
455   if (!g_option_context_parse (optcontext, &argc, &argv, &error))
456     {
457       g_print ("%s\nRun '%s --help' to see a full list of available command "
458           "line options.\n",
459           error->message, argv[0]);
460       g_warning ("Error in empathy init: %s", error->message);
461       g_clear_error (&error);
462
463       *exit_status = EXIT_FAILURE;
464     }
465   else
466     {
467       self->no_connect = no_connect;
468       self->start_hidden = start_hidden;
469
470       if (self->show_preferences)
471         {
472           GVariant *parameter;
473           parameter = g_variant_new_string (self->preferences_tab ? self->preferences_tab : "");
474           g_action_group_activate_action (G_ACTION_GROUP (app), "open-preferences", parameter);
475         }
476
477       g_application_activate (app);
478     }
479
480   g_free (argv);
481   g_option_context_free (optcontext);
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->local_command_line = empathy_app_local_command_line;
501   g_app_class->activate = empathy_app_activate;
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_dup_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_full (accounts, g_object_unref);
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   textdomain (GETTEXT_PACKAGE);
745   g_set_application_name (_(PACKAGE_NAME));
746
747   gtk_window_set_default_icon_name ("empathy");
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   tp_account_manager_enable_restart (self->account_manager);
768
769   migrate_config_to_xdg_dir ();
770
771   /* Logging */
772   self->log_manager = tpl_log_manager_dup_singleton ();
773
774   self->chatroom_manager = empathy_chatroom_manager_dup_singleton (NULL);
775
776   g_object_get (self->chatroom_manager, "ready", &chatroom_manager_ready, NULL);
777   if (!chatroom_manager_ready)
778     {
779       g_signal_connect (G_OBJECT (self->chatroom_manager), "notify::ready",
780           G_CALLBACK (chatroom_manager_ready_cb), self->account_manager);
781     }
782   else
783     {
784       chatroom_manager_ready_cb (self->chatroom_manager, NULL,
785           self->account_manager);
786     }
787
788   /* Location mananger */
789 #ifdef HAVE_GEOCLUE
790   self->location_manager = empathy_location_manager_dup_singleton ();
791 #endif
792
793   self->conn_aggregator = empathy_connection_aggregator_dup_singleton ();
794
795   self->activated = FALSE;
796   self->ft_factory = NULL;
797   self->window = NULL;
798 }
799
800 static void
801 add_empathy_features (void)
802 {
803   /* Add 'empathy' specific feature before doing any preparation */
804   EmpathyClientFactory *factory;
805
806   factory = empathy_client_factory_dup ();
807
808   tp_simple_client_factory_add_connection_features_varargs (
809       TP_SIMPLE_CLIENT_FACTORY (factory),
810       /* empathy_connection_aggregator_get_all_groups(), used by
811        * EmpathyGroupsWidget relies on it */
812       TP_CONNECTION_FEATURE_CONTACT_GROUPS,
813       /* empathy_connection_aggregator_dup_all_contacts(), used by
814        * EmpathyEventManager relies on it */
815       TP_CONNECTION_FEATURE_CONTACT_LIST,
816       NULL);
817
818   g_object_unref (factory);
819 }
820
821 int
822 main (int argc, char *argv[])
823 {
824   EmpathyApp *app;
825   gint retval;
826
827   g_type_init ();
828
829 #ifdef HAVE_LIBCHAMPLAIN
830   g_return_val_if_fail (gtk_clutter_init (&argc, &argv) ==
831       CLUTTER_INIT_SUCCESS, 1);
832 #endif
833
834   g_type_init ();
835   empathy_init ();
836
837   add_empathy_features ();
838
839   app = g_object_new (EMPATHY_TYPE_APP,
840       "application-id", EMPATHY_DBUS_NAME,
841       NULL);
842
843   retval = g_application_run (G_APPLICATION (app), argc, argv);
844
845   notify_uninit ();
846   xmlCleanupParser ();
847
848   g_object_unref (app);
849
850   return retval;
851 }