]> git.0d.be Git - empathy.git/blob - src/empathy-accounts-common.c
empathy-accounts: Check to see if there are no accounts thus show the assistant
[empathy.git] / src / empathy-accounts-common.c
1 /*
2  * Copyright (C) 2005-2007 Imendio AB
3  * Copyright (C) 2007-2010 Collabora Ltd.
4  *
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.
9  *
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.
14  *
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
19  *
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>
25  */
26
27 #include <config.h>
28
29 #include <string.h>
30 #include <stdlib.h>
31
32 #include <gtk/gtk.h>
33 #include <glib/gi18n.h>
34 #include <unique/unique.h>
35
36 #include <telepathy-glib/account-manager.h>
37 #include <telepathy-glib/util.h>
38
39 #include <libempathy/empathy-utils.h>
40 #include <libempathy/empathy-connection-managers.h>
41 #include <libempathy-gtk/empathy-ui-utils.h>
42
43 #include "empathy-accounts-common.h"
44 #include "empathy-accounts-dialog.h"
45 #include "empathy-account-assistant.h"
46 #include "empathy-import-mc4-accounts.h"
47 #include "empathy-auto-salut-account-helper.h"
48
49 #define DEBUG_FLAG EMPATHY_DEBUG_ACCOUNT
50 #include <libempathy/empathy-debug.h>
51
52 gboolean
53 empathy_accounts_has_non_salut_accounts (TpAccountManager *manager)
54 {
55   gboolean ret = FALSE;
56   GList *accounts, *l;
57
58   accounts = tp_account_manager_get_valid_accounts (manager);
59
60   for (l = accounts ; l != NULL; l = g_list_next (l))
61     {
62       if (tp_strdiff (tp_account_get_protocol (l->data), "local-xmpp"))
63         {
64           ret = TRUE;
65           break;
66         }
67     }
68
69   g_list_free (accounts);
70
71   return ret;
72 }
73
74 /* Try to import accounts from MC4 and returns TRUE if we should display the
75  * accounts assistant. */
76 gboolean
77 empathy_accounts_import (TpAccountManager *account_mgr,
78     EmpathyConnectionManagers *cm_mgr)
79 {
80   g_return_val_if_fail (tp_account_manager_is_prepared (account_mgr,
81       TP_ACCOUNT_MANAGER_FEATURE_CORE), FALSE);
82   g_return_val_if_fail (empathy_connection_managers_is_ready (cm_mgr), FALSE);
83
84   if (empathy_import_mc4_has_imported ())
85     return FALSE;
86
87   if (empathy_import_mc4_accounts (cm_mgr))
88     return FALSE;
89
90   if (empathy_accounts_has_non_salut_accounts (account_mgr))
91     return FALSE;
92
93   if (!should_create_salut_account (account_mgr))
94     return FALSE;
95
96   return TRUE;
97 }
98
99 static void
100 do_show_accounts_ui (TpAccountManager *manager,
101     TpAccount *account,
102     GCallback window_destroyed_cb)
103 {
104   GtkWidget *accounts_window;
105
106   accounts_window = empathy_accounts_dialog_show (NULL, account);
107
108   if (window_destroyed_cb)
109     g_signal_connect (accounts_window, "destroy", window_destroyed_cb, NULL);
110
111   gtk_window_present (GTK_WINDOW (accounts_window));
112 }
113
114 static GtkWidget*
115 show_account_assistant (EmpathyConnectionManagers *connection_mgrs,
116     GCallback assistant_destroy_cb)
117 {
118   GtkWidget *assistant;
119
120   assistant = empathy_account_assistant_show (NULL, connection_mgrs);
121   if (assistant_destroy_cb)
122     g_signal_connect (assistant, "destroy", assistant_destroy_cb, NULL);
123
124   return assistant;
125 }
126
127 static void
128 connection_managers_prepare_cb (
129     EmpathyConnectionManagers *cm_mgr,
130     GAsyncResult *result,
131     gpointer user_data)
132 {
133   GCallback assistant_destroy_cb = g_object_get_data (G_OBJECT (cm_mgr),
134       "assistant-destroy-callback");
135   TpAccountManager *account_mgr = g_object_get_data (G_OBJECT (cm_mgr),
136       "account-manager");
137   gboolean hidden = GPOINTER_TO_UINT (g_object_get_data (G_OBJECT (cm_mgr),
138         "hidden"));
139
140   if (!empathy_connection_managers_prepare_finish (cm_mgr, result, NULL))
141     goto out;
142
143   if (empathy_accounts_import (account_mgr, cm_mgr) &&
144       !hidden)
145     {
146       show_account_assistant (cm_mgr, assistant_destroy_cb);
147     }
148   else if (!empathy_accounts_has_non_salut_accounts (account_mgr))
149     {
150       show_account_assistant (cm_mgr, assistant_destroy_cb);
151     }
152   else
153     {
154       if (assistant_destroy_cb)
155         assistant_destroy_cb ();
156     }
157
158 out:
159   g_object_unref (cm_mgr);
160 }
161
162 void
163 empathy_accounts_manager_ready_for_show_assistant (
164     TpAccountManager *account_mgr,
165     gboolean hidden)
166 {
167   EmpathyConnectionManagers *cm_mgr;
168
169   cm_mgr = empathy_connection_managers_dup_singleton ();
170
171   g_object_set_data (G_OBJECT (cm_mgr), "assistant-destroy-callback",
172       g_object_get_data (G_OBJECT (account_mgr), "assistant-destroy-callback"));
173   g_object_set_data_full (G_OBJECT (cm_mgr), "account-manager",
174       g_object_ref (account_mgr), g_object_unref);
175   g_object_set_data (G_OBJECT (cm_mgr), "hidden", GUINT_TO_POINTER (hidden));
176
177   empathy_connection_managers_prepare_async (cm_mgr,
178       (GAsyncReadyCallback) connection_managers_prepare_cb, NULL);
179 }
180
181 static void
182 connection_managers_prepare_for_accounts (GObject *source,
183     GAsyncResult *result,
184     gpointer user_data)
185 {
186   EmpathyConnectionManagers *cm_mgr = EMPATHY_CONNECTION_MANAGERS (source);
187   GCallback assistant_destroy_cb = G_CALLBACK (user_data);
188
189   if (!empathy_connection_managers_prepare_finish (cm_mgr, result, NULL))
190     goto out;
191
192   show_account_assistant (cm_mgr, assistant_destroy_cb);
193   g_debug ("would show the account assistant");
194
195 out:
196   g_object_unref (cm_mgr);
197 }
198
199 void
200 empathy_accounts_show_accounts_ui (TpAccountManager *manager,
201     TpAccount *account,
202     GCallback window_destroyed_cb)
203 {
204   g_return_if_fail (TP_IS_ACCOUNT_MANAGER (manager));
205   g_return_if_fail (!account || TP_IS_ACCOUNT (account));
206
207   if (empathy_accounts_has_non_salut_accounts (manager))
208     {
209       do_show_accounts_ui (manager, account, window_destroyed_cb);
210     }
211   else
212     {
213       EmpathyConnectionManagers *cm_mgr;
214
215       cm_mgr = empathy_connection_managers_dup_singleton ();
216
217       empathy_connection_managers_prepare_async (cm_mgr,
218           connection_managers_prepare_for_accounts, window_destroyed_cb);
219     }
220 }