1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
/*
* Copyright (C) 2009 Collabora Ltd.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* Authors: Jonny Lamb <jonny.lamb@collabora.co.uk>
* Cosimo Cecchi <cosimo.cecchi@collabora.co.uk>
*/
#include <telepathy-glib/util.h>
#include <libempathy/empathy-connection-managers.h>
#include <libempathy/empathy-utils.h>
#include "empathy-import-utils.h"
#include "empathy-import-pidgin.h"
EmpathyImportAccountData *
empathy_import_account_data_new (const gchar *source)
{
EmpathyImportAccountData *data;
g_return_val_if_fail (!EMP_STR_EMPTY (source), NULL);
data = g_slice_new0 (EmpathyImportAccountData);
data->settings = g_hash_table_new_full (g_str_hash, g_str_equal, NULL,
(GDestroyNotify) tp_g_value_slice_free);
data->source = g_strdup (source);
data->protocol = NULL;
data->connection_manager = NULL;
data->enabled = FALSE;
return data;
}
void
empathy_import_account_data_free (EmpathyImportAccountData *data)
{
if (data == NULL)
return;
if (data->protocol != NULL)
g_free (data->protocol);
if (data->connection_manager != NULL)
g_free (data->connection_manager);
if (data->settings != NULL)
g_hash_table_destroy (data->settings);
if (data->source != NULL)
g_free (data->source);
g_slice_free (EmpathyImportAccountData, data);
}
gboolean
empathy_import_accounts_to_import (void)
{
return empathy_import_pidgin_accounts_to_import ();
}
GList *
empathy_import_accounts_load (EmpathyImportApplication id)
{
if (id == EMPATHY_IMPORT_APPLICATION_PIDGIN)
return empathy_import_pidgin_load ();
return empathy_import_pidgin_load ();
}
gboolean
empathy_import_protocol_is_supported (const gchar *protocol,
TpConnectionManager **cm)
{
EmpathyConnectionManagers *manager;
GList *cms;
GList *l;
gboolean proto_is_supported = FALSE;
manager = empathy_connection_managers_dup_singleton ();
cms = empathy_connection_managers_get_cms (manager);
for (l = cms; l; l = l->next)
{
TpConnectionManager *tp_cm = l->data;
if (tp_connection_manager_has_protocol (tp_cm,
(const gchar*) protocol))
{
if (!proto_is_supported)
{
*cm = tp_cm;
proto_is_supported = TRUE;
continue;
}
/* we have more than one CM for this protocol,
* select the one which is not haze.
*/
if (!tp_strdiff ((*cm)->name, "haze"))
{
*cm = tp_cm;
break;
}
}
}
g_object_unref (manager);
return proto_is_supported;
}
|