aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/gossip-utils.c
blob: 24f5cd4329bc2c7ec98873d3081579d33c718ec0 (plain) (blame)
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 * Copyright (C) 2003-2007 Imendio AB
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of the
 * License, or (at your option) any later version.
 *
 * This program 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
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public
 * License along with this program; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 *
 * Authors: Richard Hult <richard@imendio.com>
 *          Martyn Russell <martyn@imendio.com>
 */

#include "config.h"

#include <string.h>
#include <time.h>
#include <sys/types.h>
#include <regex.h>

#include <glib/gi18n.h>

#include <libxml/uri.h>
#include <libmissioncontrol/mc-account.h>

#include "gossip-debug.h"
#include "gossip-utils.h"
#include "gossip-paths.h"
#include "empathy-session.h"
#include "empathy-contact-manager.h"

#define DEBUG_DOMAIN "Utils"

static void regex_init (void);

gchar *
gossip_substring (const gchar *str,
          gint         start,
          gint         end)
{
    return g_strndup (str + start, end - start);
}

/*
 * Regular Expression code to match urls.
 */
#define USERCHARS "-A-Za-z0-9"
#define PASSCHARS "-A-Za-z0-9,?;.:/!%$^*&~\"#'"
#define HOSTCHARS "-A-Za-z0-9"
#define PATHCHARS "-A-Za-z0-9_$.+!*(),;:@&=?/~#%"
#define SCHEME    "(news:|telnet:|nntp:|file:/|https?:|ftps?:|webcal:)"
#define USER      "[" USERCHARS "]+(:["PASSCHARS "]+)?"
#define URLPATH   "/[" PATHCHARS "]*[^]'.}>) \t\r\n,\\\"]"

static regex_t dingus[GOSSIP_REGEX_ALL];

static void
regex_init (void)
{
    static gboolean  inited = FALSE;
    const gchar     *expression;
    gint             i;

    if (inited) {
        return;
    }

    for (i = 0; i < GOSSIP_REGEX_ALL; i++) {
        switch (i) {
        case GOSSIP_REGEX_AS_IS:
            expression =
                SCHEME "//(" USER "@)?[" HOSTCHARS ".]+"
                "(:[0-9]+)?(" URLPATH ")?";
            break;
        case GOSSIP_REGEX_BROWSER:
            expression =
                "(www|ftp)[" HOSTCHARS "]*\\.[" HOSTCHARS ".]+"
                "(:[0-9]+)?(" URLPATH ")?";
            break;
        case GOSSIP_REGEX_EMAIL:
            expression =
                "(mailto:)?[a-z0-9][a-z0-9.-]*@[a-z0-9]"
                "[a-z0-9-]*(\\.[a-z0-9][a-z0-9-]*)+";
            break;
        case GOSSIP_REGEX_OTHER:
            expression =
                "news:[-A-Z\\^_a-z{|}~!\"#$%&'()*+,./0-9;:=?`]+"
                "@[" HOSTCHARS ".]+(:[0-9]+)?";
            break;
        default:
            /* Silence the compiler. */
            expression = NULL;
            continue;
        }

        memset (&dingus[i], 0, sizeof (regex_t));
        regcomp (&dingus[i], expression, REG_EXTENDED | REG_ICASE);
    }

    inited = TRUE;
}

gint
gossip_regex_match (GossipRegExType  type,
            const gchar     *msg,
            GArray          *start,
            GArray          *end)
{
    regmatch_t matches[1];
    gint       ret = 0;
    gint       num_matches = 0;
    gint       offset = 0;
    gint       i;

    g_return_val_if_fail (type >= 0 || type <= GOSSIP_REGEX_ALL, 0);

    regex_init ();

    while (!ret && type != GOSSIP_REGEX_ALL) {
        ret = regexec (&dingus[type], msg + offset, 1, matches, 0);
        if (ret == 0) {
            gint s;

            num_matches++;

            s = matches[0].rm_so + offset;
            offset = matches[0].rm_eo + offset;

            g_array_append_val (start, s);
            g_array_append_val (end, offset);
        }
    }

    if (type != GOSSIP_REGEX_ALL) {
        gossip_debug (DEBUG_DOMAIN,
                  "Found %d matches for regex type:%d",
                  num_matches, type);
        return num_matches;
    }

    /* If GOSSIP_REGEX_ALL then we run ALL regex's on the string. */
    for (i = 0; i < GOSSIP_REGEX_ALL; i++, ret = 0) {
        while (!ret) {
            ret = regexec (&dingus[i], msg + offset, 1, matches, 0);
            if (ret == 0) {
                gint s;

                num_matches++;

                s = matches[0].rm_so + offset;
                offset = matches[0].rm_eo + offset;

                g_array_append_val (start, s);
                g_array_append_val (end, offset);
            }
        }
    }

    gossip_debug (DEBUG_DOMAIN,
              "Found %d matches for ALL regex types",
              num_matches);

    return num_matches;
}

gint
gossip_strcasecmp (const gchar *s1,
           const gchar *s2)
{
    return gossip_strncasecmp (s1, s2, -1);
}

gint
gossip_strncasecmp (const gchar *s1,
            const gchar *s2,
            gsize        n)
{
    gchar *u1, *u2;
    gint   ret_val;

    u1 = g_utf8_casefold (s1, n);
    u2 = g_utf8_casefold (s2, n);

    ret_val = g_utf8_collate (u1, u2);
    g_free (u1);
    g_free (u2);

    return ret_val;
}

gboolean
gossip_xml_validate (xmlDoc      *doc,
             const gchar *dtd_filename)
{
    gchar        *path, *escaped;
    xmlValidCtxt  cvp;
    xmlDtd       *dtd;
    gboolean      ret;

    path = gossip_paths_get_dtd_path (dtd_filename);

    /* The list of valid chars is taken from libxml. */
    escaped = xmlURIEscapeStr (path, ":@&=+$,/?;");

    g_free (path);

    memset (&cvp, 0, sizeof (cvp));
    dtd = xmlParseDTD (NULL, escaped);
    ret = xmlValidateDtd (&cvp, doc, dtd);

    xmlFree (escaped);
    xmlFreeDtd (dtd);

    return ret;
}

xmlNodePtr
gossip_xml_node_get_child (xmlNodePtr   node, 
               const gchar *child_name)
{
    xmlNodePtr l;

        g_return_val_if_fail (node != NULL, NULL);
        g_return_val_if_fail (child_name != NULL, NULL);

    for (l = node->children; l; l = l->next) {
        if (l->name && strcmp (l->name, child_name) == 0) {
            return l;
        }
    }

    return NULL;
}

xmlChar *
gossip_xml_node_get_child_content (xmlNodePtr   node, 
                   const gchar *child_name)
{
    xmlNodePtr l;

        g_return_val_if_fail (node != NULL, NULL);
        g_return_val_if_fail (child_name != NULL, NULL);

    l = gossip_xml_node_get_child (node, child_name);
    if (l) {
        return xmlNodeGetContent (l);
    }
        
    return NULL;
}

xmlNodePtr
gossip_xml_node_find_child_prop_value (xmlNodePtr   node, 
                       const gchar *prop_name,
                       const gchar *prop_value)
{
    xmlNodePtr l;
    xmlNodePtr found = NULL;

        g_return_val_if_fail (node != NULL, NULL);
        g_return_val_if_fail (prop_name != NULL, NULL);
        g_return_val_if_fail (prop_value != NULL, NULL);

    for (l = node->children; l && !found; l = l->next) {
        xmlChar *prop;

        if (!xmlHasProp (l, prop_name)) {
            continue;
        }

        prop = xmlGetProp (l, prop_name);
        if (prop && strcmp (prop, prop_value) == 0) {
            found = l;
        }
        
        xmlFree (prop);
    }
        
    return found;
}

GType
gossip_dbus_type_to_g_type (const gchar *dbus_type_string)
{
    if (dbus_type_string == NULL)
        return G_TYPE_NONE;

    if (dbus_type_string[0] == 's') {
        return G_TYPE_STRING;
    }
    else if (dbus_type_string[0] == 'b') {
        return G_TYPE_BOOLEAN;
    }
    else if (dbus_type_string[0] == 'q') {
        return G_TYPE_UINT;
    }
    else if (dbus_type_string[0] == 'n') {
        return G_TYPE_INT;
    }

    g_assert_not_reached ();
    return G_TYPE_NONE;
}

const gchar *
gossip_g_type_to_dbus_type (GType g_type)
{
    switch (g_type)
    {
    case G_TYPE_STRING:
        return "s";
    case G_TYPE_BOOLEAN:
        return "b";
    case G_TYPE_UINT:
        return "q";
    case G_TYPE_INT:
        return "n";
    default:
        g_assert_not_reached ();
    }

    return NULL;
}

gchar *
gossip_g_value_to_string (const GValue *value)
{
    gchar  *return_string = NULL;
    GValue  string_g_value = {0, };

    g_value_init (&string_g_value, G_TYPE_STRING);
    g_value_transform (value, &string_g_value);
    return_string = g_value_dup_string (&string_g_value);
    g_value_unset (&string_g_value);

    return return_string;
}

GValue *
gossip_string_to_g_value (const gchar *str, GType type)
{
    GValue *g_value;

    g_value = g_new0 (GValue, 1);
    g_value_init (g_value, type);

    switch (type) {
    case G_TYPE_STRING:
        g_value_set_string (g_value, str);
        break;
    case G_TYPE_BOOLEAN:
        g_value_set_boolean (g_value, (str[0] == 'y' || str[0] == 'T'));
        break;
    case G_TYPE_UINT:
        g_value_set_uint (g_value, atoi (str));
        break;
    case G_TYPE_INT:
        g_value_set_int (g_value, atoi (str));
        break;
    default:
        g_assert_not_reached ();
    }

    return g_value;
}

gboolean
gossip_g_value_equal (const GValue *value1,
              const GValue *value2)
{
    GType type;

    g_return_val_if_fail (value1 != NULL, FALSE);
    g_return_val_if_fail (value2 != NULL, FALSE);

    type = G_VALUE_TYPE (value1);
    if (type != G_VALUE_TYPE (value2)) {
        return FALSE;
    }

    switch (type)
    {
    case G_TYPE_STRING: {
        const gchar *str1;
        const gchar *str2;

        str1 = g_value_get_string (value1);
        str2 = g_value_get_string (value2);
        return (str1 && str2 && strcmp (str1, str2) == 0) ||
               (G_STR_EMPTY (str1) && G_STR_EMPTY (str2));
    }
    case G_TYPE_BOOLEAN:
        return g_value_get_boolean (value1) == g_value_get_boolean (value2);
    case G_TYPE_UINT:
        return g_value_get_uint (value1) == g_value_get_uint (value2);
    case G_TYPE_INT:
        return g_value_get_int (value1) == g_value_get_int (value2);
    default:
        g_warning ("Unsupported GType in value comparaison");
    }

    return FALSE;
}

guint
gossip_account_hash (gconstpointer key)
{
    return g_str_hash (mc_account_get_unique_name (MC_ACCOUNT (key)));
}

gboolean
gossip_account_equal (gconstpointer a,
              gconstpointer b)
{
    const gchar *name_a;
    const gchar *name_b;

    name_a = mc_account_get_unique_name (MC_ACCOUNT (a));
    name_b = mc_account_get_unique_name (MC_ACCOUNT (b));

    return g_str_equal (name_a, name_b);
}

GossipContact *
gossip_get_own_contact_from_contact (GossipContact  *contact)
{
    EmpathyContactManager *manager;
    McAccount             *account;

    g_return_val_if_fail (GOSSIP_IS_CONTACT (contact), NULL);

    manager = empathy_session_get_contact_manager ();
    account = gossip_contact_get_account (contact);

    return empathy_contact_manager_get_own (manager, account);
}