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