Imported Upstream version 1.0.1
[psensor-pkg-debian.git] / src / lib / url.c
1 /*
2  * Copyright (C) 2010-2014 jeanfi@gmail.com
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301 USA
18  */
19
20 /*
21  * Part of the following code is based on:
22  * http://www.geekhideout.com/urlcode.shtml
23  */
24 #include "url.h"
25
26 #include <ctype.h>
27 #include <stdlib.h>
28 #include <string.h>
29
30 char *url_normalize(const char *url)
31 {
32         int n = strlen(url);
33         char *ret = strdup(url);
34
35         if (url[n - 1] == '/')
36                 ret[n - 1] = '\0';
37
38         return ret;
39 }
40
41 static char to_hex(char code)
42 {
43         static const char hex[] = "0123456789abcdef";
44         return hex[code & 0x0f];
45 }
46
47 /*
48  * Returns a url-encoded version of str.
49  */
50 char *url_encode(const char *str)
51 {
52         char *c, *buf, *pbuf;
53
54         buf = malloc(strlen(str) * 3 + 1);
55         pbuf = buf;
56
57         c = (char *)str;
58
59         while (*c) {
60
61                 if (isalnum(*c) ||
62                     *c == '.' || *c == '_' || *c == '-' || *c == '~')
63                         *pbuf++ = *c;
64                 else {
65                         *pbuf++ = '%';
66                         *pbuf++ = to_hex(*c >> 4);
67                         *pbuf++ = to_hex(*c & 0x0f);
68                 }
69                 c++;
70         }
71         *pbuf = '\0';
72
73         return buf;
74 }