aboutsummaryrefslogtreecommitdiff
path: root/src/xml.c
blob: 4ec82b25357f0e0f69759e43dcfa8bd589591979 (plain)
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
/*
 * xml.c
 *
 * Rudimentary XML parser
 *
 * (c) 2002-2005 Thomas White <taw27@srcf.ucam.org>
 *  Part of TuxMessenger - GTK+-based MSN Messenger client
 *
 *  This package 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; version 2 dated June, 1991. 
 *
 * This package 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 package; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 * 02111-1307, USA. 
 *
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <string.h>
#include <stdlib.h>
#include <libxml/xmlmemory.h>
#include <libxml/parser.h>

#include "routines.h"
#include "debug.h"

char *xml_getfield(const char *xml, const char *field) {

	char *identifier_start;
	char *value;
	
	identifier_start = strstr(xml, field);
	
	if ( identifier_start == NULL ) {
		return NULL;
	}
	
	value = routines_lindex(identifier_start + strlen(field) + 2, 0);
	value[strlen(value)-1] = '\0';
	
	return value;

}

char *xml_killillegalchars(const char *temp) {

	char *result;
	unsigned int i;
	
	if ( temp == NULL ) {
		return strdup("");
	}
	
	result = malloc(strlen(temp)+1);
	strcpy(result, temp);
	for ( i=0; i<strlen(result); i++ ) {
	
		if ( result[i] == '/' ) {
			result[i] = '-';
		}
		
		/* Don't even think about directory traversal... */
		if ( result[i] == '.' ) {
			result[i] = '-';
		}
	
	}
	
	return result;

}

/* Get the block of text between two given tags. */
char *xml_getblock(const char *xml, size_t xmllength, const char *rootnode, const char *keyword, int entities) {

	xmlDocPtr doc;
	xmlNodePtr cur;

	doc = xmlParseMemory(xml, xmllength);
	
	if (doc == NULL ) {
		return NULL;
	}

	cur = xmlDocGetRootElement(doc);
	
	if (cur == NULL) {
		xmlFreeDoc(doc);
		return NULL;
	}
	
	if (xmlStrcmp(cur->name, rootnode)) {
		xmlFreeDoc(doc);
		return NULL;
	}
	
	cur = cur->xmlChildrenNode;
	while (cur != NULL) {
	
		if ((!xmlStrcmp(cur->name, keyword))) {
		
			char *resultchar;
			
			xmlChar *result = xmlNodeListGetString(doc, cur->xmlChildrenNode, entities);
			if ( result == NULL ) {
				return NULL;
			}
			resultchar = strdup(result);
			xmlFree(result);
			return resultchar;
			
		}
		 
		cur = cur->next;
		
	}
	
	return NULL;

}

/* Set the block of text between two given tags. */
char *xml_setblock(const char *xml, size_t xmllength, const char *rootnode, const char *keyword, const char *value) {

	xmlDocPtr doc;
	xmlNodePtr cur;

	doc = xmlParseMemory(xml, xmllength);
	
	if (doc == NULL ) {
		return NULL;
	}

	cur = xmlDocGetRootElement(doc);
	
	if (cur == NULL) {
		xmlFreeDoc(doc);
		return NULL;
	}
	
	if (xmlStrcmp(cur->name, rootnode)) {
		xmlFreeDoc(doc);
		return NULL;
	}
	
	cur = cur->xmlChildrenNode;
	while (cur != NULL) {
	
		if ((!xmlStrcmp(cur->name, keyword))) {
		
			xmlChar *xmlbuf;
			size_t xmlbuflength;
			char *text;
		
			xmlNewTextChild(cur->parent, NULL, keyword, value);
			xmlUnlinkNode(cur);
			xmlFreeNode(cur);
			
			xmlDocDumpFormatMemory(doc, &xmlbuf, &xmlbuflength, 0);
			text = malloc(xmlbuflength+1);
			memcpy(text, xmlbuf, xmlbuflength+1);
			xmlFree(xmlbuf);
			
			return text;
			
			
			
		}
		 
		cur = cur->next;
		
	}
	
	return NULL;

}