core cleanup: rename core & backend API headers
[siplcs.git] / src / core / sipe-utils.c
blobf8db7ecfd605d67d968c31e6a04e3c35e52d4bc1
1 /**
2 * @file sipe-utils.c
4 * pidgin-sipe
6 * Copyright (C) 2009 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
23 #include <stdlib.h>
24 #include <stdio.h>
25 #include <string.h>
26 #include <ctype.h>
27 #include <time.h>
29 #include <glib.h>
31 #include "network.h"
32 #include "xmlnode.h"
34 #include "sip-sec.h"
35 #include "sipe-backend.h"
36 #include "sipe-utils.h"
37 #include "uuid.h"
38 #include "sipe.h"
40 /* Generate 32 random bits */
41 #define RANDOM32BITS (rand() & 0xFFFF)
43 gchar *gencallid(void)
45 return g_strdup_printf("%04Xg%04Xa%04Xi%04Xm%04Xt%04Xb%04Xx%04Xx",
46 RANDOM32BITS, RANDOM32BITS, RANDOM32BITS,
47 RANDOM32BITS, RANDOM32BITS, RANDOM32BITS,
48 RANDOM32BITS, RANDOM32BITS);
51 gchar *gentag(void)
53 return g_strdup_printf("%04d%04d", RANDOM32BITS, RANDOM32BITS);
56 gchar *genconfid(void)
58 return g_strdup_printf("%04X%04X%04X%04X%04X%04X%04X%04X",
59 RANDOM32BITS, RANDOM32BITS, RANDOM32BITS,
60 RANDOM32BITS, RANDOM32BITS, RANDOM32BITS,
61 RANDOM32BITS, RANDOM32BITS);
64 gchar *get_contact(const struct sipe_account_data *sip)
66 return g_strdup(sip->contact);
69 gchar *parse_from(const gchar *hdr)
71 gchar *from;
72 const gchar *tmp, *tmp2 = hdr;
74 if (!hdr) return NULL;
75 SIPE_DEBUG_INFO("parsing address out of %s", hdr);
76 tmp = strchr(hdr, '<');
78 /* i hate the different SIP UA behaviours... */
79 if (tmp) { /* sip address in <...> */
80 tmp2 = tmp + 1;
81 tmp = strchr(tmp2, '>');
82 if (tmp) {
83 from = g_strndup(tmp2, tmp - tmp2);
84 } else {
85 SIPE_DEBUG_INFO_NOFORMAT("found < without > in From");
86 return NULL;
88 } else {
89 tmp = strchr(tmp2, ';');
90 if (tmp) {
91 from = g_strndup(tmp2, tmp - tmp2);
92 } else {
93 from = g_strdup(tmp2);
96 SIPE_DEBUG_INFO("got %s", from);
97 return from;
100 int parse_cseq(const gchar *hdr)
102 int res = -1;
103 gchar **items;
104 items = g_strsplit(hdr, " ", 1);
105 if (items[0]) {
106 res = atoi(items[0]);
108 g_strfreev(items);
109 return res;
112 gchar *sip_uri_from_name(const gchar *name)
114 return(g_strdup_printf("sip:%s", name));
117 gchar *sip_uri(const gchar *string)
119 return(strstr(string, "sip:") ? g_strdup(string) : sip_uri_from_name(string));
122 xmlnode *xmlnode_get_descendant(const xmlnode *parent, ...)
124 va_list args;
125 xmlnode *node = NULL;
126 const gchar *name;
128 va_start(args, parent);
129 while ((name = va_arg(args, const char *)) != NULL) {
130 node = xmlnode_get_child(parent, name);
131 if (node == NULL) break;
132 parent = node;
134 va_end(args);
136 return node;
139 gint xmlnode_get_int_attrib(xmlnode *node,
140 const char *attr,
141 gint fallback)
143 const char *value = xmlnode_get_attrib(node, attr);
144 return(value ? atoi(value) : fallback);
148 gchar *
149 get_epid(struct sipe_account_data *sip)
151 if (!sip->epid) {
152 gchar *self_sip_uri = sip_uri_self(sip);
153 sip->epid = sipe_get_epid(self_sip_uri,
154 g_get_host_name(),
155 purple_network_get_my_ip(-1));
156 g_free(self_sip_uri);
158 return g_strdup(sip->epid);
161 guint
162 sipe_get_pub_instance(struct sipe_account_data *sip,
163 int publication_key)
165 unsigned res = 0;
166 gchar *epid = get_epid(sip);
168 sscanf(epid, "%08x", &res);
169 g_free(epid);
171 if (publication_key == SIPE_PUB_DEVICE) {
172 /* as is */
173 } else if (publication_key == SIPE_PUB_STATE_MACHINE) { /* First hexadecimal digit is 0x3 */
174 res = (res >> 4) | 0x30000000;
175 } else if (publication_key == SIPE_PUB_STATE_USER) {
176 res = 0x20000000; /* fixed */
177 } else if (publication_key == SIPE_PUB_STATE_CALENDAR) { /* First hexadecimal digit is 0x4 */
178 res = (res >> 4) | 0x40000000;
179 } else if (publication_key == SIPE_PUB_STATE_CALENDAR_OOF) { /* First hexadecimal digit is 0x5 */
180 res = (res >> 4) | 0x50000000;
181 } else if (publication_key == SIPE_PUB_CALENDAR_DATA ||
182 publication_key == SIPE_PUB_NOTE_OOF)
183 { /* First hexadecimal digit is 0x4 */
184 unsigned calendar_id = 0;
185 char *mail_hash = sipe_get_epid(sip->email, "", "");
187 sscanf(mail_hash, "%08x", &calendar_id);
188 g_free(mail_hash);
189 res = (calendar_id >> 4) | 0x40000000;
192 return res;
194 /* an old version
195 guint
196 sipe_get_pub_instance_(struct sipe_account_data *sip,
197 const char *publication_key)
199 unsigned part_1;
200 unsigned part_2;
201 gchar *epid = get_epid(sip);
202 sscanf(epid, "%08x", &part_1);
203 g_free(epid);
204 sscanf(publication_key, "%uh", &part_2);
205 return part_1 + part_2;
208 gboolean
209 sipe_is_bad_alias(const char *uri,
210 const char *alias)
212 char *uri_alias;
213 gboolean result = FALSE;
215 if (!uri) return FALSE;
216 if (!alias) return TRUE;
218 if (g_str_has_prefix(alias, "sip:") || g_str_has_prefix(alias, "sips:")) return TRUE;
220 /* check if alias is just SIP URI but without 'sip:' prefix */
221 uri_alias = sip_uri_from_name(alias);
222 if (sipe_strcase_equal(uri, uri_alias)) {
223 result = TRUE;
225 g_free(uri_alias);
227 return result;
230 gboolean
231 is_empty(const char *st)
233 if (!st || strlen(st) == 0)
235 return TRUE;
237 /* suspecious leading or trailing staces */
238 else if (isspace((unsigned char) *st) ||
239 isspace((unsigned char) *(st + strlen(st) - 1)))
241 /* to not modify original string */
242 char *dup = g_strdup(st);
243 if (strlen(g_strstrip(dup)) == 0) {
244 g_free(dup);
245 return TRUE;
247 g_free(dup);
249 return FALSE;
252 /** Returns newly allocated string. Must be g_free()'d */
253 char *
254 replace(const char *st,
255 const char *search,
256 const char *replace)
258 char **tmp;
259 char *res;
261 if (!st) return NULL;
263 res = g_strjoinv(replace, tmp = g_strsplit(st, search, -1));
264 g_strfreev(tmp);
265 return res;
268 char *
269 fix_newlines(const char *st)
271 return replace(st, "\r\n", "\n");
274 gboolean
275 sipe_strequal(const gchar *left, const gchar *right)
277 #if GLIB_CHECK_VERSION(2,16,0)
278 return (g_strcmp0(left, right) == 0);
279 #else
280 return ((left == NULL && right == NULL) ||
281 (left != NULL && right != NULL && strcmp(left, right) == 0));
282 #endif
285 gboolean
286 sipe_strcase_equal(const gchar *left, const gchar *right)
288 return ((left == NULL && right == NULL) ||
289 (left != NULL && right != NULL && g_ascii_strcasecmp(left, right) == 0));
292 time_t
293 sipe_utils_str_to_time(const gchar *timestamp)
295 GTimeVal time;
296 g_time_val_from_iso8601(timestamp, &time);
297 return time.tv_sec;
300 gchar *
301 sipe_utils_time_to_str(time_t timestamp)
303 GTimeVal time = { timestamp, 0 };
304 return g_time_val_to_iso8601(&time);
307 size_t
308 hex_str_to_buff(const char *hex_str, guint8 **buff)
310 char two_digits[3];
311 size_t length;
312 size_t i;
314 if (!buff) return 0;
315 if (!hex_str) return 0;
317 length = strlen(hex_str)/2;
318 *buff = (unsigned char *)g_malloc(length);
319 for (i = 0; i < length; i++) {
320 two_digits[0] = hex_str[i * 2];
321 two_digits[1] = hex_str[i * 2 + 1];
322 two_digits[2] = '\0';
323 (*buff)[i] = (unsigned char)strtoul(two_digits, NULL, 16);
326 return length;
329 char *
330 buff_to_hex_str(const guint8 *buff, const size_t buff_len)
332 char *res;
333 size_t i, j;
335 if (!buff) return NULL;
337 res = g_malloc(buff_len * 2 + 1);
338 for (i = 0, j = 0; i < buff_len; i++, j+=2) {
339 sprintf(&res[j], "%02X", buff[i]);
341 res[j] = '\0';
342 return res;
345 gboolean
346 sipe_utils_parse_lines(GSList **list, gchar **lines)
348 int i;
349 gchar **parts;
350 gchar *dummy;
351 gchar *dummy2;
352 gchar *tmp;
354 for(i = 0; lines[i] && strlen(lines[i]) > 2; i++) {
355 parts = g_strsplit(lines[i], ":", 2);
356 if(!parts[0] || !parts[1]) {
357 g_strfreev(parts);
358 return FALSE;
360 dummy = parts[1];
361 dummy2 = 0;
362 while(*dummy==' ' || *dummy=='\t') dummy++;
363 dummy2 = g_strdup(dummy);
364 while(lines[i+1] && (lines[i+1][0]==' ' || lines[i+1][0]=='\t')) {
365 i++;
366 dummy = lines[i];
367 while(*dummy==' ' || *dummy=='\t') dummy++;
368 tmp = g_strdup_printf("%s %s",dummy2, dummy);
369 g_free(dummy2);
370 dummy2 = tmp;
372 *list = sipe_utils_nameval_add(*list, parts[0], dummy2);
373 g_free(dummy2);
374 g_strfreev(parts);
377 return TRUE;
380 GSList*
381 sipe_utils_nameval_add(GSList* list, const gchar *name, const gchar *value)
383 struct sipnameval *element = g_new0(struct sipnameval,1);
385 /* SANITY CHECK: the calling code must be fixed if this happens! */
386 if (!value) {
387 SIPE_DEBUG_ERROR("sipe_utils_nameval_add: NULL value for %s",
388 name);
389 value = "";
392 element->name = g_strdup(name);
393 element->value = g_strdup(value);
394 return g_slist_append(list, element);
397 void
398 sipe_utils_nameval_free(GSList *list) {
399 struct sipnameval *elem;
400 while(list) {
401 elem = list->data;
402 list = g_slist_remove(list,elem);
403 g_free(elem->name);
404 g_free(elem->value);
405 g_free(elem);
409 const gchar *
410 sipe_utils_nameval_find(const GSList *list, const gchar *name)
412 return sipe_utils_nameval_find_instance (list, name, 0);
415 const gchar *
416 sipe_utils_nameval_find_instance(const GSList *list, const gchar *name, int which)
418 const GSList *tmp;
419 struct sipnameval *elem;
420 int i = 0;
421 tmp = list;
422 while(tmp) {
423 elem = tmp->data;
424 // OCS2005 can send the same header in either all caps or mixed case
425 if (sipe_strcase_equal(elem->name, name)) {
426 if (i == which) {
427 return elem->value;
429 i++;
431 tmp = g_slist_next(tmp);
433 return NULL;
437 Local Variables:
438 mode: c
439 c-file-style: "bsd"
440 indent-tabs-mode: t
441 tab-width: 8
442 End: