6 * Copyright (C) 2011-12 SIPE Project <http://sipe.sourceforge.net/>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
31 #include "sip-transport.h"
32 #include "sipe-backend.h"
33 #include "sipe-buddy.h"
34 #include "sipe-core.h"
35 #include "sipe-core-private.h"
36 #include "sipe-group.h"
38 #include "sipe-utils.h"
41 struct group_user_context
{
47 sipe_group_context_destroy(gpointer data
)
49 struct group_user_context
*ctx
= data
;
50 g_free(ctx
->group_name
);
51 g_free(ctx
->user_name
);
56 process_add_group_response(struct sipe_core_private
*sipe_private
,
58 struct transaction
*trans
)
60 if (msg
->response
== 200) {
61 struct sipe_group
*group
;
62 struct group_user_context
*ctx
= trans
->payload
->data
;
66 struct sipe_buddy
*buddy
;
68 xml
= sipe_xml_parse(msg
->body
, msg
->bodylen
);
73 node
= sipe_xml_child(xml
, "Body/addGroup/groupID");
79 group_id
= sipe_xml_data(node
);
85 group
= g_new0(struct sipe_group
, 1);
86 group
->id
= (int)g_ascii_strtod(group_id
, NULL
);
88 group
->name
= g_strdup(ctx
->group_name
);
90 sipe_group_add(sipe_private
, group
);
93 buddy
= g_hash_table_lookup(sipe_private
->buddies
, ctx
->user_name
);
95 buddy
->groups
= slist_insert_unique_sorted(buddy
->groups
, group
, (GCompareFunc
)sipe_group_compare
);
96 sipe_group_update_buddy(sipe_private
, buddy
);
107 sipe_group_compare(struct sipe_group
*group1
, struct sipe_group
*group2
) {
108 return group1
->id
- group2
->id
;
112 sipe_group_find_by_id(struct sipe_core_private
*sipe_private
,
115 struct sipe_group
*group
;
121 entry
= sipe_private
->groups
;
124 if (group
->id
== id
) {
133 sipe_group_find_by_name(struct sipe_core_private
*sipe_private
,
136 struct sipe_group
*group
;
139 if (!sipe_private
|| !name
)
142 entry
= sipe_private
->groups
;
145 if (sipe_strequal(group
->name
, name
)) {
154 sipe_group_create(struct sipe_core_private
*sipe_private
,
158 struct transaction_payload
*payload
= g_new0(struct transaction_payload
, 1);
159 struct group_user_context
*ctx
= g_new0(struct group_user_context
, 1);
160 const gchar
*soap_name
= sipe_strequal(name
, _("Other Contacts")) ? "~" : name
;
162 ctx
->group_name
= g_strdup(name
);
163 ctx
->user_name
= g_strdup(who
);
164 payload
->destroy
= sipe_group_context_destroy
;
167 /* soap_name can contain restricted characters */
168 request
= g_markup_printf_escaped("<m:name>%s</m:name>"
171 sip_soap_request_cb(sipe_private
,
174 process_add_group_response
,
179 gboolean
sipe_group_rename(struct sipe_core_private
*sipe_private
,
180 struct sipe_group
*group
,
183 gboolean renamed
= sipe_backend_buddy_group_rename(SIPE_CORE_PUBLIC
,
188 group
->name
= g_strdup(name
);
194 sipe_group_add(struct sipe_core_private
*sipe_private
,
195 struct sipe_group
* group
)
197 if (sipe_backend_buddy_group_add(SIPE_CORE_PUBLIC
,group
->name
))
199 SIPE_DEBUG_INFO("added group %s (id %d)", group
->name
, group
->id
);
200 sipe_private
->groups
= g_slist_append(sipe_private
->groups
,
205 SIPE_DEBUG_INFO("did not add group %s", group
->name
? group
->name
: "");
209 void sipe_group_free(struct sipe_core_private
*sipe_private
,
210 struct sipe_group
*group
)
212 sipe_private
->groups
= g_slist_remove(sipe_private
->groups
,
218 void sipe_group_remove(struct sipe_core_private
*sipe_private
,
219 struct sipe_group
*group
)
222 SIPE_DEBUG_INFO("removing group %s (id %d)", group
->name
, group
->id
);
223 sipe_backend_buddy_group_remove(SIPE_CORE_PUBLIC
, group
->name
);
224 sipe_group_free(sipe_private
, group
);
229 sipe_core_group_rename(struct sipe_core_public
*sipe_public
,
230 const gchar
*old_name
,
231 const gchar
*new_name
)
233 struct sipe_core_private
*sipe_private
= SIPE_CORE_PRIVATE
;
234 struct sipe_group
*s_group
= sipe_group_find_by_name(sipe_private
, old_name
);
238 SIPE_DEBUG_INFO("Renaming group %s to %s", old_name
, new_name
);
239 /* new_name can contain restricted characters */
240 request
= g_markup_printf_escaped("<m:groupID>%d</m:groupID>"
241 "<m:name>%s</m:name>"
243 s_group
->id
, new_name
);
244 sip_soap_request(sipe_private
,
249 g_free(s_group
->name
);
250 s_group
->name
= g_strdup(new_name
);
252 SIPE_DEBUG_INFO("Cannot find group %s to rename", old_name
);
257 sipe_core_group_remove(struct sipe_core_public
*sipe_public
,
260 struct sipe_core_private
*sipe_private
= SIPE_CORE_PRIVATE
;
261 struct sipe_group
*s_group
= sipe_group_find_by_name(sipe_private
, name
);
265 SIPE_DEBUG_INFO("Deleting group %s", name
);
266 request
= g_strdup_printf("<m:groupID>%d</m:groupID>",
268 sip_soap_request(sipe_private
,
273 sipe_group_free(sipe_private
, s_group
);
275 SIPE_DEBUG_INFO("Cannot find group %s to delete", name
);
280 * Returns string like "2 4 7 8" - group ids buddy belong to.
282 static gchar
*sipe_get_buddy_groups_string(struct sipe_buddy
*buddy
)
286 //creating array from GList, converting int to gchar*
287 gchar
**ids_arr
= g_new(gchar
*, g_slist_length(buddy
->groups
) + 1);
288 GSList
*entry
= buddy
->groups
;
290 if (!ids_arr
) return NULL
;
293 struct sipe_group
* group
= entry
->data
;
294 ids_arr
[i
] = g_strdup_printf("%d", group
->id
);
299 res
= g_strjoinv(" ", ids_arr
);
305 * Sends buddy update to server
307 static void send_buddy_update(struct sipe_core_private
*sipe_private
,
308 struct sipe_buddy
*buddy
,
311 gchar
*groups
= sipe_get_buddy_groups_string(buddy
);
315 SIPE_DEBUG_INFO("Saving buddy %s with alias '%s' and groups '%s'",
316 buddy
->name
, alias
, groups
);
318 /* alias can contain restricted characters */
319 request
= g_markup_printf_escaped("<m:displayName>%s</m:displayName>"
320 "<m:groups>%s</m:groups>"
321 "<m:subscribed>true</m:subscribed>"
324 alias
, groups
, buddy
->name
);
327 sip_soap_request(sipe_private
,
334 /* indicates that buddy information on the server needs updating */
335 void sipe_group_update_buddy(struct sipe_core_private
*sipe_private
,
336 struct sipe_buddy
*buddy
)
339 sipe_backend_buddy backend_buddy
= sipe_backend_buddy_find(SIPE_CORE_PUBLIC
,
343 gchar
*alias
= sipe_backend_buddy_get_alias(SIPE_CORE_PUBLIC
,
345 send_buddy_update(sipe_private
, buddy
, alias
);
351 void sipe_core_group_set_alias(struct sipe_core_public
*sipe_public
,
355 struct sipe_core_private
*sipe_private
= SIPE_CORE_PRIVATE
;
356 struct sipe_buddy
*buddy
= g_hash_table_lookup(sipe_private
->buddies
,
360 send_buddy_update(sipe_private
, buddy
, alias
);