url_imap.c
4.07 KB
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
/* GNU mailutils - a suite of utilities for electronic mail
Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Library General Public License as published by
the Free Software Foundation; either version 2, 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 Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#ifdef HAVE_STRINGS_H
# include <strings.h>
#endif
#include <registrar0.h>
#include <url0.h>
static void url_imap_destroy (url_t url);
static void
url_imap_destroy (url_t url)
{
(void)url;
}
/*
IMAP URL
imap://[<user>;AUTH=<auth>@]<host>/
*/
int
_url_imap_init (url_t url)
{
const char *host_port;
const char *indexe;
char *name = url->name;
/* reject the obvious */
if (name == NULL || strncmp (MU_IMAP_SCHEME, name, MU_IMAP_SCHEME_LEN) != 0)
return EINVAL;
/* do I need to decode url encoding '% hex hex' ? */
/* TYPE */
url->_destroy = url_imap_destroy;
/* SCHEME */
url->scheme = strdup (MU_IMAP_SCHEME);
if (url->scheme == NULL)
{
url_imap_destroy (url);
return ENOMEM;
}
name += MU_IMAP_SCHEME_LEN; /* pass the scheme */
host_port = strchr (name, '@');
if (host_port == NULL)
host_port = name;
/* looking for ";auth=auth-enc" */
for (indexe = name; indexe != host_port; indexe++)
{
/* Auth ? */
if (*indexe == ';')
{
/* make sure it's the token */
if (strncasecmp(indexe + 1, "auth=", 5) == 0)
break;
}
}
/* USER */
url->user = malloc(indexe - name + 1);
if (url->user == NULL)
{
url_imap_destroy (url);
return -1;
}
((char *)memcpy(url->user, name, indexe - name))[indexe - name] = '\0';
/* AUTH */
if (indexe == host_port)
{
/* Use default AUTH '*' */
url->auth = malloc (1 + 1);
if (url->auth)
{
url->auth[0] = '*';
url->auth[1] = '\0';
}
}
else
{
/* move pass AUTH= */
indexe += 6;
url->auth = malloc (host_port - indexe + 1);
if (url->auth)
{
((char *)memcpy (url->auth, indexe, host_port - indexe))
[host_port - indexe] = '\0';
}
}
if (url->auth == NULL)
{
url_imap_destroy (url);
return -1;
}
/* HOST:PORT*/
if (*host_port == '@')
host_port++;
indexe = strchr (host_port, ':');
if (indexe)
{
char *s = NULL;
long int p = strtol (indexe + 1, &s, 10);
url->host = malloc (indexe - host_port + 1);
if (url->host)
{
((char *)memcpy (url->host, host_port, indexe - host_port))
[indexe - host_port] = '\0';
}
url->port = (p == 0) ? MU_IMAP_PORT : p;
host_port = s;
}
else
url->port = MU_IMAP_PORT;
indexe = strchr (host_port, '/');
if (indexe == NULL)
{
if (url->host == NULL)
url->host = strdup (host_port);
}
else
{
char *question;
if (url->host == NULL)
{
url->host = malloc (indexe - host_port + 1);
if (url->host)
((char *)memcpy (url->host, host_port, indexe - host_port))
[indexe - host_port] = '\0';
}
indexe++;
/* The query starts after a '?'. */
question = strchr (indexe, '?');
if (question == NULL)
url->path = strdup (indexe);
else
{
url->path = malloc (question - indexe + 1);
if (url->path)
((char *)memcpy (url->path, indexe,
question - indexe))[question - indexe] = '\0';
url->query = strdup (question);
}
}
if (url->host == NULL)
{
url_imap_destroy (url);
return ENOMEM;
}
return 0;
}