use one lined error notifications
[empathy-mirror.git] / src / empathy.c
blob539d84db9152712a81a3b454fd7b74add1e84d02
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 <stdlib.h>
25 #include <errno.h>
26 #include <string.h>
28 #include <glib.h>
29 #include <glib/gi18n.h>
30 #include <gtk/gtk.h>
31 #include <gdk/gdkx.h>
32 #include <unique/unique.h>
34 #if HAVE_LIBCHAMPLAIN
35 #include <clutter-gtk/clutter-gtk.h>
36 #endif
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>
80 #include <gst/gst.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;
88 static void
89 dispatch_cb (EmpathyDispatcher *dispatcher,
90 EmpathyDispatchOperation *operation,
91 gpointer user_data)
93 GQuark channel_type;
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;
101 const gchar *id;
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;
110 TpAccount *account;
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);
117 if (chat)
119 empathy_chat_set_tp_chat (chat, tp_chat);
121 else
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. */
157 static gboolean
158 should_create_salut_account (TpAccountManager *manager)
160 gboolean salut_created = FALSE;
161 GList *accounts, *l;
163 /* Check if we already created a salut account */
164 empathy_conf_get_bool (empathy_conf_get (),
165 EMPATHY_PREFS_SALUT_ACCOUNT_CREATED,
166 &salut_created);
168 if (salut_created)
170 DEBUG ("Gconf says we already created a salut account once");
171 return FALSE;
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;
183 break;
187 g_list_free (accounts);
189 if (salut_created)
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,
194 TRUE);
197 return !salut_created;
200 static void
201 salut_account_created (GObject *source,
202 GAsyncResult *result,
203 gpointer user_data)
205 EmpathyAccountSettings *settings = EMPATHY_ACCOUNT_SETTINGS (source);
206 TpAccount *account;
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);
213 return;
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,
221 TRUE);
224 static void
225 use_conn_notify_cb (EmpathyConf *conf,
226 const gchar *key,
227 gpointer user_data)
229 EmpathyConnectivity *connectivity = user_data;
230 gboolean use_conn;
232 if (empathy_conf_get_bool (conf, key, &use_conn))
234 empathy_connectivity_set_use_conn (connectivity, use_conn);
238 static void
239 create_salut_account_am_ready_cb (GObject *source_object,
240 GAsyncResult *result,
241 gpointer user_data)
243 TpAccountManager *account_manager = TP_ACCOUNT_MANAGER (source_object);
244 EmpathyConnectionManagers *managers = user_data;
245 EmpathyAccountSettings *settings;
246 TpConnectionManager *manager;
247 const TpConnectionManagerProtocol *protocol;
248 EBook *book;
249 EContact *contact;
250 gchar *nickname = NULL;
251 gchar *first_name = NULL;
252 gchar *last_name = NULL;
253 gchar *email = NULL;
254 gchar *jid = 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);
261 goto out;
264 if (!should_create_salut_account (account_manager))
265 goto out;
267 manager = empathy_connection_managers_get_cm (managers, "salut");
268 if (manager == NULL)
270 DEBUG ("Salut not installed, not making a salut account");
271 goto out;
274 protocol = tp_connection_manager_get_protocol (manager, "local-xmpp");
275 if (protocol == NULL)
277 DEBUG ("Salut doesn't support local-xmpp!!");
278 goto out;
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);
289 goto out;
292 settings = empathy_account_settings_new ("salut", "local-xmpp",
293 _("People nearby"));
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"))
303 g_free (nickname);
304 nickname = NULL;
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);
323 g_free (nickname);
324 g_free (first_name);
325 g_free (last_name);
326 g_free (email);
327 g_free (jid);
328 g_object_unref (settings);
329 g_object_unref (contact);
330 g_object_unref (book);
332 out:
333 g_object_unref (managers);
336 static void
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);
349 static gboolean
350 has_non_salut_accounts (TpAccountManager *manager)
352 gboolean ret = FALSE;
353 GList *accounts, *l;
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"))
361 ret = TRUE;
362 break;
366 g_list_free (accounts);
368 return ret;
371 static void
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);
383 static gboolean
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);
393 managers = NULL;
394 return TRUE;
396 return FALSE;
399 static void
400 connection_managers_ready_cb (EmpathyConnectionManagers *managers,
401 GParamSpec *spec,
402 gpointer user_data)
404 check_connection_managers_ready (managers);
407 static void
408 migrate_config_to_xdg_dir (void)
410 gchar *xdg_dir, *old_dir, *xdg_filename, *old_filename;
411 int i;
412 GFile *xdg_file, *old_file;
413 static const gchar* filenames[] = {
414 "geometry.ini",
415 "irc-networks.xml",
416 "chatrooms.xml",
417 "contact-groups.xml",
418 "status-presets.xml",
419 "accels.txt",
420 NULL
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 */
427 g_free (xdg_dir);
428 return;
431 old_dir = g_build_filename (g_get_home_dir (), ".gnome2",
432 PACKAGE_NAME, NULL);
433 if (!g_file_test (old_dir, G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR))
435 /* old config dir didn't exist */
436 g_free (xdg_dir);
437 g_free (old_dir);
438 return;
441 if (g_mkdir_with_parents (xdg_dir, (S_IRUSR | S_IWUSR | S_IXUSR)) == -1)
443 DEBUG ("Failed to create configuration directory; aborting migration");
444 g_free (xdg_dir);
445 g_free (old_dir);
446 return;
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);
455 continue;
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);
471 g_free (xdg_dir);
472 g_free (old_dir);
475 static void
476 do_show_accounts_ui (GtkWindow *window,
477 TpAccountManager *manager)
480 GtkWidget *ui;
482 if (has_non_salut_accounts (manager))
483 ui = empathy_accounts_dialog_show (window, NULL);
484 else
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);
492 static void
493 account_manager_ready_for_accounts_cb (GObject *source_object,
494 GAsyncResult *result,
495 gpointer user_data)
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);
504 return;
507 do_show_accounts_ui (user_data, manager);
510 static void
511 show_accounts_ui (GtkWindow *window,
512 gboolean force)
514 TpAccountManager *manager;
516 if (!force)
517 return;
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,
529 gint command,
530 UniqueMessageData *data,
531 guint timestamp,
532 gpointer user_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 (window, TRUE);
543 else
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;
562 static gboolean
563 show_version_cb (const char *option_name,
564 const char *value,
565 gpointer data,
566 GError **error)
568 g_print ("%s\n", PACKAGE_STRING);
570 exit (EXIT_SUCCESS);
572 return FALSE;
575 static void
576 new_incoming_transfer_cb (EmpathyFTFactory *factory,
577 EmpathyFTHandler *handler,
578 GError *error,
579 gpointer user_data)
581 if (error)
582 empathy_ft_manager_display_error (handler, error);
583 else
584 empathy_receive_file_with_file_chooser (handler);
587 static void
588 new_ft_handler_cb (EmpathyFTFactory *factory,
589 EmpathyFTHandler *handler,
590 GError *error,
591 gpointer user_data)
593 if (error)
594 empathy_ft_manager_display_error (handler, error);
595 else
596 empathy_ft_manager_add_handler (handler);
598 g_object_unref (handler);
601 static void
602 new_call_handler_cb (EmpathyCallFactory *factory,
603 EmpathyCallHandler *handler,
604 gboolean outgoing,
605 gpointer user_data)
607 EmpathyCallWindow *window;
609 window = empathy_call_window_new (handler);
610 gtk_widget_show (GTK_WIDGET (window));
613 #ifdef ENABLE_DEBUG
614 static void
615 default_log_handler (const gchar *log_domain,
616 GLogLevelFlags log_level,
617 const gchar *message,
618 gpointer user_data)
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;
628 GTimeVal now;
630 dbg = empathy_debugger_get_singleton ();
631 g_get_current_time (&now);
633 empathy_debugger_add_message (dbg, &now, log_domain,
634 log_level, message);
637 #endif /* ENABLE_DEBUG */
639 static void
640 account_manager_ready_cb (GObject *source_object,
641 GAsyncResult *result,
642 gpointer user_data)
644 TpAccountManager *manager = TP_ACCOUNT_MANAGER (source_object);
645 GError *error = NULL;
646 EmpathyIdle *idle;
647 EmpathyConnectivity *connectivity;
648 gboolean autoconnect = TRUE;
650 if (!tp_account_manager_prepare_finish (manager, result, &error))
652 DEBUG ("Failed to prepare account manager: %s", error->message);
653 g_error_free (error);
654 return;
657 /* Autoconnect */
658 idle = empathy_idle_dup_singleton ();
659 connectivity = empathy_connectivity_dup_singleton ();
661 empathy_conf_get_bool (empathy_conf_get (),
662 EMPATHY_PREFS_AUTOCONNECT, &autoconnect);
663 if (autoconnect && !no_connect &&
664 tp_connection_presence_type_cmp_availability
665 (empathy_idle_get_state (idle), TP_CONNECTION_PRESENCE_TYPE_OFFLINE)
666 <= 0)
667 /* if current state is Offline, then put it online */
668 empathy_idle_set_state (idle, TP_CONNECTION_PRESENCE_TYPE_AVAILABLE);
670 if (should_create_salut_account (manager)
671 || !empathy_import_mc4_has_imported ())
673 EmpathyConnectionManagers *managers;
674 managers = empathy_connection_managers_dup_singleton ();
676 if (!check_connection_managers_ready (managers))
678 g_signal_connect (managers, "notify::ready",
679 G_CALLBACK (connection_managers_ready_cb), NULL);
682 else if (!start_hidden)
684 maybe_show_account_assistant ();
687 g_object_unref (idle);
688 g_object_unref (connectivity);
691 static EmpathyDispatcher *
692 setup_dispatcher (void)
694 EmpathyDispatcher *d;
695 GPtrArray *filters;
696 struct {
697 const gchar *channeltype;
698 TpHandleType handletype;
699 } types[] = {
700 /* Text channels with handle types none, contact and room */
701 { TP_IFACE_CHANNEL_TYPE_TEXT, TP_HANDLE_TYPE_NONE },
702 { TP_IFACE_CHANNEL_TYPE_TEXT, TP_HANDLE_TYPE_CONTACT },
703 { TP_IFACE_CHANNEL_TYPE_TEXT, TP_HANDLE_TYPE_ROOM },
704 /* file transfer to contacts */
705 { TP_IFACE_CHANNEL_TYPE_FILE_TRANSFER, TP_HANDLE_TYPE_CONTACT },
706 /* stream media to contacts */
707 { TP_IFACE_CHANNEL_TYPE_STREAMED_MEDIA, TP_HANDLE_TYPE_CONTACT },
708 /* stream tubes to contacts and rooms */
709 { TP_IFACE_CHANNEL_TYPE_STREAM_TUBE, TP_HANDLE_TYPE_CONTACT },
710 { TP_IFACE_CHANNEL_TYPE_STREAM_TUBE, TP_HANDLE_TYPE_ROOM },
711 /* d-bus tubes to contacts and rooms */
712 { TP_IFACE_CHANNEL_TYPE_DBUS_TUBE, TP_HANDLE_TYPE_CONTACT },
713 { TP_IFACE_CHANNEL_TYPE_DBUS_TUBE, TP_HANDLE_TYPE_ROOM },
714 /* roomlists */
715 { TP_IFACE_CHANNEL_TYPE_ROOM_LIST, TP_HANDLE_TYPE_NONE },
717 gchar *capabilities[] = {
718 "org.freedesktop.Telepathy.Channel.Interface.MediaSignalling/ice-udp",
719 "org.freedesktop.Telepathy.Channel.Interface.MediaSignalling/gtalk-p2p",
720 NULL };
721 GHashTable *asv;
722 guint i;
724 /* Setup the basic Client.Handler that matches our client filter */
725 filters = g_ptr_array_new ();
726 asv = tp_asv_new (
727 TP_IFACE_CHANNEL ".ChannelType", G_TYPE_STRING,
728 TP_IFACE_CHANNEL_TYPE_TEXT,
729 TP_IFACE_CHANNEL ".TargetHandleType", G_TYPE_INT,
730 TP_HANDLE_TYPE_CONTACT,
731 NULL);
732 g_ptr_array_add (filters, asv);
734 d = empathy_dispatcher_new (PACKAGE_NAME, filters, NULL);
736 g_ptr_array_foreach (filters, (GFunc) g_hash_table_destroy, NULL);
737 g_ptr_array_free (filters, TRUE);
739 /* Setup the an extended Client.Handler that matches everything we can do */
740 filters = g_ptr_array_new ();
741 for (i = 0 ; i < G_N_ELEMENTS (types); i++)
743 asv = tp_asv_new (
744 TP_IFACE_CHANNEL ".ChannelType", G_TYPE_STRING, types[i].channeltype,
745 TP_IFACE_CHANNEL ".TargetHandleType", G_TYPE_INT, types[i].handletype,
746 NULL);
748 g_ptr_array_add (filters, asv);
751 asv = tp_asv_new (
752 TP_IFACE_CHANNEL ".ChannelType",
753 G_TYPE_STRING, TP_IFACE_CHANNEL_TYPE_STREAMED_MEDIA,
754 TP_IFACE_CHANNEL ".TargetHandleType",
755 G_TYPE_INT, TP_HANDLE_TYPE_CONTACT,
756 TP_IFACE_CHANNEL_TYPE_STREAMED_MEDIA ".InitialAudio",
757 G_TYPE_BOOLEAN, TRUE,
758 NULL);
759 g_ptr_array_add (filters, asv);
761 asv = tp_asv_new (
762 TP_IFACE_CHANNEL ".ChannelType",
763 G_TYPE_STRING, TP_IFACE_CHANNEL_TYPE_STREAMED_MEDIA,
764 TP_IFACE_CHANNEL ".TargetHandleType",
765 G_TYPE_INT, TP_HANDLE_TYPE_CONTACT,
766 TP_IFACE_CHANNEL_TYPE_STREAMED_MEDIA ".InitialVideo",
767 G_TYPE_BOOLEAN, TRUE,
768 NULL);
769 g_ptr_array_add (filters, asv);
772 empathy_dispatcher_add_handler (d, PACKAGE_NAME"MoreThanMeetsTheEye",
773 filters, capabilities);
775 g_ptr_array_foreach (filters, (GFunc) g_hash_table_destroy, NULL);
776 g_ptr_array_free (filters, TRUE);
778 return d;
781 static void
782 account_status_changed_cb (TpAccount *account,
783 guint old_status,
784 guint new_status,
785 guint reason,
786 gchar *dbus_error_name,
787 GHashTable *details,
788 EmpathyChatroom *room)
790 TpConnection *conn;
792 conn = tp_account_get_connection (account);
794 empathy_dispatcher_join_muc (conn,
795 empathy_chatroom_get_room (room), NULL, NULL);
798 static void
799 account_manager_chatroom_ready_cb (GObject *source_object,
800 GAsyncResult *result,
801 gpointer user_data)
803 TpAccountManager *account_manager = TP_ACCOUNT_MANAGER (source_object);
804 EmpathyChatroomManager *chatroom_manager = user_data;
805 GList *accounts, *l;
806 GError *error = NULL;
808 if (!tp_account_manager_prepare_finish (account_manager, result, &error))
810 DEBUG ("Failed to prepare account manager: %s", error->message);
811 g_error_free (error);
812 return;
815 accounts = tp_account_manager_get_valid_accounts (account_manager);
817 for (l = accounts; l != NULL; l = g_list_next (l))
819 TpAccount *account = TP_ACCOUNT (l->data);
820 TpConnection *conn;
821 GList *chatrooms, *p;
823 conn = tp_account_get_connection (account);
825 chatrooms = empathy_chatroom_manager_get_chatrooms (
826 chatroom_manager, account);
828 for (p = chatrooms; p != NULL; p = p->next)
830 EmpathyChatroom *room = EMPATHY_CHATROOM (p->data);
832 if (!empathy_chatroom_get_auto_connect (room))
833 continue;
835 if (conn == NULL)
837 g_signal_connect (G_OBJECT (account), "status-changed",
838 G_CALLBACK (account_status_changed_cb), room);
840 else
842 empathy_dispatcher_join_muc (conn,
843 empathy_chatroom_get_room (room), NULL, NULL);
847 g_list_free (chatrooms);
850 g_list_free (accounts);
853 static void
854 chatroom_manager_ready_cb (EmpathyChatroomManager *chatroom_manager,
855 GParamSpec *pspec,
856 gpointer user_data)
858 TpAccountManager *account_manager = user_data;
860 tp_account_manager_prepare_async (account_manager, NULL,
861 account_manager_chatroom_ready_cb, chatroom_manager);
865 main (int argc, char *argv[])
867 #if HAVE_GEOCLUE
868 EmpathyLocationManager *location_manager = NULL;
869 #endif
870 EmpathyStatusIcon *icon;
871 EmpathyDispatcher *dispatcher;
872 TpAccountManager *account_manager;
873 EmpathyLogManager *log_manager;
874 EmpathyChatroomManager *chatroom_manager;
875 EmpathyCallFactory *call_factory;
876 EmpathyFTFactory *ft_factory;
877 GtkWidget *window;
878 EmpathyIdle *idle;
879 EmpathyConnectivity *connectivity;
880 GError *error = NULL;
881 TpDBusDaemon *dbus_daemon;
882 UniqueApp *unique_app;
883 gboolean chatroom_manager_ready;
885 GOptionContext *optcontext;
886 GOptionEntry options[] = {
887 { "no-connect", 'n',
888 0, G_OPTION_ARG_NONE, &no_connect,
889 N_("Don't connect on startup"),
890 NULL },
891 { "start-hidden", 'h',
892 0, G_OPTION_ARG_NONE, &start_hidden,
893 N_("Don't display the contact list or any other dialogs on startup"),
894 NULL },
895 { "accounts", 'a',
896 0, G_OPTION_ARG_NONE, &account_dialog_only,
897 N_("Show the accounts dialog"),
898 NULL },
899 { "version", 'v',
900 G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, show_version_cb,
901 NULL, NULL },
902 { NULL }
905 /* Init */
906 g_thread_init (NULL);
907 empathy_init ();
909 optcontext = g_option_context_new (N_("- Empathy IM Client"));
910 g_option_context_add_group (optcontext, gst_init_get_option_group ());
911 g_option_context_add_group (optcontext, gtk_get_option_group (TRUE));
912 g_option_context_add_main_entries (optcontext, options, GETTEXT_PACKAGE);
914 if (!g_option_context_parse (optcontext, &argc, &argv, &error)) {
915 g_print ("%s\nRun '%s --help' to see a full list of available command line options.\n",
916 error->message, argv[0]);
917 g_warning ("Error in empathy init: %s", error->message);
918 return EXIT_FAILURE;
921 g_option_context_free (optcontext);
923 empathy_gtk_init ();
924 g_set_application_name (_(PACKAGE_NAME));
925 g_setenv ("PULSE_PROP_media.role", "phone", TRUE);
927 #if HAVE_LIBCHAMPLAIN
928 gtk_clutter_init (&argc, &argv);
929 #endif
931 gtk_window_set_default_icon_name ("empathy");
932 textdomain (GETTEXT_PACKAGE);
934 #ifdef ENABLE_DEBUG
935 /* Set up debugger */
936 g_log_set_default_handler (default_log_handler, NULL);
937 #endif
939 unique_app = unique_app_new_with_commands ("org.gnome.Empathy",
940 NULL, "accounts_dialog", COMMAND_ACCOUNTS_DIALOG, NULL);
942 if (unique_app_is_running (unique_app))
944 unique_app_send_message (unique_app, account_dialog_only ?
945 COMMAND_ACCOUNTS_DIALOG : UNIQUE_ACTIVATE, NULL);
947 g_object_unref (unique_app);
948 return EXIT_SUCCESS;
951 /* Take well-known name */
952 dbus_daemon = tp_dbus_daemon_dup (&error);
953 if (error == NULL)
955 if (!tp_dbus_daemon_request_name (dbus_daemon,
956 "org.gnome.Empathy", TRUE, &error))
958 DEBUG ("Failed to request well-known name: %s",
959 error ? error->message : "no message");
960 g_clear_error (&error);
962 g_object_unref (dbus_daemon);
964 else
966 DEBUG ("Failed to dup dbus daemon: %s",
967 error ? error->message : "no message");
968 g_clear_error (&error);
971 if (account_dialog_only)
973 account_manager = tp_account_manager_dup ();
974 show_accounts_ui (NULL, TRUE);
976 gtk_main ();
978 g_object_unref (account_manager);
979 return 0;
982 notify_init (_(PACKAGE_NAME));
984 /* Setting up Idle */
985 idle = empathy_idle_dup_singleton ();
986 empathy_idle_set_auto_away (idle, TRUE);
988 /* Setting up Connectivity */
989 connectivity = empathy_connectivity_dup_singleton ();
990 use_conn_notify_cb (empathy_conf_get (), EMPATHY_PREFS_USE_CONN,
991 connectivity);
992 empathy_conf_notify_add (empathy_conf_get (), EMPATHY_PREFS_USE_CONN,
993 use_conn_notify_cb, connectivity);
995 /* account management */
996 account_manager = tp_account_manager_dup ();
997 tp_account_manager_prepare_async (account_manager, NULL,
998 account_manager_ready_cb, NULL);
1000 /* Handle channels */
1001 dispatcher = setup_dispatcher ();
1002 g_signal_connect (dispatcher, "dispatch", G_CALLBACK (dispatch_cb), NULL);
1004 migrate_config_to_xdg_dir ();
1006 /* Setting up UI */
1007 window = empathy_main_window_show ();
1008 icon = empathy_status_icon_new (GTK_WINDOW (window), start_hidden);
1010 g_signal_connect (unique_app, "message-received",
1011 G_CALLBACK (unique_app_message_cb), window);
1013 /* Logging */
1014 log_manager = empathy_log_manager_dup_singleton ();
1015 empathy_log_manager_observe (log_manager, dispatcher);
1017 chatroom_manager = empathy_chatroom_manager_dup_singleton (NULL);
1018 empathy_chatroom_manager_observe (chatroom_manager, dispatcher);
1020 g_object_get (chatroom_manager, "ready", &chatroom_manager_ready, NULL);
1021 if (!chatroom_manager_ready)
1023 g_signal_connect (G_OBJECT (chatroom_manager), "notify::ready",
1024 G_CALLBACK (chatroom_manager_ready_cb), account_manager);
1026 else
1028 chatroom_manager_ready_cb (chatroom_manager, NULL, account_manager);
1031 /* Create the call factory */
1032 call_factory = empathy_call_factory_initialise ();
1033 g_signal_connect (G_OBJECT (call_factory), "new-call-handler",
1034 G_CALLBACK (new_call_handler_cb), NULL);
1035 /* Create the FT factory */
1036 ft_factory = empathy_ft_factory_dup_singleton ();
1037 g_signal_connect (ft_factory, "new-ft-handler",
1038 G_CALLBACK (new_ft_handler_cb), NULL);
1039 g_signal_connect (ft_factory, "new-incoming-transfer",
1040 G_CALLBACK (new_incoming_transfer_cb), NULL);
1042 /* Location mananger */
1043 #if HAVE_GEOCLUE
1044 location_manager = empathy_location_manager_dup_singleton ();
1045 #endif
1047 gtk_main ();
1049 empathy_idle_set_state (idle, TP_CONNECTION_PRESENCE_TYPE_OFFLINE);
1051 g_object_unref (idle);
1052 g_object_unref (connectivity);
1053 g_object_unref (icon);
1054 g_object_unref (account_manager);
1055 g_object_unref (log_manager);
1056 g_object_unref (dispatcher);
1057 g_object_unref (chatroom_manager);
1058 #if HAVE_GEOCLUE
1059 g_object_unref (location_manager);
1060 #endif
1061 g_object_unref (ft_factory);
1062 g_object_unref (unique_app);
1064 notify_uninit ();
1066 return EXIT_SUCCESS;