2 * Copyright (C) 2006 Andrej Kacian <andrej@kacian.sk>
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.
9 * This program is distributed in the hope that it will be useful,
10 * but 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.
14 * You should have received a copy of the GNU General Public
15 * License along with this program; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
30 #include "parser_atom10.h"
32 void feed_parser_atom10_start(void *data, const gchar *el, const gchar **attr)
34 FeedParserCtx *ctx = (FeedParserCtx *)data;
37 if( ctx->depth == 1 ) {
39 if( !strcmp(el, "entry") ) {
40 /* Start of new feed item found.
41 * Create a new FeedItem, freeing the one we already have, if any. */
42 if( ctx->curitem != NULL )
43 feed_item_free(ctx->curitem);
44 ctx->curitem = feed_item_new(ctx->feed);
45 ctx->location = FEED_LOC_ATOM10_ENTRY;
46 } else if( !strcmp(el, "author") ) {
47 /* Start of author info for the feed found.
48 * Set correct location. */
49 ctx->location = FEED_LOC_ATOM10_AUTHOR;
50 } else if( !strcmp(el, "link") ) {
51 /* Link tag for the feed */
52 g_free(ctx->feed->link);
53 ctx->feed->link = g_strdup(feed_parser_get_attribute_value(attr, "href"));
54 } else ctx->location = FEED_LOC_ATOM10_NONE;
56 } else if( ctx->depth == 2 ) {
58 /* Make sure we are in one of known locations within the XML structure.
59 * This condition should never be true on a valid Atom feed. */
60 if (ctx->location != FEED_LOC_ATOM10_AUTHOR &&
61 ctx->location != FEED_LOC_ATOM10_ENTRY) {
66 if( !strcmp(el, "author") ) {
67 /* Start of author info for current feed item.
68 * Set correct location. */
69 ctx->location = FEED_LOC_ATOM10_AUTHOR;
70 } else if( !strcmp(el, "link") ) {
71 /* Capture item URL, from the "url" XML attribute. */
72 if (ctx->curitem && ctx->location == FEED_LOC_ATOM10_ENTRY)
73 ctx->curitem->url = g_strdup(feed_parser_get_attribute_value(attr, "href"));
74 } else if( !strcmp(el, "source") ) {
75 ctx->location = FEED_LOC_ATOM10_SOURCE;
76 } else ctx->location = FEED_LOC_ATOM10_ENTRY;
78 if( !strcmp(el, "title") ) {
79 a = feed_parser_get_attribute_value(attr, "type");
80 if( !a || !strcmp(a, "text") )
81 ctx->curitem->title_format = FEED_ITEM_TITLE_TEXT;
82 else if( !strcmp(a, "html") )
83 ctx->curitem->title_format = FEED_ITEM_TITLE_HTML;
84 else if( !strcmp(a, "xhtml") )
85 ctx->curitem->title_format = FEED_ITEM_TITLE_XHTML;
87 ctx->curitem->title_format = FEED_ITEM_TITLE_UNKNOWN;
88 } else if (!strcmp(el, "content") ) {
89 a = feed_parser_get_attribute_value(attr, "type");
90 if (a && !strcmp(a, "xhtml")) {
91 ctx->curitem->xhtml_content = TRUE;
92 ctx->location = FEED_LOC_ATOM10_CONTENT;
100 void feed_parser_atom10_end(void *data, const gchar *el)
102 FeedParserCtx *ctx = (FeedParserCtx *)data;
103 Feed *feed = ctx->feed;
104 gchar *text = NULL, *tmp;
106 if( ctx->str != NULL )
107 text = ctx->str->str;
111 switch( ctx->depth ) {
119 if( !strcmp(el, "feed") ) {
120 /* We have finished parsing the feed, reverse the list
121 * so it's not upside down. */
122 feed->items = g_slist_reverse(ctx->feed->items);
129 /* decide if we just received </entry>, so we can
130 * add a complete item to feed */
131 if( !strcmp(el, "entry") ) {
133 /* Fix up URL, if it is relative */
134 if (!strstr("://", ctx->curitem->url) &&
135 ctx->feed->link != NULL) {
136 tmp = g_strconcat(ctx->feed->link,
137 (ctx->curitem->url[0] == '/' ? "" : "/"),
138 ctx->curitem->url, NULL);
139 feed_item_set_url(ctx->curitem, tmp);
143 /* append the complete feed item */
144 if( ctx->curitem->id && ctx->curitem->title
145 && ctx->curitem->date_modified ) {
147 g_slist_prepend(feed->items, (gpointer)ctx->curitem);
150 /* since it's in the linked list, lose this pointer */
153 } else if( !strcmp(el, "title") ) { /* so it wasn't end of item */
155 } else if( !strcmp(el, "summary" ) ) {
156 FILL(feed->description)
157 } else if( !strcmp(el, "updated" ) ) {
158 feed->date = parseISO8601Date(text);
160 /* FIXME: add more later */
166 if( ctx->curitem == NULL )
169 switch(ctx->location) {
171 /* We're in feed/entry */
172 case FEED_LOC_ATOM10_ENTRY:
173 if( !strcmp(el, "title") ) {
174 FILL(ctx->curitem->title)
175 } else if( !strcmp(el, "summary") ) {
176 FILL(ctx->curitem->summary)
177 } else if( !strcmp(el, "content") ) {
178 if (!ctx->curitem->xhtml_content)
179 FILL(ctx->curitem->text)
180 } else if( !strcmp(el, "id") ) {
181 FILL(ctx->curitem->id)
182 feed_item_set_id_permalink(ctx->curitem, TRUE);
183 } else if( !strcmp(el, "published") ) {
184 ctx->curitem->date_published = parseISO8601Date(text);
185 } else if( !strcmp(el, "updated") ) {
186 ctx->curitem->date_modified = parseISO8601Date(text);
191 /* We're in feed/author or about to leave feed/entry/author */
192 case FEED_LOC_ATOM10_AUTHOR:
193 if( !strcmp(el, "author" ) ) {
194 /* We just finished parsing <author> */
195 ctx->curitem->author = g_strdup_printf("%s%s%s%s%s",
196 ctx->name ? ctx->name : "",
197 ctx->name && ctx->mail ? " <" : ctx->mail ? "<" : "",
198 ctx->mail ? ctx->mail : "",
199 ctx->mail ? ">" : "",
200 !ctx->name && !ctx->mail ? "N/A" : "");
201 ctx->location = FEED_LOC_ATOM10_ENTRY;
202 } else if( !strcmp(el, "name") ) {
213 if( ctx->curitem == NULL )
216 switch(ctx->location) {
218 /* We're in feed/entry/author */
219 case FEED_LOC_ATOM10_AUTHOR:
220 if( !strcmp(el, "name") ) {
222 } else if( !strcmp(el, "email") ) {
228 /* We're in feed/entry/source */
229 case FEED_LOC_ATOM10_SOURCE:
230 if( !strcmp(el, "title" ) ) {
231 FILL(ctx->curitem->sourcetitle)
232 } else if( !strcmp(el, "id" ) ) {
233 FILL(ctx->curitem->sourceid)
234 } else if( !strcmp(el, "updated" ) ) {
235 ctx->curitem->sourcedate = parseISO8601Date(text);
240 case FEED_LOC_ATOM10_CONTENT:
241 if (!strcmp(el, "div") && ctx->curitem->xhtml_content)
242 FILL(ctx->curitem->text)
251 if( ctx->str != NULL ) {
252 g_string_free(ctx->str, TRUE);