Update Greek translation
[empathy-mirror.git] / src / empathy.c
blob840408de0394d9636c0d85621f41f660a70cd200
1 /*
2 * Copyright (C) 2007-2009 Collabora Ltd.
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.
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.
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
19 * Authors: Xavier Claessens <xclaesse@gmail.com>
22 #include "config.h"
24 #include <glib/gstdio.h>
25 #include <glib/gi18n.h>
26 #include <libnotify/notify.h>
27 #include <tp-account-widgets/tpaw-utils.h>
29 #ifdef HAVE_LIBCHAMPLAIN
30 #include <clutter-gtk/clutter-gtk.h>
31 #endif
33 #include "empathy-accounts-common.h"
34 #include "empathy-accounts-dialog.h"
35 #include "empathy-bus-names.h"
36 #include "empathy-chatroom-manager.h"
37 #include "empathy-client-factory.h"
38 #include "empathy-connection-aggregator.h"
39 #include "empathy-ft-factory.h"
40 #include "empathy-ft-manager.h"
41 #include "empathy-gsettings.h"
42 #include "empathy-location-manager.h"
43 #include "empathy-notifications-approver.h"
44 #include "empathy-presence-manager.h"
45 #include "empathy-request-util.h"
46 #include "empathy-roster-window.h"
47 #include "empathy-status-icon.h"
48 #include "empathy-ui-utils.h"
49 #include "empathy-utils.h"
51 #define DEBUG_FLAG EMPATHY_DEBUG_OTHER
52 #include "empathy-debug.h"
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))
61 typedef struct _EmpathyApp EmpathyApp;
62 typedef struct _EmpathyAppClass EmpathyAppClass;
64 enum
66 PROP_NO_CONNECT = 1,
67 PROP_START_HIDDEN
70 GType empathy_app_get_type (void);
72 struct _EmpathyAppClass
74 GtkApplicationClass parent_class;
77 struct _EmpathyApp
79 GtkApplication parent;
81 /* Properties */
82 gboolean no_connect;
83 gboolean start_hidden;
84 gboolean show_preferences;
85 gchar *preferences_tab;
87 gboolean activated;
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
106 gboolean shell_running;
110 G_DEFINE_TYPE(EmpathyApp, empathy_app, GTK_TYPE_APPLICATION)
112 static void
113 empathy_app_dispose (GObject *object)
115 EmpathyApp *self = EMPATHY_APP (object);
116 void (*dispose) (GObject *) =
117 G_OBJECT_CLASS (empathy_app_parent_class)->dispose;
119 empathy_presence_manager_set_state (self->presence_mgr,
120 TP_CONNECTION_PRESENCE_TYPE_OFFLINE);
122 #ifdef ENABLE_DEBUG
123 tp_clear_object (&self->debug_sender);
124 #endif
126 tp_clear_object (&self->presence_mgr);
127 tp_clear_object (&self->icon);
128 tp_clear_object (&self->account_manager);
129 tp_clear_object (&self->log_manager);
130 tp_clear_object (&self->chatroom_manager);
131 #ifdef HAVE_GEOCLUE
132 tp_clear_object (&self->location_manager);
133 #endif
134 tp_clear_object (&self->ft_factory);
135 tp_clear_object (&self->gsettings);
136 tp_clear_object (&self->notifications_approver);
137 tp_clear_object (&self->conn_aggregator);
139 if (dispose != NULL)
140 dispose (object);
143 static void
144 empathy_app_finalize (GObject *object)
146 EmpathyApp *self = EMPATHY_APP (object);
147 void (*finalize) (GObject *) =
148 G_OBJECT_CLASS (empathy_app_parent_class)->finalize;
150 g_free (self->preferences_tab);
152 if (finalize != NULL)
153 finalize (object);
156 static void account_manager_ready_cb (GObject *source_object,
157 GAsyncResult *result,
158 gpointer user_data);
160 static void
161 empathy_app_set_property (GObject *object,
162 guint prop_id,
163 const GValue *value,
164 GParamSpec *pspec)
166 EmpathyApp *self = EMPATHY_APP (object);
168 switch (prop_id)
170 case PROP_NO_CONNECT:
171 self->no_connect = g_value_get_boolean (value);
172 break;
173 case PROP_START_HIDDEN:
174 self->start_hidden = g_value_get_boolean (value);
175 break;
176 default:
177 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
178 break;
182 static void
183 new_incoming_transfer_cb (EmpathyFTFactory *factory,
184 EmpathyFTHandler *handler,
185 GError *error,
186 gpointer user_data)
188 if (error)
189 empathy_ft_manager_display_error (handler, error);
190 else
191 empathy_receive_file_with_file_chooser (handler);
194 static void
195 new_ft_handler_cb (EmpathyFTFactory *factory,
196 EmpathyFTHandler *handler,
197 GError *error,
198 gpointer user_data)
200 if (error)
201 empathy_ft_manager_display_error (handler, error);
202 else
203 empathy_ft_manager_add_handler (handler);
205 g_object_unref (handler);
208 static void
209 empathy_presence_manager_set_auto_away_cb (GSettings *gsettings,
210 const gchar *key,
211 gpointer user_data)
213 EmpathyPresenceManager *presence_mgr = user_data;
215 empathy_presence_manager_set_auto_away (presence_mgr,
216 g_settings_get_boolean (gsettings, key));
219 #define GNOME_SHELL_BUS_NAME "org.gnome.Shell"
221 static void
222 list_names_cb (TpDBusDaemon *bus_daemon,
223 const gchar * const *names,
224 const GError *error,
225 gpointer user_data,
226 GObject *weak_object)
228 EmpathyApp *self = (EmpathyApp *) weak_object;
229 guint i;
231 if (error != NULL)
232 goto out;
234 for (i = 0; names[i] != NULL; i++)
236 if (!tp_strdiff (names[i], GNOME_SHELL_BUS_NAME))
238 self->shell_running = TRUE;
239 break;
243 out:
244 if (self->shell_running)
246 DEBUG ("GNOME Shell is running, don't create status icon");
248 empathy_roster_window_set_shell_running (
249 EMPATHY_ROSTER_WINDOW (self->window), TRUE);
251 else
253 self->icon = empathy_status_icon_new (GTK_WINDOW (self->window),
254 self->start_hidden);
257 /* Now that we have been started, reset this flag so future invocation will
258 * be able to raise the window, see bgo#729282 */
259 self->start_hidden = FALSE;
262 static void
263 empathy_app_activate (GApplication *app)
265 EmpathyApp *self = (EmpathyApp *) app;
267 if (!self->activated)
269 GError *error = NULL;
270 TpDBusDaemon *dbus;
271 gboolean autoaway;
273 empathy_gtk_init ();
275 /* Create the FT factory */
276 self->ft_factory = empathy_ft_factory_dup_singleton ();
277 g_signal_connect (self->ft_factory, "new-ft-handler",
278 G_CALLBACK (new_ft_handler_cb), NULL);
279 g_signal_connect (self->ft_factory, "new-incoming-transfer",
280 G_CALLBACK (new_incoming_transfer_cb), NULL);
282 if (!empathy_ft_factory_register (self->ft_factory, &error))
284 g_warning ("Failed to register FileTransfer handler: %s",
285 error->message);
286 g_error_free (error);
289 self->activated = TRUE;
291 /* Setting up UI */
292 self->window = empathy_roster_window_new (GTK_APPLICATION (app));
293 gtk_application_set_app_menu (GTK_APPLICATION (self),
294 empathy_roster_window_get_menu_model (
295 EMPATHY_ROSTER_WINDOW (self->window)));
297 gtk_application_add_window (GTK_APPLICATION (app),
298 GTK_WINDOW (self->window));
299 gtk_application_add_accelerator (GTK_APPLICATION (app),
300 "<Primary>h",
301 "win." EMPATHY_PREFS_UI_SHOW_OFFLINE,
302 NULL);
304 /* Allow Empathy to watch session state */
305 autoaway = g_settings_get_boolean (self->gsettings,
306 EMPATHY_PREFS_AUTOAWAY);
308 g_signal_connect (self->gsettings,
309 "changed::" EMPATHY_PREFS_AUTOAWAY,
310 G_CALLBACK (empathy_presence_manager_set_auto_away_cb),
311 self->presence_mgr);
313 empathy_presence_manager_set_auto_away (self->presence_mgr, autoaway);
315 /* check if Shell is running */
316 dbus = tp_dbus_daemon_dup (&error);
317 g_assert_no_error (error);
319 tp_dbus_daemon_list_names (dbus, -1, list_names_cb,
320 self, NULL, G_OBJECT (self));
322 g_object_unref (dbus);
324 self->notifications_approver =
325 empathy_notifications_approver_dup_singleton ();
328 if (self->show_preferences)
330 empathy_roster_window_show_preferences (
331 EMPATHY_ROSTER_WINDOW (self->window),
332 tp_str_empty (self->preferences_tab) ? NULL : self->preferences_tab);
334 self->show_preferences = FALSE;
336 else
338 if (!self->start_hidden)
339 tpaw_window_present (GTK_WINDOW (self->window));
342 /* Display the accounts dialog if needed */
343 tp_proxy_prepare_async (self->account_manager, NULL,
344 account_manager_ready_cb, self);
347 static gboolean
348 preferences_cb (const char *option_name,
349 const char *value,
350 gpointer data,
351 GError **error)
353 EmpathyApp *self = data;
355 self->show_preferences = TRUE;
357 g_free (self->preferences_tab);
358 self->preferences_tab = g_strdup (value);
360 return TRUE;
363 static gboolean
364 show_version_cb (const char *option_name,
365 const char *value,
366 gpointer data,
367 GError **error);
369 static void
370 open_preference_action_cb (GAction *action,
371 GVariant *parameter,
372 gpointer data)
374 EmpathyApp *self = EMPATHY_APP (data);
376 self->show_preferences = TRUE;
378 g_free (self->preferences_tab);
379 self->preferences_tab = g_variant_dup_string (parameter, NULL);
382 static gboolean
383 empathy_app_local_command_line (GApplication *app,
384 gchar ***arguments,
385 gint *exit_status)
387 EmpathyApp *self = (EmpathyApp *) app;
388 GSimpleAction *action;
389 gint i;
390 gchar **argv;
391 gint argc = 0;
392 gboolean retval = TRUE;
393 GError *error = NULL;
394 gboolean no_connect = FALSE, start_hidden = FALSE;
396 GOptionContext *optcontext;
397 GOptionGroup *group;
398 GOptionEntry options[] = {
399 { "no-connect", 'n',
400 0, G_OPTION_ARG_NONE, &no_connect,
401 N_("Don’t connect on startup"),
402 NULL },
403 { "start-hidden", 'h',
404 0, G_OPTION_ARG_NONE, &start_hidden,
405 N_("Don’t display the contact list or any other dialogs on startup"),
406 NULL },
407 { "show-preferences", 'p',
408 G_OPTION_FLAG_OPTIONAL_ARG, G_OPTION_ARG_CALLBACK, &preferences_cb,
409 NULL, NULL },
410 { "version", 'v',
411 G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, show_version_cb,
412 NULL, NULL },
413 { NULL }
416 if (!g_application_register (app, NULL, &error))
418 g_warning ("Impossible to register empathy: %s", error->message);
419 g_clear_error (&error);
420 *exit_status = EXIT_FAILURE;
421 return retval;
424 action = g_simple_action_new ("open-preferences", G_VARIANT_TYPE_STRING);
425 g_signal_connect (action, "activate", G_CALLBACK (open_preference_action_cb), app);
426 g_action_map_add_action (G_ACTION_MAP (app), G_ACTION (action));
427 g_object_unref (action);
429 /* We create a group so that GOptionArgFuncs get the user data */
430 group = g_option_group_new ("empathy", NULL, NULL, app, NULL);
431 g_option_group_set_translation_domain (group, GETTEXT_PACKAGE);
432 g_option_group_add_entries (group, options);
434 optcontext = g_option_context_new (N_("— Empathy IM Client"));
435 g_option_context_add_group (optcontext, gtk_get_option_group (FALSE));
436 g_option_context_set_main_group (optcontext, group);
437 g_option_context_set_translation_domain (optcontext, GETTEXT_PACKAGE);
439 argc = g_strv_length (*arguments);
441 /* We dup the args because g_option_context_parse() sets things to NULL,
442 * but we want to parse all the command line to the primary instance
443 * if necessary. */
444 argv = g_new (gchar*, argc + 1);
445 for (i = 0; i <= argc; i++)
446 argv[i] = (*arguments)[i];
448 if (!g_option_context_parse (optcontext, &argc, &argv, &error))
450 g_print ("%s\nRun '%s --help' to see a full list of available command "
451 "line options.\n",
452 error->message, argv[0]);
453 g_warning ("Error in empathy init: %s", error->message);
454 g_clear_error (&error);
456 *exit_status = EXIT_FAILURE;
458 else
460 self->no_connect = no_connect;
461 self->start_hidden = start_hidden;
463 if (self->show_preferences)
465 GVariant *parameter;
466 parameter = g_variant_new_string (self->preferences_tab ? self->preferences_tab : "");
467 g_action_group_activate_action (G_ACTION_GROUP (app), "open-preferences", parameter);
470 g_application_activate (app);
473 g_free (argv);
474 g_option_context_free (optcontext);
476 return retval;
479 static void empathy_app_constructed (GObject *object);
481 static void
482 empathy_app_class_init (EmpathyAppClass *klass)
484 GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
485 GApplicationClass *g_app_class = G_APPLICATION_CLASS (klass);
486 GParamSpec *spec;
488 gobject_class->set_property = empathy_app_set_property;
489 gobject_class->constructed = empathy_app_constructed;
490 gobject_class->dispose = empathy_app_dispose;
491 gobject_class->finalize = empathy_app_finalize;
493 g_app_class->local_command_line = empathy_app_local_command_line;
494 g_app_class->activate = empathy_app_activate;
496 spec = g_param_spec_boolean ("no-connect", "no connect",
497 "Don't connect on startup",
498 FALSE,
499 G_PARAM_STATIC_STRINGS | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY);
500 g_object_class_install_property (gobject_class, PROP_NO_CONNECT, spec);
502 spec = g_param_spec_boolean ("start-hidden", "start hidden",
503 "Don't display the contact list or any other dialogs on startup",
504 FALSE,
505 G_PARAM_STATIC_STRINGS | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY);
506 g_object_class_install_property (gobject_class, PROP_START_HIDDEN, spec);
509 static void
510 empathy_app_init (EmpathyApp *self)
514 static void
515 migrate_config_to_xdg_dir (void)
517 gchar *xdg_dir, *old_dir, *xdg_filename, *old_filename;
518 int i;
519 GFile *xdg_file, *old_file;
520 static const gchar* filenames[] = {
521 "geometry.ini",
522 "irc-networks.xml",
523 "chatrooms.xml",
524 "contact-groups.xml",
525 "status-presets.xml",
526 "accels.txt",
527 NULL
530 xdg_dir = g_build_filename (g_get_user_config_dir (), PACKAGE_NAME, NULL);
531 if (g_file_test (xdg_dir, G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR))
533 /* xdg config dir already exists */
534 g_free (xdg_dir);
535 return;
538 old_dir = g_build_filename (g_get_home_dir (), ".gnome2",
539 PACKAGE_NAME, NULL);
540 if (!g_file_test (old_dir, G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR))
542 /* old config dir didn't exist */
543 g_free (xdg_dir);
544 g_free (old_dir);
545 return;
548 if (g_mkdir_with_parents (xdg_dir, (S_IRUSR | S_IWUSR | S_IXUSR)) == -1)
550 DEBUG ("Failed to create configuration directory; aborting migration");
551 g_free (xdg_dir);
552 g_free (old_dir);
553 return;
556 for (i = 0; filenames[i]; i++)
558 old_filename = g_build_filename (old_dir, filenames[i], NULL);
559 if (!g_file_test (old_filename, G_FILE_TEST_EXISTS))
561 g_free (old_filename);
562 continue;
564 xdg_filename = g_build_filename (xdg_dir, filenames[i], NULL);
565 old_file = g_file_new_for_path (old_filename);
566 xdg_file = g_file_new_for_path (xdg_filename);
568 if (!g_file_move (old_file, xdg_file, G_FILE_COPY_NONE,
569 NULL, NULL, NULL, NULL))
570 DEBUG ("Failed to migrate %s", filenames[i]);
572 g_free (old_filename);
573 g_free (xdg_filename);
574 g_object_unref (old_file);
575 g_object_unref (xdg_file);
578 g_free (xdg_dir);
579 g_free (old_dir);
582 static void
583 show_accounts_ui (EmpathyApp *self,
584 GdkScreen *screen,
585 gboolean if_needed)
587 empathy_accounts_dialog_show_application (screen,
588 NULL, if_needed, self->start_hidden);
591 static gboolean
592 show_version_cb (const char *option_name,
593 const char *value,
594 gpointer data,
595 GError **error)
597 g_print ("%s\n", PACKAGE_STRING);
599 exit (EXIT_SUCCESS);
602 static void
603 account_manager_ready_cb (GObject *source_object,
604 GAsyncResult *result,
605 gpointer user_data)
607 TpAccountManager *manager = TP_ACCOUNT_MANAGER (source_object);
608 EmpathyApp *self = user_data;
609 GError *error = NULL;
610 TpConnectionPresenceType presence;
612 if (!tp_proxy_prepare_finish (manager, result, &error))
614 GtkWidget *dialog;
616 DEBUG ("Failed to prepare account manager: %s", error->message);
618 dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_MODAL,
619 GTK_MESSAGE_ERROR, GTK_BUTTONS_OK,
620 _("Error contacting the Account Manager"));
621 gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
622 _("There was an error while trying to connect to the Telepathy "
623 "Account Manager. The error was:\n\n%s"),
624 error->message);
626 gtk_dialog_run (GTK_DIALOG (dialog));
627 gtk_widget_destroy (dialog);
629 g_error_free (error);
630 return;
633 /* Autoconnect */
634 presence = tp_account_manager_get_most_available_presence (manager, NULL,
635 NULL);
637 if (g_settings_get_boolean (self->gsettings, EMPATHY_PREFS_AUTOCONNECT) &&
638 !self->no_connect &&
639 tp_connection_presence_type_cmp_availability
640 (presence, TP_CONNECTION_PRESENCE_TYPE_OFFLINE)
641 <= 0)
642 /* if current state is Offline, then put it online */
643 empathy_presence_manager_set_state (self->presence_mgr,
644 TP_CONNECTION_PRESENCE_TYPE_AVAILABLE);
646 /* Pop up the accounts dialog if we don't have any account */
647 if (!empathy_accounts_has_accounts (manager))
648 show_accounts_ui (self, gdk_screen_get_default (), TRUE);
651 static void
652 account_join_chatrooms (TpAccount *account,
653 EmpathyChatroomManager *chatroom_manager)
655 TpConnection *conn;
656 GList *chatrooms, *p;
658 /* Wait if we are not connected or the TpConnection is not prepared yet */
659 conn = tp_account_get_connection (account);
660 if (conn == NULL)
661 return;
663 chatrooms = empathy_chatroom_manager_get_chatrooms (
664 chatroom_manager, account);
666 for (p = chatrooms; p != NULL; p = p->next)
668 EmpathyChatroom *room = EMPATHY_CHATROOM (p->data);
670 if (!empathy_chatroom_get_auto_connect (room))
671 continue;
673 empathy_join_muc (account, empathy_chatroom_get_room (room),
674 TP_USER_ACTION_TIME_NOT_USER_ACTION);
676 g_list_free (chatrooms);
679 static void
680 account_connection_changed_cb (TpAccount *account,
681 GParamSpec *spec,
682 EmpathyChatroomManager *manager)
684 account_join_chatrooms (account, manager);
687 static void
688 account_manager_chatroom_ready_cb (GObject *source_object,
689 GAsyncResult *result,
690 gpointer user_data)
692 TpAccountManager *account_manager = TP_ACCOUNT_MANAGER (source_object);
693 EmpathyChatroomManager *chatroom_manager = user_data;
694 GList *accounts, *l;
695 GError *error = NULL;
697 if (!tp_proxy_prepare_finish (account_manager, result, &error))
699 DEBUG ("Failed to prepare account manager: %s", error->message);
700 g_error_free (error);
701 return;
704 accounts = tp_account_manager_dup_valid_accounts (account_manager);
706 for (l = accounts; l != NULL; l = g_list_next (l))
708 TpAccount *account = TP_ACCOUNT (l->data);
710 /* Try to join all rooms if we're connected */
711 account_join_chatrooms (account, chatroom_manager);
713 /* And/or join them on (re)connection */
714 tp_g_signal_connect_object (account, "notify::connection",
715 G_CALLBACK (account_connection_changed_cb), chatroom_manager, 0);
717 g_list_free_full (accounts, g_object_unref);
720 static void
721 chatroom_manager_ready_cb (EmpathyChatroomManager *chatroom_manager,
722 GParamSpec *pspec,
723 gpointer user_data)
725 TpAccountManager *account_manager = user_data;
727 tp_proxy_prepare_async (account_manager, NULL,
728 account_manager_chatroom_ready_cb, chatroom_manager);
731 static void
732 empathy_app_constructed (GObject *object)
734 EmpathyApp *self = (EmpathyApp *) object;
735 gboolean chatroom_manager_ready;
737 textdomain (GETTEXT_PACKAGE);
738 g_set_application_name (_(PACKAGE_NAME));
740 gtk_window_set_default_icon_name ("empathy");
742 #ifdef ENABLE_DEBUG
743 /* Set up debug sender */
744 self->debug_sender = tp_debug_sender_dup ();
745 g_log_set_default_handler (tp_debug_sender_log_handler, G_LOG_DOMAIN);
746 #endif
748 notify_init (_(PACKAGE_NAME));
750 /* Setting up Idle */
751 self->presence_mgr = empathy_presence_manager_dup_singleton ();
753 self->gsettings = g_settings_new (EMPATHY_PREFS_SCHEMA);
755 /* account management */
756 self->account_manager = tp_account_manager_dup ();
757 tp_proxy_prepare_async (self->account_manager, NULL,
758 account_manager_ready_cb, self);
760 tp_account_manager_enable_restart (self->account_manager);
762 migrate_config_to_xdg_dir ();
764 /* Logging */
765 self->log_manager = tpl_log_manager_dup_singleton ();
767 self->chatroom_manager = empathy_chatroom_manager_dup_singleton (NULL);
769 g_object_get (self->chatroom_manager, "ready", &chatroom_manager_ready, NULL);
770 if (!chatroom_manager_ready)
772 g_signal_connect (G_OBJECT (self->chatroom_manager), "notify::ready",
773 G_CALLBACK (chatroom_manager_ready_cb), self->account_manager);
775 else
777 chatroom_manager_ready_cb (self->chatroom_manager, NULL,
778 self->account_manager);
781 /* Location mananger */
782 #ifdef HAVE_GEOCLUE
783 self->location_manager = empathy_location_manager_dup_singleton ();
784 #endif
786 self->conn_aggregator = empathy_connection_aggregator_dup_singleton ();
788 self->activated = FALSE;
789 self->ft_factory = NULL;
790 self->window = NULL;
793 static void
794 add_empathy_features (void)
796 /* Add 'empathy' specific feature before doing any preparation */
797 EmpathyClientFactory *factory;
799 factory = empathy_client_factory_dup ();
801 tp_simple_client_factory_add_connection_features_varargs (
802 TP_SIMPLE_CLIENT_FACTORY (factory),
803 /* empathy_connection_aggregator_get_all_groups(), used by
804 * EmpathyGroupsWidget relies on it */
805 TP_CONNECTION_FEATURE_CONTACT_GROUPS,
806 /* empathy_connection_aggregator_dup_all_contacts(), used by
807 * EmpathyEventManager relies on it */
808 TP_CONNECTION_FEATURE_CONTACT_LIST,
809 NULL);
811 g_object_unref (factory);
815 main (int argc, char *argv[])
817 EmpathyApp *app;
818 gint retval;
820 g_type_init ();
822 #ifdef HAVE_LIBCHAMPLAIN
823 g_return_val_if_fail (gtk_clutter_init (&argc, &argv) ==
824 CLUTTER_INIT_SUCCESS, 1);
825 #endif
827 g_type_init ();
828 empathy_init ();
830 add_empathy_features ();
832 app = g_object_new (EMPATHY_TYPE_APP,
833 "application-id", EMPATHY_BUS_NAME,
834 NULL);
836 retval = g_application_run (G_APPLICATION (app), argc, argv);
838 notify_uninit ();
839 xmlCleanupParser ();
841 g_object_unref (app);
843 return retval;