]> git.0d.be Git - empathy.git/blob - src/empathy.c
Merge branch 'approvers-redone-599158'
[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/gi18n.h>
30 #include <gtk/gtk.h>
31 #include <gdk/gdkx.h>
32 #include <unique/unique.h>
33
34 #if 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/log-manager.h>
48
49 #include <libempathy/empathy-idle.h>
50 #include <libempathy/empathy-utils.h>
51 #include <libempathy/empathy-call-factory.h>
52 #include <libempathy/empathy-chatroom-manager.h>
53 #include <libempathy/empathy-account-settings.h>
54 #include <libempathy/empathy-connectivity.h>
55 #include <libempathy/empathy-connection-managers.h>
56 #include <libempathy/empathy-dispatcher.h>
57 #include <libempathy/empathy-dispatch-operation.h>
58 #include <libempathy/empathy-ft-factory.h>
59 #include <libempathy/empathy-gsettings.h>
60 #include <libempathy/empathy-tp-chat.h>
61 #include <libempathy/empathy-tp-call.h>
62
63 #include <libempathy-gtk/empathy-ui-utils.h>
64 #include <libempathy-gtk/empathy-location-manager.h>
65
66 #include "empathy-main-window.h"
67 #include "empathy-import-mc4-accounts.h"
68 #include "empathy-accounts-common.h"
69 #include "empathy-accounts-dialog.h"
70 #include "empathy-chat-manager.h"
71 #include "empathy-status-icon.h"
72 #include "empathy-call-window.h"
73 #include "empathy-chat-window.h"
74 #include "empathy-ft-manager.h"
75
76 #include "extensions/extensions.h"
77
78 #define DEBUG_FLAG EMPATHY_DEBUG_OTHER
79 #include <libempathy/empathy-debug.h>
80
81 #include <gst/gst.h>
82
83 static gboolean start_hidden = FALSE;
84 static gboolean no_connect = FALSE;
85
86 static void account_manager_ready_cb (GObject *source_object,
87     GAsyncResult *result,
88     gpointer user_data);
89
90 static void
91 dispatch_cb (EmpathyDispatcher *dispatcher,
92     EmpathyDispatchOperation *operation,
93     gpointer user_data)
94 {
95   GQuark channel_type;
96
97   channel_type = empathy_dispatch_operation_get_channel_type_id (operation);
98
99   if (channel_type == TP_IFACE_QUARK_CHANNEL_TYPE_TEXT)
100     {
101       EmpathyTpChat *tp_chat;
102       EmpathyChat   *chat = NULL;
103       const gchar   *id;
104
105       tp_chat = EMPATHY_TP_CHAT
106         (empathy_dispatch_operation_get_channel_wrapper (operation));
107
108       id = empathy_tp_chat_get_id (tp_chat);
109       if (!EMP_STR_EMPTY (id))
110         {
111           TpConnection *connection;
112           TpAccount *account;
113
114           connection = empathy_tp_chat_get_connection (tp_chat);
115           account = empathy_get_account_for_connection (connection);
116           chat = empathy_chat_window_find_chat (account, id);
117         }
118
119       if (chat)
120         {
121           empathy_chat_set_tp_chat (chat, tp_chat);
122         }
123       else
124         {
125           chat = empathy_chat_new (tp_chat);
126           /* empathy_chat_new returns a floating reference as EmpathyChat is
127            * a GtkWidget. This reference will be taken by a container
128            * (a GtkNotebook) when we'll call empathy_chat_window_present_chat */
129         }
130
131       empathy_chat_window_present_chat (chat,
132           empathy_dispatch_operation_get_user_action_time (operation));
133
134       if (empathy_tp_chat_is_invited (tp_chat, NULL))
135         {
136           /* We have been invited to the room. Add ourself as member as this
137            * channel has been approved. */
138           empathy_tp_chat_join (tp_chat);
139         }
140
141       empathy_dispatch_operation_claim (operation);
142     }
143   else if (channel_type == TP_IFACE_QUARK_CHANNEL_TYPE_STREAMED_MEDIA)
144     {
145       EmpathyCallFactory *factory;
146
147       factory = empathy_call_factory_get ();
148       empathy_call_factory_claim_channel (factory, operation);
149     }
150   else if (channel_type == TP_IFACE_QUARK_CHANNEL_TYPE_FILE_TRANSFER)
151     {
152       EmpathyFTFactory *factory;
153
154       factory = empathy_ft_factory_dup_singleton ();
155
156       /* if the operation is not incoming, don't claim it,
157        * as it might have been triggered by another client, and
158        * we are observing it.
159        */
160       if (empathy_dispatch_operation_is_incoming (operation))
161         empathy_ft_factory_claim_channel (factory, operation);
162     }
163 }
164
165 static void
166 use_conn_notify_cb (GSettings *gsettings,
167     const gchar *key,
168     gpointer     user_data)
169 {
170   EmpathyConnectivity *connectivity = user_data;
171
172   empathy_connectivity_set_use_conn (connectivity,
173       g_settings_get_boolean (gsettings, key));
174 }
175
176 static void
177 migrate_config_to_xdg_dir (void)
178 {
179   gchar *xdg_dir, *old_dir, *xdg_filename, *old_filename;
180   int i;
181   GFile *xdg_file, *old_file;
182   static const gchar* filenames[] = {
183     "geometry.ini",
184     "irc-networks.xml",
185     "chatrooms.xml",
186     "contact-groups.xml",
187     "status-presets.xml",
188     "accels.txt",
189     NULL
190   };
191
192   xdg_dir = g_build_filename (g_get_user_config_dir (), PACKAGE_NAME, NULL);
193   if (g_file_test (xdg_dir, G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR))
194     {
195       /* xdg config dir already exists */
196       g_free (xdg_dir);
197       return;
198     }
199
200   old_dir = g_build_filename (g_get_home_dir (), ".gnome2",
201       PACKAGE_NAME, NULL);
202   if (!g_file_test (old_dir, G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR))
203     {
204       /* old config dir didn't exist */
205       g_free (xdg_dir);
206       g_free (old_dir);
207       return;
208     }
209
210   if (g_mkdir_with_parents (xdg_dir, (S_IRUSR | S_IWUSR | S_IXUSR)) == -1)
211     {
212       DEBUG ("Failed to create configuration directory; aborting migration");
213       g_free (xdg_dir);
214       g_free (old_dir);
215       return;
216     }
217
218   for (i = 0; filenames[i]; i++)
219     {
220       old_filename = g_build_filename (old_dir, filenames[i], NULL);
221       if (!g_file_test (old_filename, G_FILE_TEST_EXISTS))
222         {
223           g_free (old_filename);
224           continue;
225         }
226       xdg_filename = g_build_filename (xdg_dir, filenames[i], NULL);
227       old_file = g_file_new_for_path (old_filename);
228       xdg_file = g_file_new_for_path (xdg_filename);
229
230       if (!g_file_move (old_file, xdg_file, G_FILE_COPY_NONE,
231           NULL, NULL, NULL, NULL))
232         DEBUG ("Failed to migrate %s", filenames[i]);
233
234       g_free (old_filename);
235       g_free (xdg_filename);
236       g_object_unref (old_file);
237       g_object_unref (xdg_file);
238     }
239
240   g_free (xdg_dir);
241   g_free (old_dir);
242 }
243
244 static void
245 show_accounts_ui (GdkScreen *screen,
246     gboolean if_needed)
247 {
248   empathy_accounts_dialog_show_application (screen,
249       NULL, if_needed, start_hidden);
250 }
251
252 static UniqueResponse
253 unique_app_message_cb (UniqueApp *unique_app,
254     gint command,
255     UniqueMessageData *data,
256     guint timestamp,
257     gpointer user_data)
258 {
259   GtkWindow *window = user_data;
260   TpAccountManager *account_manager;
261
262   DEBUG ("Other instance launched, presenting the main window. "
263       "Command=%d, timestamp %u", command, timestamp);
264
265   /* XXX: the standalone app somewhat breaks this case, since
266    * communicating it would be a pain */
267
268   /* We're requested to show stuff again, disable the start hidden global
269    * in case the accounts wizard wants to pop up.
270    */
271   start_hidden = FALSE;
272
273   gtk_window_set_screen (GTK_WINDOW (window),
274       unique_message_data_get_screen (data));
275   gtk_window_set_startup_id (GTK_WINDOW (window),
276       unique_message_data_get_startup_id (data));
277   gtk_window_present_with_time (GTK_WINDOW (window), timestamp);
278   gtk_window_set_skip_taskbar_hint (window, FALSE);
279
280   account_manager = tp_account_manager_dup ();
281   tp_account_manager_prepare_async (account_manager, NULL,
282       account_manager_ready_cb, NULL);
283   g_object_unref (account_manager);
284
285   return UNIQUE_RESPONSE_OK;
286 }
287
288 static gboolean
289 show_version_cb (const char *option_name,
290     const char *value,
291     gpointer data,
292     GError **error)
293 {
294   g_print ("%s\n", PACKAGE_STRING);
295
296   exit (EXIT_SUCCESS);
297
298   return FALSE;
299 }
300
301 static void
302 new_incoming_transfer_cb (EmpathyFTFactory *factory,
303     EmpathyFTHandler *handler,
304     GError *error,
305     gpointer user_data)
306 {
307   if (error)
308     empathy_ft_manager_display_error (handler, error);
309   else
310     empathy_receive_file_with_file_chooser (handler);
311 }
312
313 static void
314 new_ft_handler_cb (EmpathyFTFactory *factory,
315     EmpathyFTHandler *handler,
316     GError *error,
317     gpointer user_data)
318 {
319   if (error)
320     empathy_ft_manager_display_error (handler, error);
321   else
322     empathy_ft_manager_add_handler (handler);
323
324   g_object_unref (handler);
325 }
326
327 static void
328 new_call_handler_cb (EmpathyCallFactory *factory,
329     EmpathyCallHandler *handler,
330     gboolean outgoing,
331     gpointer user_data)
332 {
333   EmpathyCallWindow *window;
334
335   window = empathy_call_window_new (handler);
336   gtk_widget_show (GTK_WIDGET (window));
337 }
338
339 static void
340 account_manager_ready_cb (GObject *source_object,
341     GAsyncResult *result,
342     gpointer user_data)
343 {
344   TpAccountManager *manager = TP_ACCOUNT_MANAGER (source_object);
345   GError *error = NULL;
346   EmpathyIdle *idle;
347   EmpathyConnectivity *connectivity;
348   TpConnectionPresenceType presence;
349   GSettings *gsettings = g_settings_new (EMPATHY_PREFS_SCHEMA);
350
351   if (!tp_account_manager_prepare_finish (manager, result, &error))
352     {
353       DEBUG ("Failed to prepare account manager: %s", error->message);
354       g_error_free (error);
355       return;
356     }
357
358   /* Autoconnect */
359   idle = empathy_idle_dup_singleton ();
360   connectivity = empathy_connectivity_dup_singleton ();
361
362   presence = tp_account_manager_get_most_available_presence (manager, NULL,
363       NULL);
364
365   if (g_settings_get_boolean (gsettings, EMPATHY_PREFS_AUTOCONNECT) &&
366       !no_connect &&
367       tp_connection_presence_type_cmp_availability
368           (presence, TP_CONNECTION_PRESENCE_TYPE_OFFLINE)
369             <= 0)
370       /* if current state is Offline, then put it online */
371       empathy_idle_set_state (idle, TP_CONNECTION_PRESENCE_TYPE_AVAILABLE);
372
373   /* Pop up the accounts dialog if it's needed (either when we don't have any
374    * accounts yet or when we haven't imported mc4 accounts yet */
375   if (!empathy_accounts_has_accounts (manager)
376       || !empathy_import_mc4_has_imported ())
377     show_accounts_ui (gdk_screen_get_default (), TRUE);
378
379   g_object_unref (idle);
380   g_object_unref (connectivity);
381   g_object_unref (gsettings);
382 }
383
384 static EmpathyDispatcher *
385 setup_dispatcher (void)
386 {
387   EmpathyDispatcher *d;
388   GPtrArray *filters;
389   struct {
390     const gchar *channeltype;
391     TpHandleType handletype;
392   } types[] = {
393     /* Text channels with handle types none, contact and room */
394     { TP_IFACE_CHANNEL_TYPE_TEXT, TP_HANDLE_TYPE_NONE  },
395     { TP_IFACE_CHANNEL_TYPE_TEXT, TP_HANDLE_TYPE_CONTACT  },
396     { TP_IFACE_CHANNEL_TYPE_TEXT, TP_HANDLE_TYPE_ROOM  },
397     /* file transfer to contacts */
398     { TP_IFACE_CHANNEL_TYPE_FILE_TRANSFER, TP_HANDLE_TYPE_CONTACT  },
399     /* stream media to contacts */
400     { TP_IFACE_CHANNEL_TYPE_STREAMED_MEDIA, TP_HANDLE_TYPE_CONTACT  },
401     /* roomlists */
402     { TP_IFACE_CHANNEL_TYPE_ROOM_LIST, TP_HANDLE_TYPE_NONE },
403   };
404   gchar *capabilities[] = {
405     "org.freedesktop.Telepathy.Channel.Interface.MediaSignalling/ice-udp",
406     "org.freedesktop.Telepathy.Channel.Interface.MediaSignalling/gtalk-p2p",
407     NULL };
408   GHashTable *asv;
409   guint i;
410
411   /* Setup the basic Client.Handler that matches our client filter */
412   filters = g_ptr_array_new ();
413   asv = tp_asv_new (
414         TP_IFACE_CHANNEL ".ChannelType", G_TYPE_STRING,
415            TP_IFACE_CHANNEL_TYPE_TEXT,
416         TP_IFACE_CHANNEL ".TargetHandleType", G_TYPE_INT,
417             TP_HANDLE_TYPE_CONTACT,
418         NULL);
419   g_ptr_array_add (filters, asv);
420
421   d = empathy_dispatcher_new (PACKAGE_NAME, filters, NULL);
422
423   g_ptr_array_foreach (filters, (GFunc) g_hash_table_destroy, NULL);
424   g_ptr_array_free (filters, TRUE);
425
426   /* Setup the an extended Client.Handler that matches everything we can do */
427   filters = g_ptr_array_new ();
428   for (i = 0 ; i < G_N_ELEMENTS (types); i++)
429     {
430       asv = tp_asv_new (
431         TP_IFACE_CHANNEL ".ChannelType", G_TYPE_STRING, types[i].channeltype,
432         TP_IFACE_CHANNEL ".TargetHandleType", G_TYPE_INT, types[i].handletype,
433         NULL);
434
435       g_ptr_array_add (filters, asv);
436     }
437
438   asv = tp_asv_new (
439         TP_IFACE_CHANNEL ".ChannelType",
440           G_TYPE_STRING, TP_IFACE_CHANNEL_TYPE_STREAMED_MEDIA,
441         TP_IFACE_CHANNEL ".TargetHandleType",
442           G_TYPE_INT, TP_HANDLE_TYPE_CONTACT,
443         TP_IFACE_CHANNEL_TYPE_STREAMED_MEDIA ".InitialAudio",
444           G_TYPE_BOOLEAN, TRUE,
445         NULL);
446   g_ptr_array_add (filters, asv);
447
448   asv = tp_asv_new (
449         TP_IFACE_CHANNEL ".ChannelType",
450           G_TYPE_STRING, TP_IFACE_CHANNEL_TYPE_STREAMED_MEDIA,
451         TP_IFACE_CHANNEL ".TargetHandleType",
452           G_TYPE_INT, TP_HANDLE_TYPE_CONTACT,
453         TP_IFACE_CHANNEL_TYPE_STREAMED_MEDIA ".InitialVideo",
454           G_TYPE_BOOLEAN, TRUE,
455         NULL);
456   g_ptr_array_add (filters, asv);
457
458
459   empathy_dispatcher_add_handler (d, PACKAGE_NAME"MoreThanMeetsTheEye",
460     filters, capabilities);
461
462   g_ptr_array_foreach (filters, (GFunc) g_hash_table_destroy, NULL);
463   g_ptr_array_free (filters, TRUE);
464
465   return d;
466 }
467
468 static void
469 account_status_changed_cb (TpAccount *account,
470     guint old_status,
471     guint new_status,
472     guint reason,
473     gchar *dbus_error_name,
474     GHashTable *details,
475     EmpathyChatroom *room)
476 {
477   TpConnection *conn;
478
479   conn = tp_account_get_connection (account);
480   if (conn == NULL)
481     return;
482
483   empathy_dispatcher_join_muc (conn,
484       empathy_chatroom_get_room (room), EMPATHY_DISPATCHER_NON_USER_ACTION,
485       NULL, NULL);
486 }
487
488 static void
489 account_manager_chatroom_ready_cb (GObject *source_object,
490     GAsyncResult *result,
491     gpointer user_data)
492 {
493   TpAccountManager *account_manager = TP_ACCOUNT_MANAGER (source_object);
494   EmpathyChatroomManager *chatroom_manager = user_data;
495   GList *accounts, *l;
496   GError *error = NULL;
497
498   if (!tp_account_manager_prepare_finish (account_manager, result, &error))
499     {
500       DEBUG ("Failed to prepare account manager: %s", error->message);
501       g_error_free (error);
502       return;
503     }
504
505   accounts = tp_account_manager_get_valid_accounts (account_manager);
506
507   for (l = accounts; l != NULL; l = g_list_next (l))
508     {
509       TpAccount *account = TP_ACCOUNT (l->data);
510       TpConnection *conn;
511       GList *chatrooms, *p;
512
513       conn = tp_account_get_connection (account);
514
515       chatrooms = empathy_chatroom_manager_get_chatrooms (
516           chatroom_manager, account);
517
518       for (p = chatrooms; p != NULL; p = p->next)
519         {
520           EmpathyChatroom *room = EMPATHY_CHATROOM (p->data);
521
522           if (!empathy_chatroom_get_auto_connect (room))
523             continue;
524
525           if (conn == NULL)
526             {
527               g_signal_connect (G_OBJECT (account), "status-changed",
528                   G_CALLBACK (account_status_changed_cb), room);
529             }
530           else
531             {
532               empathy_dispatcher_join_muc (conn,
533                   empathy_chatroom_get_room (room),
534                   EMPATHY_DISPATCHER_NON_USER_ACTION, NULL, NULL);
535             }
536         }
537
538       g_list_free (chatrooms);
539     }
540
541   g_list_free (accounts);
542 }
543
544 static void
545 chatroom_manager_ready_cb (EmpathyChatroomManager *chatroom_manager,
546     GParamSpec *pspec,
547     gpointer user_data)
548 {
549   TpAccountManager *account_manager = user_data;
550
551   tp_account_manager_prepare_async (account_manager, NULL,
552       account_manager_chatroom_ready_cb, chatroom_manager);
553 }
554
555 static void
556 empathy_idle_set_auto_away_cb (GSettings *gsettings,
557                                 const gchar *key,
558                                 gpointer user_data)
559 {
560         EmpathyIdle *idle = user_data;
561
562         empathy_idle_set_auto_away (idle,
563       g_settings_get_boolean (gsettings, key));
564 }
565
566 int
567 main (int argc, char *argv[])
568 {
569 #if HAVE_GEOCLUE
570   EmpathyLocationManager *location_manager = NULL;
571 #endif
572   EmpathyStatusIcon *icon;
573   EmpathyDispatcher *dispatcher;
574   TpAccountManager *account_manager;
575   TplLogManager *log_manager;
576   EmpathyChatroomManager *chatroom_manager;
577   EmpathyCallFactory *call_factory;
578   EmpathyFTFactory  *ft_factory;
579   GtkWidget *window;
580   EmpathyIdle *idle;
581   EmpathyConnectivity *connectivity;
582   EmpathyChatManager *chat_manager;
583   GError *error = NULL;
584   UniqueApp *unique_app;
585   gboolean chatroom_manager_ready;
586   gboolean autoaway = TRUE;
587 #ifdef ENABLE_DEBUG
588   TpDebugSender *debug_sender;
589 #endif
590   GSettings *gsettings;
591
592   GOptionContext *optcontext;
593   GOptionEntry options[] = {
594       { "no-connect", 'n',
595         0, G_OPTION_ARG_NONE, &no_connect,
596         N_("Don't connect on startup"),
597         NULL },
598       { "start-hidden", 'h',
599         0, G_OPTION_ARG_NONE, &start_hidden,
600         N_("Don't display the contact list or any other dialogs on startup"),
601         NULL },
602       { "version", 'v',
603         G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, show_version_cb,
604         NULL, NULL },
605       { NULL }
606   };
607
608   /* Init */
609   g_thread_init (NULL);
610   empathy_init ();
611
612   optcontext = g_option_context_new (N_("- Empathy IM Client"));
613   g_option_context_add_group (optcontext, gst_init_get_option_group ());
614   g_option_context_add_group (optcontext, gtk_get_option_group (TRUE));
615 #if HAVE_LIBCHAMPLAIN
616   g_option_context_add_group (optcontext, clutter_get_option_group ());
617 #endif
618   g_option_context_add_main_entries (optcontext, options, GETTEXT_PACKAGE);
619
620   if (!g_option_context_parse (optcontext, &argc, &argv, &error)) {
621     g_print ("%s\nRun '%s --help' to see a full list of available command line options.\n",
622         error->message, argv[0]);
623     g_warning ("Error in empathy init: %s", error->message);
624     return EXIT_FAILURE;
625   }
626
627   g_option_context_free (optcontext);
628
629   empathy_gtk_init ();
630   g_set_application_name (_(PACKAGE_NAME));
631   g_setenv ("PULSE_PROP_media.role", "phone", TRUE);
632
633   gtk_window_set_default_icon_name ("empathy");
634   textdomain (GETTEXT_PACKAGE);
635
636 #ifdef ENABLE_DEBUG
637   /* Set up debug sender */
638   debug_sender = tp_debug_sender_dup ();
639   g_log_set_default_handler (tp_debug_sender_log_handler, G_LOG_DOMAIN);
640 #endif
641
642   unique_app = unique_app_new ("org.gnome."PACKAGE_NAME, NULL);
643
644   if (unique_app_is_running (unique_app))
645     {
646       unique_app_send_message (unique_app, UNIQUE_ACTIVATE, NULL);
647
648       g_object_unref (unique_app);
649       return EXIT_SUCCESS;
650     }
651
652   notify_init (_(PACKAGE_NAME));
653
654   /* Setting up Idle */
655   idle = empathy_idle_dup_singleton ();
656
657   gsettings = g_settings_new (EMPATHY_PREFS_SCHEMA);
658   autoaway = g_settings_get_boolean (gsettings, EMPATHY_PREFS_AUTOAWAY);
659
660   g_signal_connect (gsettings,
661       "changed::" EMPATHY_PREFS_AUTOAWAY,
662       G_CALLBACK (empathy_idle_set_auto_away_cb), idle);
663
664   empathy_idle_set_auto_away (idle, autoaway);
665
666   /* Setting up Connectivity */
667   connectivity = empathy_connectivity_dup_singleton ();
668   use_conn_notify_cb (gsettings, EMPATHY_PREFS_USE_CONN,
669       connectivity);
670   g_signal_connect (gsettings,
671       "changed::" EMPATHY_PREFS_USE_CONN,
672       G_CALLBACK (use_conn_notify_cb), connectivity);
673
674   /* account management */
675   account_manager = tp_account_manager_dup ();
676   tp_account_manager_prepare_async (account_manager, NULL,
677       account_manager_ready_cb, NULL);
678
679   /* Handle channels */
680   dispatcher = setup_dispatcher ();
681   g_signal_connect (dispatcher, "dispatch", G_CALLBACK (dispatch_cb), NULL);
682
683   migrate_config_to_xdg_dir ();
684
685   /* Setting up UI */
686   window = empathy_main_window_show ();
687   icon = empathy_status_icon_new (GTK_WINDOW (window), start_hidden);
688
689   /* Chat manager */
690   chat_manager = empathy_chat_manager_dup_singleton ();
691
692   g_signal_connect (unique_app, "message-received",
693       G_CALLBACK (unique_app_message_cb), window);
694
695   /* Logging */
696   log_manager = tpl_log_manager_dup_singleton ();
697
698   chatroom_manager = empathy_chatroom_manager_dup_singleton (NULL);
699   empathy_chatroom_manager_observe (chatroom_manager, dispatcher);
700
701   g_object_get (chatroom_manager, "ready", &chatroom_manager_ready, NULL);
702   if (!chatroom_manager_ready)
703     {
704       g_signal_connect (G_OBJECT (chatroom_manager), "notify::ready",
705           G_CALLBACK (chatroom_manager_ready_cb), account_manager);
706     }
707   else
708     {
709       chatroom_manager_ready_cb (chatroom_manager, NULL, account_manager);
710     }
711
712   /* Create the call factory */
713   call_factory = empathy_call_factory_initialise ();
714   g_signal_connect (G_OBJECT (call_factory), "new-call-handler",
715       G_CALLBACK (new_call_handler_cb), NULL);
716   /* Create the FT factory */
717   ft_factory = empathy_ft_factory_dup_singleton ();
718   g_signal_connect (ft_factory, "new-ft-handler",
719       G_CALLBACK (new_ft_handler_cb), NULL);
720   g_signal_connect (ft_factory, "new-incoming-transfer",
721       G_CALLBACK (new_incoming_transfer_cb), NULL);
722
723   /* Location mananger */
724 #if HAVE_GEOCLUE
725   location_manager = empathy_location_manager_dup_singleton ();
726 #endif
727
728   gtk_main ();
729
730   empathy_idle_set_state (idle, TP_CONNECTION_PRESENCE_TYPE_OFFLINE);
731
732 #ifdef ENABLE_DEBUG
733   g_object_unref (debug_sender);
734 #endif
735
736   g_object_unref (chat_manager);
737   g_object_unref (idle);
738   g_object_unref (connectivity);
739   g_object_unref (icon);
740   g_object_unref (account_manager);
741   g_object_unref (log_manager);
742   g_object_unref (dispatcher);
743   g_object_unref (chatroom_manager);
744 #if HAVE_GEOCLUE
745   g_object_unref (location_manager);
746 #endif
747   g_object_unref (ft_factory);
748   g_object_unref (unique_app);
749   g_object_unref (gsettings);
750
751   notify_uninit ();
752   xmlCleanupParser ();
753
754   return EXIT_SUCCESS;
755 }