]> git.0d.be Git - empathy.git/blob - src/empathy.c
EmpathyApp: don't activate app with invalid commandline
[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 void
215 empathy_presence_manager_set_auto_away_cb (GSettings *gsettings,
216     const gchar *key,
217     gpointer user_data)
218 {
219   EmpathyPresenceManager *presence_mgr = user_data;
220
221   empathy_presence_manager_set_auto_away (presence_mgr,
222       g_settings_get_boolean (gsettings, key));
223 }
224
225 #define GNOME_SHELL_BUS_NAME "org.gnome.Shell"
226
227 static void
228 list_names_cb (TpDBusDaemon *bus_daemon,
229         const gchar * const *names,
230         const GError *error,
231         gpointer user_data,
232         GObject *weak_object)
233 {
234   EmpathyApp *self = (EmpathyApp *) weak_object;
235   guint i;
236
237   if (error != NULL)
238       goto out;
239
240   for (i = 0; names[i] != NULL; i++)
241     {
242       if (!tp_strdiff (names[i], GNOME_SHELL_BUS_NAME))
243         {
244           self->shell_running = TRUE;
245           break;
246         }
247     }
248
249 out:
250   if (self->shell_running)
251     {
252       DEBUG ("GNOME Shell is running, don't create status icon");
253
254       /* Rely on GNOME Shell to watch session state */
255       empathy_presence_manager_set_auto_away (self->presence_mgr, FALSE);
256
257       empathy_roster_window_set_shell_running (
258           EMPATHY_ROSTER_WINDOW (self->window), TRUE);
259     }
260   else
261     {
262       gboolean autoaway;
263
264       self->icon = empathy_status_icon_new (GTK_WINDOW (self->window),
265           self->start_hidden);
266
267       /* Allow Empathy to watch session state */
268       autoaway = g_settings_get_boolean (self->gsettings,
269           EMPATHY_PREFS_AUTOAWAY);
270
271       g_signal_connect (self->gsettings,
272           "changed::" EMPATHY_PREFS_AUTOAWAY,
273           G_CALLBACK (empathy_presence_manager_set_auto_away_cb),
274           self->presence_mgr);
275
276       empathy_presence_manager_set_auto_away (self->presence_mgr, autoaway);
277     }
278 }
279
280 static void
281 empathy_app_activate (GApplication *app)
282 {
283   EmpathyApp *self = (EmpathyApp *) app;
284
285   if (!self->activated)
286     {
287       GError *error = NULL;
288       TpDBusDaemon *dbus;
289
290       empathy_gtk_init ();
291
292       /* Create the FT factory */
293       self->ft_factory = empathy_ft_factory_dup_singleton ();
294       g_signal_connect (self->ft_factory, "new-ft-handler",
295           G_CALLBACK (new_ft_handler_cb), NULL);
296       g_signal_connect (self->ft_factory, "new-incoming-transfer",
297           G_CALLBACK (new_incoming_transfer_cb), NULL);
298
299       if (!empathy_ft_factory_register (self->ft_factory, &error))
300         {
301           g_warning ("Failed to register FileTransfer handler: %s",
302               error->message);
303           g_error_free (error);
304         }
305
306       self->activated = TRUE;
307
308       /* Setting up UI */
309       self->window = empathy_roster_window_new (GTK_APPLICATION (app));
310       gtk_application_set_app_menu (GTK_APPLICATION (self),
311           empathy_roster_window_get_menu_model (
312             EMPATHY_ROSTER_WINDOW (self->window)));
313
314       gtk_application_add_window (GTK_APPLICATION (app),
315           GTK_WINDOW (self->window));
316       gtk_application_add_accelerator (GTK_APPLICATION (app),
317           "<Primary>h",
318           "win." EMPATHY_PREFS_UI_SHOW_OFFLINE,
319           NULL);
320
321       /* check if Shell is running */
322       dbus = tp_dbus_daemon_dup (&error);
323       g_assert_no_error (error);
324
325       tp_dbus_daemon_list_names (dbus, -1, list_names_cb,
326               self, NULL, G_OBJECT (self));
327
328       g_object_unref (dbus);
329
330       self->notifications_approver =
331         empathy_notifications_approver_dup_singleton ();
332     }
333
334   if (self->show_preferences)
335     empathy_roster_window_show_preferences (
336         EMPATHY_ROSTER_WINDOW (self->window), self->preferences_tab);
337
338   if (!self->start_hidden)
339     empathy_window_present (GTK_WINDOW (self->window));
340
341   /* Display the accounts dialog if needed */
342   tp_proxy_prepare_async (self->account_manager, NULL,
343       account_manager_ready_cb, self);
344 }
345
346 static gboolean
347 preferences_cb (const char *option_name,
348     const char *value,
349     gpointer data,
350     GError **error)
351 {
352   EmpathyApp *self = data;
353
354   self->show_preferences = TRUE;
355
356   g_free (self->preferences_tab);
357   self->preferences_tab = g_strdup (value);
358
359   return TRUE;
360 }
361
362 static gboolean
363 show_version_cb (const char *option_name,
364     const char *value,
365     gpointer data,
366     GError **error);
367
368 static gboolean
369 empathy_app_local_command_line (GApplication *app,
370     gchar ***arguments,
371     gint *exit_status)
372 {
373   EmpathyApp *self = (EmpathyApp *) app;
374   gint i;
375   gchar **argv;
376   gint argc = 0;
377   gboolean retval = TRUE;
378   GError *error = NULL;
379   gboolean no_connect = FALSE, start_hidden = FALSE;
380
381   GOptionContext *optcontext;
382   GOptionGroup *group;
383   GOptionEntry options[] = {
384       { "no-connect", 'n',
385         0, G_OPTION_ARG_NONE, &no_connect,
386         N_("Don't connect on startup"),
387         NULL },
388       { "start-hidden", 'h',
389         0, G_OPTION_ARG_NONE, &start_hidden,
390         N_("Don't display the contact list or any other dialogs on startup"),
391         NULL },
392       { "show-preferences", 'p',
393         G_OPTION_FLAG_OPTIONAL_ARG, G_OPTION_ARG_CALLBACK, &preferences_cb,
394         NULL, NULL },
395       { "version", 'v',
396         G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, show_version_cb,
397         NULL, NULL },
398       { NULL }
399   };
400
401   if (!g_application_register (app, NULL, &error))
402     {
403       g_warning("Impossible to register empathy: %s", error->message);
404       g_clear_error (&error);
405       *exit_status = EXIT_FAILURE;
406       return retval;
407     }
408
409   /* We create a group so that GOptionArgFuncs get the user data */
410   group = g_option_group_new ("empathy", NULL, NULL, app, NULL);
411   g_option_group_set_translation_domain (group, GETTEXT_PACKAGE);
412   g_option_group_add_entries (group, options);
413
414   optcontext = g_option_context_new (N_("- Empathy IM Client"));
415   g_option_context_add_group (optcontext, gtk_get_option_group (FALSE));
416   g_option_context_set_main_group (optcontext, group);
417   g_option_context_set_translation_domain (optcontext, GETTEXT_PACKAGE);
418
419   argc = g_strv_length (*arguments);
420
421   /* We dup the args because g_option_context_parse() sets things to NULL,
422    * but we want to parse all the command line to the primary instance
423    * if necessary. */
424   argv = g_new (gchar*, argc + 1);
425   for (i = 0; i <= argc; i++)
426     argv[i] = (*arguments)[i];
427
428   if (!g_option_context_parse (optcontext, &argc, &argv, &error))
429     {
430       g_print ("%s\nRun '%s --help' to see a full list of available command "
431           "line options.\n",
432           error->message, argv[0]);
433       g_warning ("Error in empathy init: %s", error->message);
434       g_clear_error (&error);
435
436       *exit_status = EXIT_FAILURE;
437     }
438   else
439     {
440       self->no_connect = no_connect;
441       self->start_hidden = start_hidden;
442
443       g_application_activate (app);
444     }
445
446   g_free (argv);
447   g_option_context_free (optcontext);
448
449   return retval;
450 }
451
452 static void empathy_app_constructed (GObject *object);
453
454 static void
455 empathy_app_class_init (EmpathyAppClass *klass)
456 {
457   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
458   GApplicationClass *g_app_class = G_APPLICATION_CLASS (klass);
459   GParamSpec *spec;
460
461   gobject_class->set_property = empathy_app_set_property;
462   gobject_class->constructed = empathy_app_constructed;
463   gobject_class->dispose = empathy_app_dispose;
464   gobject_class->finalize = empathy_app_finalize;
465
466   g_app_class->local_command_line = empathy_app_local_command_line;
467   g_app_class->activate = empathy_app_activate;
468
469   spec = g_param_spec_boolean ("no-connect", "no connect",
470       "Don't connect on startup",
471       FALSE,
472       G_PARAM_STATIC_STRINGS | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY);
473   g_object_class_install_property (gobject_class, PROP_NO_CONNECT, spec);
474
475   spec = g_param_spec_boolean ("start-hidden", "start hidden",
476       "Don't display the contact list or any other dialogs 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_START_HIDDEN, spec);
480 }
481
482 static void
483 empathy_app_init (EmpathyApp *self)
484 {
485 }
486
487 static void
488 migrate_config_to_xdg_dir (void)
489 {
490   gchar *xdg_dir, *old_dir, *xdg_filename, *old_filename;
491   int i;
492   GFile *xdg_file, *old_file;
493   static const gchar* filenames[] = {
494     "geometry.ini",
495     "irc-networks.xml",
496     "chatrooms.xml",
497     "contact-groups.xml",
498     "status-presets.xml",
499     "accels.txt",
500     NULL
501   };
502
503   xdg_dir = g_build_filename (g_get_user_config_dir (), PACKAGE_NAME, NULL);
504   if (g_file_test (xdg_dir, G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR))
505     {
506       /* xdg config dir already exists */
507       g_free (xdg_dir);
508       return;
509     }
510
511   old_dir = g_build_filename (g_get_home_dir (), ".gnome2",
512       PACKAGE_NAME, NULL);
513   if (!g_file_test (old_dir, G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR))
514     {
515       /* old config dir didn't exist */
516       g_free (xdg_dir);
517       g_free (old_dir);
518       return;
519     }
520
521   if (g_mkdir_with_parents (xdg_dir, (S_IRUSR | S_IWUSR | S_IXUSR)) == -1)
522     {
523       DEBUG ("Failed to create configuration directory; aborting migration");
524       g_free (xdg_dir);
525       g_free (old_dir);
526       return;
527     }
528
529   for (i = 0; filenames[i]; i++)
530     {
531       old_filename = g_build_filename (old_dir, filenames[i], NULL);
532       if (!g_file_test (old_filename, G_FILE_TEST_EXISTS))
533         {
534           g_free (old_filename);
535           continue;
536         }
537       xdg_filename = g_build_filename (xdg_dir, filenames[i], NULL);
538       old_file = g_file_new_for_path (old_filename);
539       xdg_file = g_file_new_for_path (xdg_filename);
540
541       if (!g_file_move (old_file, xdg_file, G_FILE_COPY_NONE,
542           NULL, NULL, NULL, NULL))
543         DEBUG ("Failed to migrate %s", filenames[i]);
544
545       g_free (old_filename);
546       g_free (xdg_filename);
547       g_object_unref (old_file);
548       g_object_unref (xdg_file);
549     }
550
551   g_free (xdg_dir);
552   g_free (old_dir);
553 }
554
555 static void
556 show_accounts_ui (EmpathyApp *self,
557     GdkScreen *screen,
558     gboolean if_needed)
559 {
560   empathy_accounts_dialog_show_application (screen,
561       NULL, if_needed, self->start_hidden);
562 }
563
564 static gboolean
565 show_version_cb (const char *option_name,
566     const char *value,
567     gpointer data,
568     GError **error)
569 {
570   g_print ("%s\n", PACKAGE_STRING);
571
572   exit (EXIT_SUCCESS);
573 }
574
575 static void
576 account_manager_ready_cb (GObject *source_object,
577     GAsyncResult *result,
578     gpointer user_data)
579 {
580   TpAccountManager *manager = TP_ACCOUNT_MANAGER (source_object);
581   EmpathyApp *self = user_data;
582   GError *error = NULL;
583   TpConnectionPresenceType presence;
584
585   if (!tp_proxy_prepare_finish (manager, result, &error))
586     {
587       GtkWidget *dialog;
588
589       DEBUG ("Failed to prepare account manager: %s", error->message);
590
591       dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_MODAL,
592           GTK_MESSAGE_ERROR, GTK_BUTTONS_OK,
593           _("Error contacting the Account Manager"));
594       gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
595           _("There was an error while trying to connect to the Telepathy "
596             "Account Manager. The error was:\n\n%s"),
597           error->message);
598
599       gtk_dialog_run (GTK_DIALOG (dialog));
600       gtk_widget_destroy (dialog);
601
602       g_error_free (error);
603       return;
604     }
605
606   /* Autoconnect */
607   presence = tp_account_manager_get_most_available_presence (manager, NULL,
608       NULL);
609
610   if (g_settings_get_boolean (self->gsettings, EMPATHY_PREFS_AUTOCONNECT) &&
611       !self->no_connect &&
612       tp_connection_presence_type_cmp_availability
613           (presence, TP_CONNECTION_PRESENCE_TYPE_OFFLINE)
614             <= 0)
615       /* if current state is Offline, then put it online */
616       empathy_presence_manager_set_state (self->presence_mgr,
617           TP_CONNECTION_PRESENCE_TYPE_AVAILABLE);
618
619   /* Pop up the accounts dialog if we don't have any account */
620   if (!empathy_accounts_has_accounts (manager))
621     show_accounts_ui (self, gdk_screen_get_default (), TRUE);
622 }
623
624 static void
625 account_join_chatrooms (TpAccount *account,
626   EmpathyChatroomManager *chatroom_manager)
627 {
628   TpConnection *conn;
629   GList *chatrooms, *p;
630
631   /* Wait if we are not connected or the TpConnection is not prepared yet */
632   conn = tp_account_get_connection (account);
633   if (conn == NULL)
634     return;
635
636   chatrooms = empathy_chatroom_manager_get_chatrooms (
637           chatroom_manager, account);
638
639   for (p = chatrooms; p != NULL; p = p->next)
640     {
641       EmpathyChatroom *room = EMPATHY_CHATROOM (p->data);
642
643       if (!empathy_chatroom_get_auto_connect (room))
644         continue;
645
646       empathy_join_muc (account, empathy_chatroom_get_room (room),
647         TP_USER_ACTION_TIME_NOT_USER_ACTION);
648     }
649   g_list_free (chatrooms);
650 }
651
652 static void
653 account_connection_changed_cb (TpAccount *account,
654     GParamSpec *spec,
655     EmpathyChatroomManager *manager)
656 {
657   account_join_chatrooms (account, manager);
658 }
659
660 static void
661 account_manager_chatroom_ready_cb (GObject *source_object,
662     GAsyncResult *result,
663     gpointer user_data)
664 {
665   TpAccountManager *account_manager = TP_ACCOUNT_MANAGER (source_object);
666   EmpathyChatroomManager *chatroom_manager = user_data;
667   GList *accounts, *l;
668   GError *error = NULL;
669
670   if (!tp_proxy_prepare_finish (account_manager, result, &error))
671     {
672       DEBUG ("Failed to prepare account manager: %s", error->message);
673       g_error_free (error);
674       return;
675     }
676
677   accounts = tp_account_manager_dup_valid_accounts (account_manager);
678
679   for (l = accounts; l != NULL; l = g_list_next (l))
680     {
681       TpAccount *account = TP_ACCOUNT (l->data);
682
683       /* Try to join all rooms if we're connected */
684       account_join_chatrooms (account, chatroom_manager);
685
686       /* And/or join them on (re)connection */
687       tp_g_signal_connect_object (account, "notify::connection",
688         G_CALLBACK (account_connection_changed_cb), chatroom_manager, 0);
689     }
690   g_list_free_full (accounts, g_object_unref);
691 }
692
693 static void
694 chatroom_manager_ready_cb (EmpathyChatroomManager *chatroom_manager,
695     GParamSpec *pspec,
696     gpointer user_data)
697 {
698   TpAccountManager *account_manager = user_data;
699
700   tp_proxy_prepare_async (account_manager, NULL,
701       account_manager_chatroom_ready_cb, chatroom_manager);
702 }
703
704 static void
705 empathy_app_constructed (GObject *object)
706 {
707   EmpathyApp *self = (EmpathyApp *) object;
708   gboolean chatroom_manager_ready;
709
710   textdomain (GETTEXT_PACKAGE);
711   g_set_application_name (_(PACKAGE_NAME));
712
713   gtk_window_set_default_icon_name ("empathy");
714
715 #ifdef ENABLE_DEBUG
716   /* Set up debug sender */
717   self->debug_sender = tp_debug_sender_dup ();
718   g_log_set_default_handler (tp_debug_sender_log_handler, G_LOG_DOMAIN);
719 #endif
720
721   notify_init (_(PACKAGE_NAME));
722
723   /* Setting up Idle */
724   self->presence_mgr = empathy_presence_manager_dup_singleton ();
725
726   self->gsettings = g_settings_new (EMPATHY_PREFS_SCHEMA);
727
728   /* account management */
729   self->account_manager = tp_account_manager_dup ();
730   tp_proxy_prepare_async (self->account_manager, NULL,
731       account_manager_ready_cb, self);
732
733   tp_account_manager_enable_restart (self->account_manager);
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->conn_aggregator = empathy_connection_aggregator_dup_singleton ();
760
761   self->activated = FALSE;
762   self->ft_factory = NULL;
763   self->window = NULL;
764 }
765
766 static void
767 add_empathy_features (void)
768 {
769   /* Add 'empathy' specific feature before doing any preparation */
770   EmpathyClientFactory *factory;
771
772   factory = empathy_client_factory_dup ();
773
774   tp_simple_client_factory_add_connection_features_varargs (
775       TP_SIMPLE_CLIENT_FACTORY (factory),
776       /* empathy_connection_aggregator_get_all_groups(), used by
777        * EmpathyGroupsWidget relies on it */
778       TP_CONNECTION_FEATURE_CONTACT_GROUPS,
779       /* empathy_connection_aggregator_dup_all_contacts(), used by
780        * EmpathyEventManager relies on it */
781       TP_CONNECTION_FEATURE_CONTACT_LIST,
782       NULL);
783
784   g_object_unref (factory);
785 }
786
787 int
788 main (int argc, char *argv[])
789 {
790   EmpathyApp *app;
791   gint retval;
792
793   g_type_init ();
794
795 #ifdef HAVE_LIBCHAMPLAIN
796   g_return_val_if_fail (gtk_clutter_init (&argc, &argv) ==
797       CLUTTER_INIT_SUCCESS, 1);
798 #endif
799
800   g_type_init ();
801   empathy_init ();
802
803   add_empathy_features ();
804
805   app = g_object_new (EMPATHY_TYPE_APP,
806       "application-id", EMPATHY_DBUS_NAME,
807       NULL);
808
809   retval = g_application_run (G_APPLICATION (app), argc, argv);
810
811   notify_uninit ();
812   xmlCleanupParser ();
813
814   g_object_unref (app);
815
816   return retval;
817 }