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