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