summaryrefslogtreecommitdiff
path: root/src/de/podfetcher/syndication/handler/RSSHandler.java
blob: 5a61b9daa80bc305db1fed52afbad063c238b0c3 (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
package de.podfetcher.syndication.handler;

import java.util.ArrayList;

import de.podfetcher.feed.Feed;
import de.podfetcher.feed.FeedImage;
import de.podfetcher.feed.FeedItem;
import de.podfetcher.feed.FeedMedia;
import de.podfetcher.syndication.namespace.SyndElement;

import org.xml.sax.Attributes;
import org.xml.sax.SAXException;
import org.xml.sax.helpers.DefaultHandler;

/**
 * SAX-Parser for reading RSS-Feeds
 * 
 * @author daniel
 * 
 */
public class RSSHandler extends SyndHandler {
	public final static String CHANNEL = "channel";
	public final static String ITEM = "item";
	public final static String TITLE = "title";
	public final static String LINK = "link";
	public final static String DESCR = "description";
	public final static String PUBDATE = "pubDate";
	public final static String ENCLOSURE = "enclosure";
	public final static String IMAGE = "image";
	public final static String URL = "url";

	public final static String ENC_URL = "url";
	public final static String ENC_LEN = "length";
	public final static String ENC_TYPE = "type";


	public RSSHandler(Feed feed) {
		super(feed);
	}

	@Override
	public void characters(char[] ch, int start, int length)
			throws SAXException {
		if (state.tagstack.size() >= 2) {
			String content = new String(ch, start, length);
			SyndElement topElement = state.tagstack.pop();
			String top = topElement.getName();
			String second = state.tagstack.peek().getName();
			state.tagstack.push(topElement);
			if (top.equals(TITLE)) {
				if (second.equals(ITEM)) {
					state.currentItem.setTitle(content);
				} else if (second.equals(CHANNEL)) {
					state.feed.setTitle(content);
				} else if (second.equals(IMAGE)) {
					state.feed.getImage().setTitle(IMAGE);
				}
			} else if (top.equals(DESCR)) {
				if (second.equals(CHANNEL)) {
					state.feed.setDescription(content);
				} else if (second.equals(ITEM)) {
					state.feed.setDescription(content);
				}
			} else if (top.equals(LINK)) {
				if (second.equals(CHANNEL)) {
					state.feed.setLink(content);
				} else if (second.equals(ITEM)) {
					state.currentItem.setLink(content);
				}
			} else if (top.equals(PUBDATE) && second.equals(ITEM)) {
				state.currentItem.setPubDate(content);
			} else if (top.equals(URL) && second.equals(IMAGE)) {
				state.feed.getImage().setDownload_url(content);
			}
		}
	}

	@Override
	public void endElement(String uri, String localName, String qName)
			throws SAXException {
		if (localName.equals(ITEM)) {
			state.currentItem = null;
		}
		super.endElement(uri, localName, qName);
	}

	@Override
	public void startElement(String uri, String localName, String qName,
			Attributes attributes) throws SAXException {

		if (localName.equals(ITEM)) {
			state.currentItem = new FeedItem();
			state.feed.getItems().add(state.currentItem);
			state.currentItem.setFeed(state.feed);

		} else if (localName.equals(ENCLOSURE)) {
			state.currentItem
					.setMedia(new FeedMedia(state.currentItem, attributes
							.getValue(ENC_URL), Long.parseLong(attributes
							.getValue(ENC_LEN)), attributes.getValue(ENC_TYPE)));
		} else if (localName.equals(IMAGE)) {
			state.feed.setImage(new FeedImage());
		}

		super.startElement(uri, localName, qName, attributes);
	}

}