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