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