2313
|
1 /* Audacious - Cross-platform multimedia player
|
|
2 * Copyright (C) 2005-2007 Audacious development team
|
|
3 *
|
|
4 * Based on BMP:
|
|
5 * Copyright (C) 2003-2004 BMP development team.
|
|
6 *
|
|
7 * Based on XMMS:
|
|
8 * Copyright (C) 1998-2003 XMMS development team.
|
|
9 *
|
|
10 * This program is free software; you can redistribute it and/or modify
|
|
11 * it under the terms of the GNU General Public License as published by
|
|
12 * the Free Software Foundation; under version 2 of the License.
|
|
13 *
|
|
14 * This program is distributed in the hope that it will be useful,
|
|
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
17 * GNU General Public License for more details.
|
|
18 *
|
|
19 * You should have received a copy of the GNU General Public License
|
|
20 * along with this program; if not, write to the Free Software
|
|
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
22 */
|
|
23
|
|
24 #include "urldecode.h"
|
|
25
|
|
26 #include <glib.h>
|
|
27 #include <stdio.h>
|
|
28 #include <string.h>
|
|
29
|
|
30 #include "util.h"
|
|
31
|
|
32 gchar *
|
|
33 xmms_urldecode_plain(const gchar * encoded_path)
|
|
34 {
|
|
35 const gchar *cur, *ext;
|
|
36 gchar *path, *tmp;
|
|
37 gint realchar;
|
|
38
|
|
39 if (!encoded_path)
|
|
40 return NULL;
|
|
41
|
|
42 cur = encoded_path;
|
|
43 if (*cur == '/')
|
|
44 while (cur[1] == '/')
|
|
45 cur++;
|
|
46
|
|
47 tmp = g_malloc0(strlen(cur) + 1);
|
|
48
|
|
49 while ((ext = strchr(cur, '%')) != NULL) {
|
|
50 strncat(tmp, cur, ext - cur);
|
|
51 ext++;
|
|
52 cur = ext + 2;
|
|
53 if (!sscanf(ext, "%2x", &realchar)) {
|
|
54 /*
|
|
55 * Assume it is a literal '%'. Several file
|
|
56 * managers send unencoded file: urls on on
|
|
57 * drag and drop.
|
|
58 */
|
|
59 realchar = '%';
|
|
60 cur -= 2;
|
|
61 }
|
|
62 tmp[strlen(tmp)] = realchar;
|
|
63 }
|
|
64
|
|
65 path = g_strconcat(tmp, cur, NULL);
|
|
66 g_free(tmp);
|
|
67 return path;
|
|
68 }
|