]> git.0d.be Git - empathy.git/blob - src/cc-empathy-accounts-page.c
Merge branch 'more-accounts-fixes'
[empathy.git] / src / cc-empathy-accounts-page.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
2  *
3  * Copyright (C) 2010 Red Hat, Inc.
4  * Copyright (C) 2010 Collabora Ltd.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  */
20
21 #include "config.h"
22
23 #include <stdlib.h>
24 #include <stdio.h>
25
26 #include <gtk/gtk.h>
27 #include <gio/gio.h>
28 #include <glib/gi18n-lib.h>
29
30 #include <telepathy-glib/account-manager.h>
31 #include <libempathy/empathy-connection-managers.h>
32 #include <libempathy-gtk/empathy-ui-utils.h>
33
34 #include "cc-empathy-accounts-page.h"
35 #include "empathy-accounts-common.h"
36 #include "empathy-account-assistant.h"
37 #include "empathy-accounts-dialog.h"
38
39 #define CC_EMPATHY_ACCOUNTS_PAGE_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), CC_TYPE_EMPATHY_ACCOUNTS_PAGE, CcEmpathyAccountsPagePrivate))
40
41 struct CcEmpathyAccountsPagePrivate
42 {
43   /* the original window holding the dialog content; it needs to be retained and
44    * destroyed in our finalize(), since it invalidates its children (even if
45    * they've already been reparented by the time it is destroyed) */
46   GtkWidget *accounts_window;
47 };
48
49 G_DEFINE_TYPE (CcEmpathyAccountsPage, cc_empathy_accounts_page, CC_TYPE_PAGE)
50
51 static void
52 page_pack_with_accounts_dialog (CcEmpathyAccountsPage *page)
53 {
54   GtkWidget *content;
55   GtkWidget *action_area;
56
57   if (page->priv->accounts_window != NULL)
58     {
59       gtk_widget_destroy (page->priv->accounts_window);
60       gtk_container_remove (GTK_CONTAINER (page),
61           gtk_bin_get_child (GTK_BIN (page)));
62     }
63
64     page->priv->accounts_window = empathy_accounts_dialog_show (NULL, NULL);
65     gtk_widget_hide (page->priv->accounts_window);
66
67     content = gtk_dialog_get_content_area (
68         GTK_DIALOG (page->priv->accounts_window));
69     action_area = gtk_dialog_get_action_area (
70         GTK_DIALOG (page->priv->accounts_window));
71     gtk_widget_set_no_show_all (action_area, TRUE);
72     gtk_widget_hide (action_area);
73
74     gtk_widget_reparent (content, GTK_WIDGET (page));
75 }
76
77 static void
78 connection_managers_prepare (GObject *source,
79     GAsyncResult *result,
80     gpointer user_data)
81 {
82   EmpathyConnectionManagers *cm_mgr = EMPATHY_CONNECTION_MANAGERS (source);
83   TpAccountManager *account_mgr;
84   CcEmpathyAccountsPage *page;
85
86   account_mgr = TP_ACCOUNT_MANAGER (g_object_get_data (G_OBJECT (cm_mgr),
87       "account-manager"));
88   page = CC_EMPATHY_ACCOUNTS_PAGE (g_object_get_data (G_OBJECT (cm_mgr),
89         "page"));
90
91   if (!empathy_connection_managers_prepare_finish (cm_mgr, result, NULL))
92     goto out;
93
94   page_pack_with_accounts_dialog (page);
95
96   empathy_accounts_import (account_mgr, cm_mgr);
97
98   if (!empathy_accounts_has_non_salut_accounts (account_mgr))
99     empathy_account_assistant_show (NULL, cm_mgr);
100
101 out:
102   /* remove ref from active_changed() */
103   g_object_unref (account_mgr);
104   g_object_unref (cm_mgr);
105 }
106
107 static void
108 account_manager_ready_for_accounts_cb (GObject *source_object,
109     GAsyncResult *result,
110     gpointer user_data)
111 {
112   TpAccountManager *account_mgr = TP_ACCOUNT_MANAGER (source_object);
113   CcEmpathyAccountsPage *page = CC_EMPATHY_ACCOUNTS_PAGE (user_data);
114   GError *error = NULL;
115
116   if (!tp_account_manager_prepare_finish (account_mgr, result, &error))
117     {
118       g_warning ("Failed to prepare account manager: %s", error->message);
119       g_error_free (error);
120       return;
121     }
122
123   if (empathy_accounts_has_non_salut_accounts (account_mgr))
124     {
125       page_pack_with_accounts_dialog (page);
126
127       /* remove ref from active_changed() */
128       g_object_unref (account_mgr);
129     }
130   else
131     {
132       EmpathyConnectionManagers *cm_mgr;
133
134       cm_mgr = empathy_connection_managers_dup_singleton ();
135
136       g_object_set_data_full (G_OBJECT (cm_mgr), "account-manager",
137           g_object_ref (account_mgr), (GDestroyNotify) g_object_unref);
138       g_object_set_data_full (G_OBJECT (cm_mgr), "page",
139           g_object_ref (page), (GDestroyNotify) g_object_unref);
140
141       empathy_connection_managers_prepare_async (cm_mgr,
142           connection_managers_prepare, page);
143     }
144 }
145
146 static void
147 active_changed (CcPage *base_page,
148     gboolean is_active)
149 {
150   CcEmpathyAccountsPage *page = CC_EMPATHY_ACCOUNTS_PAGE (base_page);
151   TpAccountManager *account_manager;
152
153   if (is_active)
154     {
155       /* unref'd in final endpoint callbacks */
156       account_manager = tp_account_manager_dup ();
157
158       tp_account_manager_prepare_async (account_manager, NULL,
159           account_manager_ready_for_accounts_cb, page);
160     }
161 }
162
163 static void
164 cc_empathy_accounts_page_finalize (GObject *object)
165 {
166   CcEmpathyAccountsPage *page;
167
168   g_return_if_fail (object != NULL);
169   g_return_if_fail (CC_IS_EMPATHY_ACCOUNTS_PAGE (object));
170
171   page = CC_EMPATHY_ACCOUNTS_PAGE (object);
172
173   g_return_if_fail (page->priv != NULL);
174
175   gtk_widget_destroy (page->priv->accounts_window);
176
177   G_OBJECT_CLASS (cc_empathy_accounts_page_parent_class)->finalize (object);
178 }
179
180 static void
181 cc_empathy_accounts_page_class_init (CcEmpathyAccountsPageClass *klass)
182 {
183   GObjectClass  *object_class = G_OBJECT_CLASS (klass);
184   CcPageClass   *page_class = CC_PAGE_CLASS (klass);
185
186   object_class->finalize = cc_empathy_accounts_page_finalize;
187
188   page_class->active_changed = active_changed;
189
190   g_type_class_add_private (klass, sizeof (CcEmpathyAccountsPagePrivate));
191 }
192
193 static void
194 cc_empathy_accounts_page_init (CcEmpathyAccountsPage *page)
195 {
196   page->priv = CC_EMPATHY_ACCOUNTS_PAGE_GET_PRIVATE (page);
197
198   empathy_gtk_init ();
199 }
200
201 CcPage *
202 cc_empathy_accounts_page_new (void)
203 {
204   GObject *object;
205
206   object = g_object_new (CC_TYPE_EMPATHY_ACCOUNTS_PAGE,
207       "display-name", _("Messaging and VoIP Accounts"),
208       "id", "general",
209       NULL);
210
211   return CC_PAGE (object);
212 }