hindi update
[empathy-mirror.git] / src / empathy-accounts-common.c
blob8932fdbbc67224e408b6c5cba2e3a5b856fc0e5c
1 /*
2 * Copyright (C) 2005-2007 Imendio AB
3 * Copyright (C) 2007-2010 Collabora Ltd.
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation; either version 2 of the
8 * License, or (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public
16 * License along with this program; if not, write to the
17 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
18 * Boston, MA 02110-1301 USA
20 * Authors: Martyn Russell <martyn@imendio.com>
21 * Xavier Claessens <xclaesse@gmail.com>
22 * Cosimo Cecchi <cosimo.cecchi@collabora.co.uk>
23 * Jonathan Tellier <jonathan.tellier@gmail.com>
24 * Travis Reitter <travis.reitter@collabora.co.uk>
27 #include <config.h>
29 #include <string.h>
30 #include <stdlib.h>
32 #include <gtk/gtk.h>
33 #include <glib/gi18n-lib.h>
35 #include <telepathy-glib/account-manager.h>
36 #include <telepathy-glib/util.h>
38 #include <libempathy/empathy-utils.h>
39 #include <libempathy/empathy-connection-managers.h>
40 #include <libempathy-gtk/empathy-ui-utils.h>
42 #include "empathy-accounts-common.h"
43 #include "empathy-accounts-dialog.h"
44 #include "empathy-account-assistant.h"
45 #include "empathy-auto-salut-account-helper.h"
47 #define DEBUG_FLAG EMPATHY_DEBUG_ACCOUNT
48 #include <libempathy/empathy-debug.h>
50 gboolean
51 empathy_accounts_has_non_salut_accounts (TpAccountManager *manager)
53 gboolean ret = FALSE;
54 GList *accounts, *l;
56 accounts = tp_account_manager_get_valid_accounts (manager);
58 for (l = accounts ; l != NULL; l = g_list_next (l))
60 if (tp_strdiff (tp_account_get_protocol (l->data), "local-xmpp"))
62 ret = TRUE;
63 break;
67 g_list_free (accounts);
69 return ret;
72 gboolean
73 empathy_accounts_has_accounts (TpAccountManager *manager)
75 GList *accounts;
76 gboolean has_accounts;
78 accounts = tp_account_manager_get_valid_accounts (manager);
79 has_accounts = (accounts != NULL);
80 g_list_free (accounts);
82 return has_accounts;
85 static void
86 do_show_accounts_ui (TpAccountManager *manager,
87 TpAccount *account,
88 GCallback window_destroyed_cb)
90 static GtkWidget *accounts_window = NULL;
92 if (accounts_window == NULL)
93 accounts_window = empathy_accounts_dialog_show (NULL, account);
95 if (window_destroyed_cb)
96 g_signal_connect (accounts_window, "destroy", window_destroyed_cb, NULL);
98 gtk_window_present (GTK_WINDOW (accounts_window));
101 static GtkWidget *
102 show_account_assistant (EmpathyConnectionManagers *connection_mgrs,
103 GCallback assistant_destroy_cb)
105 GtkWidget *assistant;
107 assistant = empathy_account_assistant_show (NULL, connection_mgrs);
108 if (assistant_destroy_cb)
109 g_signal_connect (assistant, "destroy", assistant_destroy_cb, NULL);
111 return assistant;
114 static void
115 connection_managers_prepare_for_accounts (GObject *source,
116 GAsyncResult *result,
117 gpointer user_data)
119 EmpathyConnectionManagers *cm_mgr = EMPATHY_CONNECTION_MANAGERS (source);
120 GCallback assistant_destroy_cb = G_CALLBACK (user_data);
122 if (!empathy_connection_managers_prepare_finish (cm_mgr, result, NULL))
123 goto out;
125 show_account_assistant (cm_mgr, assistant_destroy_cb);
126 DEBUG ("would show the account assistant");
128 out:
129 g_object_unref (cm_mgr);
132 void
133 empathy_accounts_show_accounts_ui (TpAccountManager *manager,
134 TpAccount *account,
135 GCallback window_destroyed_cb)
137 g_return_if_fail (TP_IS_ACCOUNT_MANAGER (manager));
138 g_return_if_fail (!account || TP_IS_ACCOUNT (account));
140 if (empathy_accounts_has_non_salut_accounts (manager))
142 do_show_accounts_ui (manager, account, window_destroyed_cb);
144 else
146 EmpathyConnectionManagers *cm_mgr;
148 cm_mgr = empathy_connection_managers_dup_singleton ();
150 empathy_connection_managers_prepare_async (cm_mgr,
151 connection_managers_prepare_for_accounts, window_destroyed_cb);