aboutsummaryrefslogtreecommitdiffstats
path: root/camel/url-util.c
blob: 91779873cb18288ee1f8b7ae5f707b059d506018 (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
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/* url-util.c : utility functions to parse URLs */


/* 
 * Authors : 
 *  Bertrand Guiheneuf <bertrand@helixcode.com>
 *  Dan Winship <danw@helixcode.com>
 *
 * Copyright 1999, 2000 Helix Code, Inc. (http://www.helixcode.com)
 *
 * 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
 */



/* 
 * Here we deal with URLs following the general scheme:
 *   protocol://user;AUTH=mech:password@host:port/name
 * where name is a path-like string (ie dir1/dir2/....) See RFC 1738
 * for the complete description of Uniform Resource Locators. The
 * ";AUTH=mech" addition comes from RFC 2384, "POP URL Scheme".
 */

/* XXX TODO: recover the words between #'s or ?'s after the path */

#include <string.h>
#include <config.h>
#include "url-util.h"

/**
 * g_url_new: create a Gurl object from a string
 *
 * @url_string: The string containing the URL to scan
 * 
 * This routine takes a gchar and parses it as a
 * URL of the form:
 *   protocol://user;AUTH=mech:password@host:port/path
 * There is no test on the values. For example,
 * "port" can be a string, not only a number!
 * The Gurl structure fields are filled with
 * the scan results. When a member of the 
 * general URL can not be found, the corresponding
 * Gurl member is NULL.
 * Fields filled in the Gurl structure are allocated
 * and url_string is not modified. 
 * 
 * Return value: a Gurl structure containing the URL items.
 **/
Gurl *g_url_new (const gchar* url_string)
{
    Gurl *g_url;
    char *semi, *colon, *at, *slash;

    g_url = g_new (Gurl,1);

    /* Find protocol: initial substring until "://" */
    colon = strchr (url_string, ':');
    if (colon && !strncmp (colon, "://", 3)) {
        g_url->protocol = g_strndup (url_string, colon - url_string);
        url_string = colon + 3;
    } else
        g_url->protocol = NULL;

    /* If there is an @ sign, look for user, authmech, and
     * password before it.
     */
    at = strchr (url_string, '@');
    if (at) {
        colon = strchr (url_string, ':');
        if (colon && colon < at)
            g_url->passwd = g_strndup (colon + 1, at - colon - 1);
        else {
            g_url->passwd = NULL;
            colon = at;
        }

        semi = strchr(url_string, ';');
        if (semi && semi < colon && !strncasecmp (semi, ";auth=", 6))
            g_url->authmech = g_strndup (semi + 6, colon - semi - 6);
        else {
            g_url->authmech = NULL;
            semi = colon;
        }

        g_url->user = g_strndup (url_string, semi - url_string);
        url_string = at + 1;
    } else
        g_url->user = g_url->passwd = g_url->authmech = NULL;

    /* Find host (required) and port. */
    slash = strchr (url_string, '/');
    colon = strchr (url_string, ':');
    if (slash && colon > slash)
        colon == 0;

    if (colon) {
        g_url->host = g_strndup (url_string, colon - url_string);
        if (slash)
            g_url->port = g_strndup (colon + 1, slash - colon - 1);
        else
            g_url->port = g_strdup (colon + 1);
    } else if (slash) {
        g_url->host = g_strndup (url_string, slash - url_string);
        g_url->port = NULL;
    } else {
        g_url->host = g_strdup (url_string);
        g_url->port = NULL;
    }

    if (slash && *(slash + 1))
        g_url->path = g_strdup (slash + 1);
    else
        g_url->path = NULL;

    return g_url;
}

void
g_url_free (Gurl *url)
{
    g_assert (url);

    g_free (url->protocol);
    g_free (url->user);
    g_free (url->authmech);
    g_free (url->passwd);
    g_free (url->host);
    g_free (url->port);
    g_free (url->path);

    g_free (url);
}