1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-11-02 08:25:02 -04:00

* update TVRageClient (switch to services.tvrage.com and remove cache because its really fast anyway)

This commit is contained in:
Reinhard Pointner 2009-07-23 14:37:54 +00:00
parent a500aacf80
commit 9f047e67a5

View File

@ -16,23 +16,18 @@ import java.util.List;
import javax.swing.Icon;
import javax.xml.parsers.ParserConfigurationException;
import net.sf.ehcache.Cache;
import net.sf.ehcache.CacheManager;
import net.sf.ehcache.Element;
import net.sourceforge.filebot.ResourceManager;
import org.w3c.dom.Document;
import org.w3c.dom.Node;
import org.xml.sax.SAXException;
import net.sourceforge.filebot.ResourceManager;
public class TVRageClient implements EpisodeListProvider {
private static final String host = "www.tvrage.com";
private final Cache cache = CacheManager.getInstance().getCache("web");
private static final String host = "services.tvrage.com";
@Override
public String getName() {
return "TVRage";
@ -74,20 +69,12 @@ public class TVRageClient implements EpisodeListProvider {
}
@SuppressWarnings("unchecked")
@Override
public List<Episode> getEpisodeList(SearchResult searchResult) throws IOException, SAXException, ParserConfigurationException {
int showId = ((TVRageSearchResult) searchResult).getShowId();
URL episodeListUrl = new URL("http", host, "/feeds/episode_list.php?sid=" + showId);
// try to load from cache
Element cacheEntry = cache.get(episodeListUrl.toString());
if (cacheEntry != null) {
return (List<Episode>) cacheEntry.getValue();
}
Document dom = getDocument(episodeListUrl);
String seriesName = selectString("Show/name", dom);
@ -109,9 +96,6 @@ public class TVRageClient implements EpisodeListProvider {
episodes.add(new Episode(seriesName, seasonNumber, episodeNumber, title));
}
// populate cache
cache.put(new Element(episodeListUrl.toString(), episodes));
return episodes;
}
@ -147,13 +131,13 @@ public class TVRageClient implements EpisodeListProvider {
return URI.create(base + "/episode_list/" + seasonString);
}
public static class TVRageSearchResult extends SearchResult {
private final int showId;
private final String link;
public TVRageSearchResult(String name, int showId, String link) {
super(name);
this.showId = showId;