]> git.0d.be Git - empathy.git/blob - src/empathy-accounts-common.c
Updated Polish translation
[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 gboolean
75 empathy_accounts_has_accounts (TpAccountManager *manager)
76 {
77   GList *accounts;
78   gboolean has_accounts;
79
80   accounts = tp_account_manager_get_valid_accounts (manager);
81   has_accounts = (accounts != NULL);
82   g_list_free (accounts);
83
84   return has_accounts;
85 }
86
87 void
88 empathy_accounts_import (TpAccountManager *account_mgr,
89     EmpathyConnectionManagers *cm_mgr)
90 {
91   g_return_if_fail (tp_account_manager_is_prepared (account_mgr,
92       TP_ACCOUNT_MANAGER_FEATURE_CORE));
93   g_return_if_fail (empathy_connection_managers_is_ready (cm_mgr));
94
95   if (!empathy_import_mc4_has_imported ())
96     empathy_import_mc4_accounts (cm_mgr);
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_for_accounts (GObject *source,
129     GAsyncResult *result,
130     gpointer user_data)
131 {
132   EmpathyConnectionManagers *cm_mgr = EMPATHY_CONNECTION_MANAGERS (source);
133   GCallback assistant_destroy_cb = G_CALLBACK (user_data);
134
135   if (!empathy_connection_managers_prepare_finish (cm_mgr, result, NULL))
136     goto out;
137
138   show_account_assistant (cm_mgr, assistant_destroy_cb);
139   DEBUG ("would show the account assistant");
140
141 out:
142   g_object_unref (cm_mgr);
143 }
144
145 void
146 empathy_accounts_show_accounts_ui (TpAccountManager *manager,
147     TpAccount *account,
148     GCallback window_destroyed_cb)
149 {
150   g_return_if_fail (TP_IS_ACCOUNT_MANAGER (manager));
151   g_return_if_fail (!account || TP_IS_ACCOUNT (account));
152
153   if (empathy_accounts_has_non_salut_accounts (manager))
154     {
155       do_show_accounts_ui (manager, account, window_destroyed_cb);
156     }
157   else
158     {
159       EmpathyConnectionManagers *cm_mgr;
160
161       cm_mgr = empathy_connection_managers_dup_singleton ();
162
163       empathy_connection_managers_prepare_async (cm_mgr,
164           connection_managers_prepare_for_accounts, window_destroyed_cb);
165     }
166 }