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>
29 #include <glib/gi18n.h>
32 #include <unique/unique.h>
35 #include <clutter-gtk/clutter-gtk.h>
38 #include <libebook/e-book.h>
39 #include <libnotify/notify.h>
41 #include <telepathy-glib/account-manager.h>
42 #include <telepathy-glib/dbus.h>
43 #include <telepathy-glib/util.h>
44 #include <telepathy-glib/connection-manager.h>
45 #include <telepathy-glib/interfaces.h>
47 #include <libempathy/empathy-idle.h>
48 #include <libempathy/empathy-utils.h>
49 #include <libempathy/empathy-call-factory.h>
50 #include <libempathy/empathy-chatroom-manager.h>
51 #include <libempathy/empathy-account-settings.h>
52 #include <libempathy/empathy-connectivity.h>
53 #include <libempathy/empathy-connection-managers.h>
54 #include <libempathy/empathy-debugger.h>
55 #include <libempathy/empathy-dispatcher.h>
56 #include <libempathy/empathy-dispatch-operation.h>
57 #include <libempathy/empathy-log-manager.h>
58 #include <libempathy/empathy-ft-factory.h>
59 #include <libempathy/empathy-tp-chat.h>
60 #include <libempathy/empathy-tp-call.h>
62 #include <libempathy-gtk/empathy-conf.h>
63 #include <libempathy-gtk/empathy-ui-utils.h>
64 #include <libempathy-gtk/empathy-location-manager.h>
66 #include "empathy-account-assistant.h"
67 #include "empathy-accounts-dialog.h"
68 #include "empathy-main-window.h"
69 #include "empathy-status-icon.h"
70 #include "empathy-call-window.h"
71 #include "empathy-chat-window.h"
72 #include "empathy-ft-manager.h"
73 #include "empathy-import-mc4-accounts.h"
75 #include "extensions/extensions.h"
77 #define DEBUG_FLAG EMPATHY_DEBUG_OTHER
78 #include <libempathy/empathy-debug.h>
82 #define COMMAND_ACCOUNTS_DIALOG 1
84 static gboolean account_dialog_only
= FALSE
;
85 static gboolean start_hidden
= FALSE
;
86 static gboolean no_connect
= FALSE
;
89 dispatch_cb (EmpathyDispatcher
*dispatcher
,
90 EmpathyDispatchOperation
*operation
,
95 channel_type
= empathy_dispatch_operation_get_channel_type_id (operation
);
97 if (channel_type
== TP_IFACE_QUARK_CHANNEL_TYPE_TEXT
)
99 EmpathyTpChat
*tp_chat
;
100 EmpathyChat
*chat
= NULL
;
103 tp_chat
= EMPATHY_TP_CHAT
104 (empathy_dispatch_operation_get_channel_wrapper (operation
));
106 id
= empathy_tp_chat_get_id (tp_chat
);
107 if (!EMP_STR_EMPTY (id
))
109 TpConnection
*connection
;
112 connection
= empathy_tp_chat_get_connection (tp_chat
);
113 account
= empathy_get_account_for_connection (connection
);
114 chat
= empathy_chat_window_find_chat (account
, id
);
119 empathy_chat_set_tp_chat (chat
, tp_chat
);
123 chat
= empathy_chat_new (tp_chat
);
124 /* empathy_chat_new returns a floating reference as EmpathyChat is
125 * a GtkWidget. This reference will be taken by a container
126 * (a GtkNotebook) when we'll call empathy_chat_window_present_chat */
129 empathy_chat_window_present_chat (chat
);
131 empathy_dispatch_operation_claim (operation
);
133 else if (channel_type
== TP_IFACE_QUARK_CHANNEL_TYPE_STREAMED_MEDIA
)
135 EmpathyCallFactory
*factory
;
137 factory
= empathy_call_factory_get ();
138 empathy_call_factory_claim_channel (factory
, operation
);
140 else if (channel_type
== TP_IFACE_QUARK_CHANNEL_TYPE_FILE_TRANSFER
)
142 EmpathyFTFactory
*factory
;
144 factory
= empathy_ft_factory_dup_singleton ();
146 /* if the operation is not incoming, don't claim it,
147 * as it might have been triggered by another client, and
148 * we are observing it.
150 if (empathy_dispatch_operation_is_incoming (operation
))
151 empathy_ft_factory_claim_channel (factory
, operation
);
155 /* Salut account creation. The TpAccountManager first argument
156 * must already be prepared when calling this function. */
158 should_create_salut_account (TpAccountManager
*manager
)
160 gboolean salut_created
= FALSE
;
163 /* Check if we already created a salut account */
164 empathy_conf_get_bool (empathy_conf_get (),
165 EMPATHY_PREFS_SALUT_ACCOUNT_CREATED
,
170 DEBUG ("Gconf says we already created a salut account once");
174 accounts
= tp_account_manager_get_valid_accounts (manager
);
176 for (l
= accounts
; l
!= NULL
; l
= g_list_next (l
))
178 TpAccount
*account
= TP_ACCOUNT (l
->data
);
180 if (!tp_strdiff (tp_account_get_protocol (account
), "local-xmpp"))
182 salut_created
= TRUE
;
187 g_list_free (accounts
);
191 DEBUG ("Existing salut account already exists, flagging so in gconf");
192 empathy_conf_set_bool (empathy_conf_get (),
193 EMPATHY_PREFS_SALUT_ACCOUNT_CREATED
,
197 return !salut_created
;
201 salut_account_created (GObject
*source
,
202 GAsyncResult
*result
,
205 EmpathyAccountSettings
*settings
= EMPATHY_ACCOUNT_SETTINGS (source
);
207 GError
*error
= NULL
;
209 if (!empathy_account_settings_apply_finish (settings
, result
, &error
))
211 DEBUG ("Failed to create salut account: %s", error
->message
);
212 g_error_free (error
);
216 account
= empathy_account_settings_get_account (settings
);
218 tp_account_set_enabled_async (account
, TRUE
, NULL
, NULL
);
219 empathy_conf_set_bool (empathy_conf_get (),
220 EMPATHY_PREFS_SALUT_ACCOUNT_CREATED
,
225 use_conn_notify_cb (EmpathyConf
*conf
,
229 EmpathyConnectivity
*connectivity
= user_data
;
232 if (empathy_conf_get_bool (conf
, key
, &use_conn
))
234 empathy_connectivity_set_use_conn (connectivity
, use_conn
);
239 create_salut_account_am_ready_cb (GObject
*source_object
,
240 GAsyncResult
*result
,
243 TpAccountManager
*account_manager
= TP_ACCOUNT_MANAGER (source_object
);
244 EmpathyConnectionManagers
*managers
= user_data
;
245 EmpathyAccountSettings
*settings
;
246 TpConnectionManager
*manager
;
247 const TpConnectionManagerProtocol
*protocol
;
250 gchar
*nickname
= NULL
;
251 gchar
*first_name
= NULL
;
252 gchar
*last_name
= NULL
;
255 GError
*error
= NULL
;
257 if (!tp_account_manager_prepare_finish (account_manager
, result
, &error
))
259 DEBUG ("Failed to prepare account manager: %s", error
->message
);
260 g_error_free (error
);
264 if (!should_create_salut_account (account_manager
))
267 manager
= empathy_connection_managers_get_cm (managers
, "salut");
270 DEBUG ("Salut not installed, not making a salut account");
274 protocol
= tp_connection_manager_get_protocol (manager
, "local-xmpp");
275 if (protocol
== NULL
)
277 DEBUG ("Salut doesn't support local-xmpp!!");
281 DEBUG ("Trying to add a salut account...");
283 /* Get self EContact from EDS */
284 if (!e_book_get_self (&contact
, &book
, &error
))
286 DEBUG ("Failed to get self econtact: %s",
287 error
? error
->message
: "No error given");
288 g_clear_error (&error
);
292 settings
= empathy_account_settings_new ("salut", "local-xmpp",
295 nickname
= e_contact_get (contact
, E_CONTACT_NICKNAME
);
296 first_name
= e_contact_get (contact
, E_CONTACT_GIVEN_NAME
);
297 last_name
= e_contact_get (contact
, E_CONTACT_FAMILY_NAME
);
298 email
= e_contact_get (contact
, E_CONTACT_EMAIL_1
);
299 jid
= e_contact_get (contact
, E_CONTACT_IM_JABBER_HOME_1
);
301 if (!tp_strdiff (nickname
, "nickname"))
307 DEBUG ("Salut account created:\nnickname=%s\nfirst-name=%s\n"
308 "last-name=%s\nemail=%s\njid=%s\n",
309 nickname
, first_name
, last_name
, email
, jid
);
311 empathy_account_settings_set_string (settings
,
312 "nickname", nickname
? nickname
: "");
313 empathy_account_settings_set_string (settings
,
314 "first-name", first_name
? first_name
: "");
315 empathy_account_settings_set_string (settings
,
316 "last-name", last_name
? last_name
: "");
317 empathy_account_settings_set_string (settings
, "email", email
? email
: "");
318 empathy_account_settings_set_string (settings
, "jid", jid
? jid
: "");
320 empathy_account_settings_apply_async (settings
,
321 salut_account_created
, NULL
);
328 g_object_unref (settings
);
329 g_object_unref (contact
);
330 g_object_unref (book
);
333 g_object_unref (managers
);
337 create_salut_account_if_needed (EmpathyConnectionManagers
*managers
)
339 TpAccountManager
*manager
;
341 manager
= tp_account_manager_dup ();
343 tp_account_manager_prepare_async (manager
, NULL
,
344 create_salut_account_am_ready_cb
, g_object_ref (managers
));
346 g_object_unref (manager
);
350 has_non_salut_accounts (TpAccountManager
*manager
)
352 gboolean ret
= FALSE
;
355 accounts
= tp_account_manager_get_valid_accounts (manager
);
357 for (l
= accounts
; l
!= NULL
; l
= g_list_next (l
))
359 if (tp_strdiff (tp_account_get_protocol (l
->data
), "local-xmpp"))
366 g_list_free (accounts
);
372 maybe_show_account_assistant (void)
374 TpAccountManager
*manager
;
375 manager
= tp_account_manager_dup ();
377 if (!has_non_salut_accounts (manager
))
378 empathy_account_assistant_show (GTK_WINDOW (empathy_main_window_get ()));
380 g_object_unref (manager
);
384 check_connection_managers_ready (EmpathyConnectionManagers
*managers
)
386 if (empathy_connection_managers_is_ready (managers
))
388 if (!empathy_import_mc4_accounts (managers
) && !start_hidden
)
389 maybe_show_account_assistant ();
391 create_salut_account_if_needed (managers
);
392 g_object_unref (managers
);
400 connection_managers_ready_cb (EmpathyConnectionManagers
*managers
,
404 check_connection_managers_ready (managers
);
408 migrate_config_to_xdg_dir (void)
410 gchar
*xdg_dir
, *old_dir
, *xdg_filename
, *old_filename
;
412 GFile
*xdg_file
, *old_file
;
413 static const gchar
* filenames
[] = {
417 "contact-groups.xml",
418 "status-presets.xml",
423 xdg_dir
= g_build_filename (g_get_user_config_dir (), PACKAGE_NAME
, NULL
);
424 if (g_file_test (xdg_dir
, G_FILE_TEST_EXISTS
| G_FILE_TEST_IS_DIR
))
426 /* xdg config dir already exists */
431 old_dir
= g_build_filename (g_get_home_dir (), ".gnome2",
433 if (!g_file_test (old_dir
, G_FILE_TEST_EXISTS
| G_FILE_TEST_IS_DIR
))
435 /* old config dir didn't exist */
441 if (g_mkdir_with_parents (xdg_dir
, (S_IRUSR
| S_IWUSR
| S_IXUSR
)) == -1)
443 DEBUG ("Failed to create configuration directory; aborting migration");
449 for (i
= 0; filenames
[i
]; i
++)
451 old_filename
= g_build_filename (old_dir
, filenames
[i
], NULL
);
452 if (!g_file_test (old_filename
, G_FILE_TEST_EXISTS
))
454 g_free (old_filename
);
457 xdg_filename
= g_build_filename (xdg_dir
, filenames
[i
], NULL
);
458 old_file
= g_file_new_for_path (old_filename
);
459 xdg_file
= g_file_new_for_path (xdg_filename
);
461 if (!g_file_move (old_file
, xdg_file
, G_FILE_COPY_NONE
,
462 NULL
, NULL
, NULL
, NULL
))
463 DEBUG ("Failed to migrate %s", filenames
[i
]);
465 g_free (old_filename
);
466 g_free (xdg_filename
);
467 g_object_unref (old_file
);
468 g_object_unref (xdg_file
);
476 do_show_accounts_ui (GtkWindow
*window
,
477 TpAccountManager
*manager
)
482 if (has_non_salut_accounts (manager
))
483 ui
= empathy_accounts_dialog_show (window
, NULL
);
485 ui
= empathy_account_assistant_show (window
);
487 if (account_dialog_only
)
488 g_signal_connect (ui
, "destroy",
489 G_CALLBACK (gtk_main_quit
), NULL
);
493 account_manager_ready_for_accounts_cb (GObject
*source_object
,
494 GAsyncResult
*result
,
497 TpAccountManager
*manager
= TP_ACCOUNT_MANAGER (source_object
);
498 GError
*error
= NULL
;
500 if (!tp_account_manager_prepare_finish (manager
, result
, &error
))
502 DEBUG ("Failed to prepare account manager: %s", error
->message
);
503 g_error_free (error
);
507 do_show_accounts_ui (user_data
, manager
);
511 show_accounts_ui (GtkWindow
*window
,
514 TpAccountManager
*manager
;
519 manager
= tp_account_manager_dup ();
521 tp_account_manager_prepare_async (manager
, NULL
,
522 account_manager_ready_for_accounts_cb
, window
);
524 g_object_unref (manager
);
527 static UniqueResponse
528 unique_app_message_cb (UniqueApp
*unique_app
,
530 UniqueMessageData
*data
,
534 GtkWindow
*window
= user_data
;
536 DEBUG ("Other instance launched, presenting the main window. "
537 "Command=%d, timestamp %u", command
, timestamp
);
539 if (command
== COMMAND_ACCOUNTS_DIALOG
)
541 show_accounts_ui (NULL
, TRUE
);
545 /* We're requested to show stuff again, disable the start hidden global
546 * in case the accounts wizard wants to pop up.
548 start_hidden
= FALSE
;
550 show_accounts_ui (window
, FALSE
);
552 gtk_window_set_screen (GTK_WINDOW (window
),
553 unique_message_data_get_screen (data
));
554 gtk_window_set_startup_id (GTK_WINDOW (window
),
555 unique_message_data_get_startup_id (data
));
556 gtk_window_present_with_time (GTK_WINDOW (window
), timestamp
);
559 return UNIQUE_RESPONSE_OK
;
563 show_version_cb (const char *option_name
,
568 g_print ("%s\n", PACKAGE_STRING
);
576 new_incoming_transfer_cb (EmpathyFTFactory
*factory
,
577 EmpathyFTHandler
*handler
,
582 empathy_ft_manager_display_error (handler
, error
);
584 empathy_receive_file_with_file_chooser (handler
);
588 new_ft_handler_cb (EmpathyFTFactory
*factory
,
589 EmpathyFTHandler
*handler
,
594 empathy_ft_manager_display_error (handler
, error
);
596 empathy_ft_manager_add_handler (handler
);
598 g_object_unref (handler
);
602 new_call_handler_cb (EmpathyCallFactory
*factory
,
603 EmpathyCallHandler
*handler
,
607 EmpathyCallWindow
*window
;
609 window
= empathy_call_window_new (handler
);
610 gtk_widget_show (GTK_WIDGET (window
));
615 default_log_handler (const gchar
*log_domain
,
616 GLogLevelFlags log_level
,
617 const gchar
*message
,
620 g_log_default_handler (log_domain
, log_level
, message
, NULL
);
622 /* G_LOG_DOMAIN = "empathy". No need to send empathy messages to the
623 * debugger as they already have in empathy_debug. */
624 if (log_level
!= G_LOG_LEVEL_DEBUG
625 || tp_strdiff (log_domain
, G_LOG_DOMAIN
))
627 EmpathyDebugger
*dbg
;
630 dbg
= empathy_debugger_get_singleton ();
631 g_get_current_time (&now
);
633 empathy_debugger_add_message (dbg
, &now
, log_domain
,
637 #endif /* ENABLE_DEBUG */
640 account_manager_ready_cb (GObject
*source_object
,
641 GAsyncResult
*result
,
644 TpAccountManager
*manager
= TP_ACCOUNT_MANAGER (source_object
);
645 GError
*error
= NULL
;
647 EmpathyConnectivity
*connectivity
;
648 gboolean autoconnect
= TRUE
;
649 TpConnectionPresenceType presence
;
651 if (!tp_account_manager_prepare_finish (manager
, result
, &error
))
653 DEBUG ("Failed to prepare account manager: %s", error
->message
);
654 g_error_free (error
);
659 idle
= empathy_idle_dup_singleton ();
660 connectivity
= empathy_connectivity_dup_singleton ();
662 presence
= tp_account_manager_get_most_available_presence (manager
, NULL
,
665 empathy_conf_get_bool (empathy_conf_get (),
666 EMPATHY_PREFS_AUTOCONNECT
, &autoconnect
);
667 if (autoconnect
&& !no_connect
&&
668 tp_connection_presence_type_cmp_availability
669 (presence
, TP_CONNECTION_PRESENCE_TYPE_OFFLINE
)
671 /* if current state is Offline, then put it online */
672 empathy_idle_set_state (idle
, TP_CONNECTION_PRESENCE_TYPE_AVAILABLE
);
674 if (should_create_salut_account (manager
)
675 || !empathy_import_mc4_has_imported ())
677 EmpathyConnectionManagers
*managers
;
678 managers
= empathy_connection_managers_dup_singleton ();
680 if (!check_connection_managers_ready (managers
))
682 g_signal_connect (managers
, "notify::ready",
683 G_CALLBACK (connection_managers_ready_cb
), NULL
);
686 else if (!start_hidden
)
688 maybe_show_account_assistant ();
691 g_object_unref (idle
);
692 g_object_unref (connectivity
);
695 static EmpathyDispatcher
*
696 setup_dispatcher (void)
698 EmpathyDispatcher
*d
;
701 const gchar
*channeltype
;
702 TpHandleType handletype
;
704 /* Text channels with handle types none, contact and room */
705 { TP_IFACE_CHANNEL_TYPE_TEXT
, TP_HANDLE_TYPE_NONE
},
706 { TP_IFACE_CHANNEL_TYPE_TEXT
, TP_HANDLE_TYPE_CONTACT
},
707 { TP_IFACE_CHANNEL_TYPE_TEXT
, TP_HANDLE_TYPE_ROOM
},
708 /* file transfer to contacts */
709 { TP_IFACE_CHANNEL_TYPE_FILE_TRANSFER
, TP_HANDLE_TYPE_CONTACT
},
710 /* stream media to contacts */
711 { TP_IFACE_CHANNEL_TYPE_STREAMED_MEDIA
, TP_HANDLE_TYPE_CONTACT
},
712 /* stream tubes to contacts and rooms */
713 { TP_IFACE_CHANNEL_TYPE_STREAM_TUBE
, TP_HANDLE_TYPE_CONTACT
},
714 { TP_IFACE_CHANNEL_TYPE_STREAM_TUBE
, TP_HANDLE_TYPE_ROOM
},
715 /* d-bus tubes to contacts and rooms */
716 { TP_IFACE_CHANNEL_TYPE_DBUS_TUBE
, TP_HANDLE_TYPE_CONTACT
},
717 { TP_IFACE_CHANNEL_TYPE_DBUS_TUBE
, TP_HANDLE_TYPE_ROOM
},
719 { TP_IFACE_CHANNEL_TYPE_ROOM_LIST
, TP_HANDLE_TYPE_NONE
},
721 gchar
*capabilities
[] = {
722 "org.freedesktop.Telepathy.Channel.Interface.MediaSignalling/ice-udp",
723 "org.freedesktop.Telepathy.Channel.Interface.MediaSignalling/gtalk-p2p",
728 /* Setup the basic Client.Handler that matches our client filter */
729 filters
= g_ptr_array_new ();
731 TP_IFACE_CHANNEL
".ChannelType", G_TYPE_STRING
,
732 TP_IFACE_CHANNEL_TYPE_TEXT
,
733 TP_IFACE_CHANNEL
".TargetHandleType", G_TYPE_INT
,
734 TP_HANDLE_TYPE_CONTACT
,
736 g_ptr_array_add (filters
, asv
);
738 d
= empathy_dispatcher_new (PACKAGE_NAME
, filters
, NULL
);
740 g_ptr_array_foreach (filters
, (GFunc
) g_hash_table_destroy
, NULL
);
741 g_ptr_array_free (filters
, TRUE
);
743 /* Setup the an extended Client.Handler that matches everything we can do */
744 filters
= g_ptr_array_new ();
745 for (i
= 0 ; i
< G_N_ELEMENTS (types
); i
++)
748 TP_IFACE_CHANNEL
".ChannelType", G_TYPE_STRING
, types
[i
].channeltype
,
749 TP_IFACE_CHANNEL
".TargetHandleType", G_TYPE_INT
, types
[i
].handletype
,
752 g_ptr_array_add (filters
, asv
);
756 TP_IFACE_CHANNEL
".ChannelType",
757 G_TYPE_STRING
, TP_IFACE_CHANNEL_TYPE_STREAMED_MEDIA
,
758 TP_IFACE_CHANNEL
".TargetHandleType",
759 G_TYPE_INT
, TP_HANDLE_TYPE_CONTACT
,
760 TP_IFACE_CHANNEL_TYPE_STREAMED_MEDIA
".InitialAudio",
761 G_TYPE_BOOLEAN
, TRUE
,
763 g_ptr_array_add (filters
, asv
);
766 TP_IFACE_CHANNEL
".ChannelType",
767 G_TYPE_STRING
, TP_IFACE_CHANNEL_TYPE_STREAMED_MEDIA
,
768 TP_IFACE_CHANNEL
".TargetHandleType",
769 G_TYPE_INT
, TP_HANDLE_TYPE_CONTACT
,
770 TP_IFACE_CHANNEL_TYPE_STREAMED_MEDIA
".InitialVideo",
771 G_TYPE_BOOLEAN
, TRUE
,
773 g_ptr_array_add (filters
, asv
);
776 empathy_dispatcher_add_handler (d
, PACKAGE_NAME
"MoreThanMeetsTheEye",
777 filters
, capabilities
);
779 g_ptr_array_foreach (filters
, (GFunc
) g_hash_table_destroy
, NULL
);
780 g_ptr_array_free (filters
, TRUE
);
786 account_status_changed_cb (TpAccount
*account
,
790 gchar
*dbus_error_name
,
792 EmpathyChatroom
*room
)
796 conn
= tp_account_get_connection (account
);
798 empathy_dispatcher_join_muc (conn
,
799 empathy_chatroom_get_room (room
), NULL
, NULL
);
803 account_manager_chatroom_ready_cb (GObject
*source_object
,
804 GAsyncResult
*result
,
807 TpAccountManager
*account_manager
= TP_ACCOUNT_MANAGER (source_object
);
808 EmpathyChatroomManager
*chatroom_manager
= user_data
;
810 GError
*error
= NULL
;
812 if (!tp_account_manager_prepare_finish (account_manager
, result
, &error
))
814 DEBUG ("Failed to prepare account manager: %s", error
->message
);
815 g_error_free (error
);
819 accounts
= tp_account_manager_get_valid_accounts (account_manager
);
821 for (l
= accounts
; l
!= NULL
; l
= g_list_next (l
))
823 TpAccount
*account
= TP_ACCOUNT (l
->data
);
825 GList
*chatrooms
, *p
;
827 conn
= tp_account_get_connection (account
);
829 chatrooms
= empathy_chatroom_manager_get_chatrooms (
830 chatroom_manager
, account
);
832 for (p
= chatrooms
; p
!= NULL
; p
= p
->next
)
834 EmpathyChatroom
*room
= EMPATHY_CHATROOM (p
->data
);
836 if (!empathy_chatroom_get_auto_connect (room
))
841 g_signal_connect (G_OBJECT (account
), "status-changed",
842 G_CALLBACK (account_status_changed_cb
), room
);
846 empathy_dispatcher_join_muc (conn
,
847 empathy_chatroom_get_room (room
), NULL
, NULL
);
851 g_list_free (chatrooms
);
854 g_list_free (accounts
);
858 chatroom_manager_ready_cb (EmpathyChatroomManager
*chatroom_manager
,
862 TpAccountManager
*account_manager
= user_data
;
864 tp_account_manager_prepare_async (account_manager
, NULL
,
865 account_manager_chatroom_ready_cb
, chatroom_manager
);
869 main (int argc
, char *argv
[])
872 EmpathyLocationManager
*location_manager
= NULL
;
874 EmpathyStatusIcon
*icon
;
875 EmpathyDispatcher
*dispatcher
;
876 TpAccountManager
*account_manager
;
877 EmpathyLogManager
*log_manager
;
878 EmpathyChatroomManager
*chatroom_manager
;
879 EmpathyCallFactory
*call_factory
;
880 EmpathyFTFactory
*ft_factory
;
883 EmpathyConnectivity
*connectivity
;
884 GError
*error
= NULL
;
885 TpDBusDaemon
*dbus_daemon
;
886 UniqueApp
*unique_app
;
887 gboolean chatroom_manager_ready
;
889 GOptionContext
*optcontext
;
890 GOptionEntry options
[] = {
892 0, G_OPTION_ARG_NONE
, &no_connect
,
893 N_("Don't connect on startup"),
895 { "start-hidden", 'h',
896 0, G_OPTION_ARG_NONE
, &start_hidden
,
897 N_("Don't display the contact list or any other dialogs on startup"),
900 0, G_OPTION_ARG_NONE
, &account_dialog_only
,
901 N_("Show the accounts dialog"),
904 G_OPTION_FLAG_NO_ARG
, G_OPTION_ARG_CALLBACK
, show_version_cb
,
910 g_thread_init (NULL
);
913 optcontext
= g_option_context_new (N_("- Empathy IM Client"));
914 g_option_context_add_group (optcontext
, gst_init_get_option_group ());
915 g_option_context_add_group (optcontext
, gtk_get_option_group (TRUE
));
916 g_option_context_add_main_entries (optcontext
, options
, GETTEXT_PACKAGE
);
918 if (!g_option_context_parse (optcontext
, &argc
, &argv
, &error
)) {
919 g_print ("%s\nRun '%s --help' to see a full list of available command line options.\n",
920 error
->message
, argv
[0]);
921 g_warning ("Error in empathy init: %s", error
->message
);
925 g_option_context_free (optcontext
);
928 g_set_application_name (_(PACKAGE_NAME
));
929 g_setenv ("PULSE_PROP_media.role", "phone", TRUE
);
931 #if HAVE_LIBCHAMPLAIN
932 gtk_clutter_init (&argc
, &argv
);
935 gtk_window_set_default_icon_name ("empathy");
936 textdomain (GETTEXT_PACKAGE
);
939 /* Set up debugger */
940 g_log_set_default_handler (default_log_handler
, NULL
);
943 unique_app
= unique_app_new_with_commands ("org.gnome.Empathy",
944 NULL
, "accounts_dialog", COMMAND_ACCOUNTS_DIALOG
, NULL
);
946 if (unique_app_is_running (unique_app
))
948 unique_app_send_message (unique_app
, account_dialog_only
?
949 COMMAND_ACCOUNTS_DIALOG
: UNIQUE_ACTIVATE
, NULL
);
951 g_object_unref (unique_app
);
955 /* Take well-known name */
956 dbus_daemon
= tp_dbus_daemon_dup (&error
);
959 if (!tp_dbus_daemon_request_name (dbus_daemon
,
960 "org.gnome.Empathy", TRUE
, &error
))
962 DEBUG ("Failed to request well-known name: %s",
963 error
? error
->message
: "no message");
964 g_clear_error (&error
);
966 g_object_unref (dbus_daemon
);
970 DEBUG ("Failed to dup dbus daemon: %s",
971 error
? error
->message
: "no message");
972 g_clear_error (&error
);
975 if (account_dialog_only
)
977 account_manager
= tp_account_manager_dup ();
978 show_accounts_ui (NULL
, TRUE
);
982 g_object_unref (account_manager
);
986 notify_init (_(PACKAGE_NAME
));
988 /* Setting up Idle */
989 idle
= empathy_idle_dup_singleton ();
990 empathy_idle_set_auto_away (idle
, TRUE
);
992 /* Setting up Connectivity */
993 connectivity
= empathy_connectivity_dup_singleton ();
994 use_conn_notify_cb (empathy_conf_get (), EMPATHY_PREFS_USE_CONN
,
996 empathy_conf_notify_add (empathy_conf_get (), EMPATHY_PREFS_USE_CONN
,
997 use_conn_notify_cb
, connectivity
);
999 /* account management */
1000 account_manager
= tp_account_manager_dup ();
1001 tp_account_manager_prepare_async (account_manager
, NULL
,
1002 account_manager_ready_cb
, NULL
);
1004 /* Handle channels */
1005 dispatcher
= setup_dispatcher ();
1006 g_signal_connect (dispatcher
, "dispatch", G_CALLBACK (dispatch_cb
), NULL
);
1008 migrate_config_to_xdg_dir ();
1011 window
= empathy_main_window_show ();
1012 icon
= empathy_status_icon_new (GTK_WINDOW (window
), start_hidden
);
1014 g_signal_connect (unique_app
, "message-received",
1015 G_CALLBACK (unique_app_message_cb
), window
);
1018 log_manager
= empathy_log_manager_dup_singleton ();
1019 empathy_log_manager_observe (log_manager
, dispatcher
);
1021 chatroom_manager
= empathy_chatroom_manager_dup_singleton (NULL
);
1022 empathy_chatroom_manager_observe (chatroom_manager
, dispatcher
);
1024 g_object_get (chatroom_manager
, "ready", &chatroom_manager_ready
, NULL
);
1025 if (!chatroom_manager_ready
)
1027 g_signal_connect (G_OBJECT (chatroom_manager
), "notify::ready",
1028 G_CALLBACK (chatroom_manager_ready_cb
), account_manager
);
1032 chatroom_manager_ready_cb (chatroom_manager
, NULL
, account_manager
);
1035 /* Create the call factory */
1036 call_factory
= empathy_call_factory_initialise ();
1037 g_signal_connect (G_OBJECT (call_factory
), "new-call-handler",
1038 G_CALLBACK (new_call_handler_cb
), NULL
);
1039 /* Create the FT factory */
1040 ft_factory
= empathy_ft_factory_dup_singleton ();
1041 g_signal_connect (ft_factory
, "new-ft-handler",
1042 G_CALLBACK (new_ft_handler_cb
), NULL
);
1043 g_signal_connect (ft_factory
, "new-incoming-transfer",
1044 G_CALLBACK (new_incoming_transfer_cb
), NULL
);
1046 /* Location mananger */
1048 location_manager
= empathy_location_manager_dup_singleton ();
1053 empathy_idle_set_state (idle
, TP_CONNECTION_PRESENCE_TYPE_OFFLINE
);
1055 g_object_unref (idle
);
1056 g_object_unref (connectivity
);
1057 g_object_unref (icon
);
1058 g_object_unref (account_manager
);
1059 g_object_unref (log_manager
);
1060 g_object_unref (dispatcher
);
1061 g_object_unref (chatroom_manager
);
1063 g_object_unref (location_manager
);
1065 g_object_unref (ft_factory
);
1066 g_object_unref (unique_app
);
1070 return EXIT_SUCCESS
;