2 * Copyright (C) 2008 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., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
19 * Authors: Jonny Lamb <jonny.lamb@collabora.co.uk>
28 #include <glib/gi18n.h>
30 #include <libmissioncontrol/mc-account.h>
31 #include <telepathy-glib/util.h>
33 #include "empathy-import-dialog.h"
34 #include "empathy-import-pidgin.h"
36 #define DEBUG_FLAG EMPATHY_DEBUG_OTHER
37 #include <libempathy/empathy-debug.h>
38 #include <libempathy/empathy-utils.h>
40 #include <libempathy-gtk/empathy-ui-utils.h>
47 GtkWidget
*button_cancel
;
49 } EmpathyImportDialog
;
61 EmpathyImportAccountData
*
62 empathy_import_account_data_new (const gchar
*source
)
64 EmpathyImportAccountData
*data
;
66 g_return_val_if_fail (!EMP_STR_EMPTY (source
), NULL
);
68 data
= g_slice_new0 (EmpathyImportAccountData
);
69 data
->settings
= g_hash_table_new_full (g_str_hash
, g_str_equal
, NULL
,
70 (GDestroyNotify
) tp_g_value_slice_free
);
71 data
->source
= g_strdup (source
);
77 empathy_import_account_data_free (EmpathyImportAccountData
*data
)
81 if (data
->profile
!= NULL
)
82 g_object_unref (data
->profile
);
83 if (data
->settings
!= NULL
)
84 g_hash_table_destroy (data
->settings
);
85 if (data
->source
!= NULL
)
86 g_free (data
->source
);
88 g_slice_free (EmpathyImportAccountData
, data
);
92 import_dialog_add_account (EmpathyImportAccountData
*data
)
100 account
= mc_account_create (data
->profile
);
103 DEBUG ("Failed to create account");
107 g_hash_table_iter_init (&iter
, data
->settings
);
108 while (g_hash_table_iter_next (&iter
, &key
, &value
))
110 const gchar
*param
= key
;
111 GValue
*gvalue
= value
;
113 switch (G_VALUE_TYPE (gvalue
))
116 DEBUG ("Set param '%s' to '%s' (string)",
117 param
, g_value_get_string (gvalue
));
118 mc_account_set_param_string (account
,
119 param
, g_value_get_string (gvalue
));
123 DEBUG ("Set param '%s' to %s (boolean)",
124 param
, g_value_get_boolean (gvalue
) ? "TRUE" : "FALSE");
125 mc_account_set_param_boolean (account
,
126 param
, g_value_get_boolean (gvalue
));
130 DEBUG ("Set param '%s' to '%i' (integer)",
131 param
, g_value_get_int (gvalue
));
132 mc_account_set_param_int (account
,
133 param
, g_value_get_int (gvalue
));
138 /* Set the display name of the account */
139 username
= g_hash_table_lookup (data
->settings
, "account");
140 display_name
= g_strdup_printf ("%s (%s)",
141 mc_profile_get_display_name (data
->profile
),
142 g_value_get_string (username
));
143 mc_account_set_display_name (account
, display_name
);
145 g_free (display_name
);
146 g_object_unref (account
);
150 import_dialog_account_id_in_list (GList
*accounts
,
151 const gchar
*account_id
)
155 for (l
= accounts
; l
; l
= l
->next
)
157 McAccount
*account
= l
->data
;
161 if (mc_account_get_param_string (account
, "account", &value
)
162 == MC_ACCOUNT_SETTING_ABSENT
)
165 result
= tp_strdiff (value
, account_id
);
177 import_dialog_add_accounts_to_model (EmpathyImportDialog
*dialog
)
183 model
= gtk_tree_view_get_model (GTK_TREE_VIEW (dialog
->treeview
));
185 for (l
= dialog
->accounts
; l
; l
= l
->next
)
188 EmpathyImportAccountData
*data
= l
->data
;
192 value
= g_hash_table_lookup (data
->settings
, "account");
194 accounts
= mc_accounts_list_by_profile (data
->profile
);
196 /* Only set the "Import" cell to be active if there isn't already an
197 * account set up with the same account id. */
198 import
= !import_dialog_account_id_in_list (accounts
,
199 g_value_get_string (value
));
201 mc_accounts_list_free (accounts
);
203 gtk_list_store_append (GTK_LIST_STORE (model
), &iter
);
205 gtk_list_store_set (GTK_LIST_STORE (model
), &iter
,
207 COL_PROTOCOL
, mc_profile_get_display_name (data
->profile
),
208 COL_NAME
, g_value_get_string (value
),
209 COL_SOURCE
, data
->source
,
210 COL_ACCOUNT_DATA
, data
,
216 import_dialog_cell_toggled_cb (GtkCellRendererToggle
*cell_renderer
,
217 const gchar
*path_str
,
218 EmpathyImportDialog
*dialog
)
224 path
= gtk_tree_path_new_from_string (path_str
);
225 model
= gtk_tree_view_get_model (GTK_TREE_VIEW (dialog
->treeview
));
227 gtk_tree_model_get_iter (model
, &iter
, path
);
229 gtk_list_store_set (GTK_LIST_STORE (model
), &iter
,
230 COL_IMPORT
, !gtk_cell_renderer_toggle_get_active (cell_renderer
),
233 gtk_tree_path_free (path
);
237 import_dialog_set_up_account_list (EmpathyImportDialog
*dialog
)
241 GtkTreeViewColumn
*column
;
242 GtkCellRenderer
*cell
;
244 store
= gtk_list_store_new (COL_COUNT
, G_TYPE_BOOLEAN
, G_TYPE_STRING
,
245 G_TYPE_STRING
, G_TYPE_STRING
, G_TYPE_POINTER
);
247 gtk_tree_view_set_model (GTK_TREE_VIEW (dialog
->treeview
),
248 GTK_TREE_MODEL (store
));
250 g_object_unref (store
);
252 view
= GTK_TREE_VIEW (dialog
->treeview
);
253 gtk_tree_view_set_headers_visible (view
, TRUE
);
256 cell
= gtk_cell_renderer_toggle_new ();
257 gtk_tree_view_insert_column_with_attributes (view
, -1,
258 /* Translators: this is the header of a treeview column */
260 "active", COL_IMPORT
,
263 g_signal_connect (cell
, "toggled",
264 G_CALLBACK (import_dialog_cell_toggled_cb
), dialog
);
266 /* Protocol column */
267 column
= gtk_tree_view_column_new ();
268 gtk_tree_view_column_set_title (column
, _("Protocol"));
269 gtk_tree_view_column_set_expand (column
, TRUE
);
270 gtk_tree_view_append_column (view
, column
);
272 cell
= gtk_cell_renderer_text_new ();
276 gtk_tree_view_column_pack_start (column
, cell
, TRUE
);
277 gtk_tree_view_column_add_attribute (column
, cell
, "text", COL_PROTOCOL
);
280 column
= gtk_tree_view_column_new ();
281 gtk_tree_view_column_set_title (column
, _("Account"));
282 gtk_tree_view_column_set_expand (column
, TRUE
);
283 gtk_tree_view_append_column (view
, column
);
285 cell
= gtk_cell_renderer_text_new ();
289 gtk_tree_view_column_pack_start (column
, cell
, TRUE
);
290 gtk_tree_view_column_add_attribute (column
, cell
, "text", COL_NAME
);
293 column
= gtk_tree_view_column_new ();
294 gtk_tree_view_column_set_title (column
, _("Source"));
295 gtk_tree_view_column_set_expand (column
, TRUE
);
296 gtk_tree_view_append_column (view
, column
);
298 cell
= gtk_cell_renderer_text_new ();
302 gtk_tree_view_column_pack_start (column
, cell
, TRUE
);
303 gtk_tree_view_column_add_attribute (column
, cell
, "text", COL_SOURCE
);
305 import_dialog_add_accounts_to_model (dialog
);
309 import_dialog_tree_model_foreach (GtkTreeModel
*model
,
315 EmpathyImportAccountData
*data
;
317 gtk_tree_model_get (model
, iter
,
318 COL_IMPORT
, &to_import
,
319 COL_ACCOUNT_DATA
, &data
,
323 import_dialog_add_account (data
);
329 import_dialog_response_cb (GtkWidget
*widget
,
331 EmpathyImportDialog
*dialog
)
333 if (response
== GTK_RESPONSE_OK
)
337 model
= gtk_tree_view_get_model (GTK_TREE_VIEW (dialog
->treeview
));
338 gtk_tree_model_foreach (model
, import_dialog_tree_model_foreach
, dialog
);
341 gtk_widget_destroy (dialog
->window
);
345 import_dialog_destroy_cb (GtkWidget
*widget
,
346 EmpathyImportDialog
*dialog
)
348 g_list_foreach (dialog
->accounts
, (GFunc
) empathy_import_account_data_free
,
350 g_list_free (dialog
->accounts
);
351 g_slice_free (EmpathyImportDialog
, dialog
);
355 empathy_import_dialog_accounts_to_import (void)
357 return empathy_import_pidgin_accounts_to_import ();
361 empathy_import_dialog_show (GtkWindow
*parent
,
364 static EmpathyImportDialog
*dialog
= NULL
;
367 GList
*accounts
= NULL
;
369 /* This window is a singleton. If it already exist, present it */
372 gtk_window_present (GTK_WINDOW (dialog
->window
));
376 /* Load all accounts from all supported applications */
377 accounts
= g_list_concat (accounts
, empathy_import_pidgin_load ());
379 /* Check if we have accounts to import before creating the window */
386 message
= gtk_message_dialog_new (parent
,
387 GTK_DIALOG_MODAL
, GTK_MESSAGE_WARNING
, GTK_BUTTONS_CLOSE
,
388 _("No accounts to import could be found. Empathy currently only "
389 "supports importing accounts from Pidgin."));
391 gtk_dialog_run (GTK_DIALOG (message
));
392 gtk_widget_destroy (message
);
395 DEBUG ("No accounts to import; closing dialog silently.");
400 /* We have accounts, let's display the window with them */
401 dialog
= g_slice_new0 (EmpathyImportDialog
);
402 dialog
->accounts
= accounts
;
404 filename
= empathy_file_lookup ("empathy-import-dialog.ui", "src");
405 gui
= empathy_builder_get_file (filename
,
406 "import_dialog", &dialog
->window
,
407 "treeview", &dialog
->treeview
,
410 empathy_builder_connect (gui
, dialog
,
411 "import_dialog", "destroy", import_dialog_destroy_cb
,
412 "import_dialog", "response", import_dialog_response_cb
,
415 g_object_add_weak_pointer (G_OBJECT (dialog
->window
), (gpointer
) &dialog
);
418 g_object_unref (gui
);
421 gtk_window_set_transient_for (GTK_WINDOW (dialog
->window
), parent
);
423 import_dialog_set_up_account_list (dialog
);
425 gtk_widget_show (dialog
->window
);