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