mirror of
https://github.com/readrops/Readrops.git
synced 2025-02-02 11:46:52 +01:00
Delete unused class and clean RSSQuery code
This commit is contained in:
parent
47dad0027f
commit
1e72cf29d6
@ -1,7 +0,0 @@
|
||||
package com.readrops.readropslibrary.localfeed;
|
||||
|
||||
/**
|
||||
* Just an abstract class to wrap the three rss items types
|
||||
*/
|
||||
public abstract class AItem {
|
||||
}
|
@ -37,6 +37,7 @@ public class RSSQuery {
|
||||
/**
|
||||
* Request the url given in parameter.
|
||||
* This method is synchronous, it <b>has</b> to be called from another thread than the main one.
|
||||
*
|
||||
* @param url url to request
|
||||
* @throws Exception
|
||||
*/
|
||||
@ -58,7 +59,7 @@ public class RSSQuery {
|
||||
}
|
||||
|
||||
public boolean isUrlFeedLink(String url) throws IOException {
|
||||
Response response = query(url, new HashMap<String, String>());
|
||||
Response response = query(url, new HashMap<>());
|
||||
|
||||
if (response.isSuccessful()) {
|
||||
String header = response.header(LibUtils.CONTENT_TYPE_HEADER);
|
||||
@ -97,17 +98,15 @@ public class RSSQuery {
|
||||
|
||||
switch (header) {
|
||||
case LibUtils.RSS_DEFAULT_CONTENT_TYPE:
|
||||
return RSSType.RSS_2;
|
||||
return RSSType.RSS_2;
|
||||
case LibUtils.RSS_TEXT_CONTENT_TYPE:
|
||||
return RSSType.RSS_UNKNOWN;
|
||||
case LibUtils.HTML_CONTENT_TYPE:
|
||||
case LibUtils.RSS_APPLICATION_CONTENT_TYPE:
|
||||
return RSSType.RSS_UNKNOWN;
|
||||
case LibUtils.ATOM_CONTENT_TYPE:
|
||||
return RSSType.RSS_ATOM;
|
||||
case LibUtils.JSON_CONTENT_TYPE:
|
||||
return RSSType.RSS_JSON;
|
||||
case LibUtils.HTML_CONTENT_TYPE:
|
||||
return RSSType.RSS_UNKNOWN;
|
||||
default:
|
||||
Log.d(TAG, "bad content type : " + contentType);
|
||||
return null;
|
||||
@ -116,8 +115,9 @@ public class RSSQuery {
|
||||
|
||||
/**
|
||||
* Parse input feed
|
||||
* @param stream source to parse
|
||||
* @param type rss type, important to know the feed format
|
||||
*
|
||||
* @param stream source to parse
|
||||
* @param type rss type, important to know the feed format
|
||||
* @param response query response
|
||||
* @throws Exception
|
||||
*/
|
||||
@ -135,42 +135,35 @@ public class RSSQuery {
|
||||
|
||||
String etag = response.header(LibUtils.ETAG_HEADER);
|
||||
String lastModified = response.header(LibUtils.LAST_MODIFIED_HEADER);
|
||||
AFeed feed;
|
||||
AFeed feed = null;
|
||||
RSSQueryResult queryResult = new RSSQueryResult();
|
||||
|
||||
switch (type) {
|
||||
case RSS_2:
|
||||
feed = serializer.read(RSSFeed.class, xml);
|
||||
if (((RSSFeed)feed).getChannel().getFeedUrl() == null) // workaround if the channel does not have any atom:link tag
|
||||
((RSSFeed)feed).getChannel().getLinks().add(new RSSLink(null, response.request().url().toString()));
|
||||
feed.setEtag(etag);
|
||||
feed.setLastModified(lastModified);
|
||||
|
||||
queryResult.setFeed(feed);
|
||||
queryResult.setRssType(type);
|
||||
// workaround if the channel does not have any atom:link tag
|
||||
if (((RSSFeed) feed).getChannel().getFeedUrl() == null) {
|
||||
((RSSFeed) feed).getChannel().getLinks().add(new RSSLink(null, response.request().url().toString()));
|
||||
}
|
||||
break;
|
||||
case RSS_ATOM:
|
||||
feed = serializer.read(ATOMFeed.class, xml);
|
||||
((ATOMFeed)feed).setWebsiteUrl(response.request().url().scheme() + "://" + response.request().url().host());
|
||||
((ATOMFeed)feed).setUrl(response.request().url().toString());
|
||||
feed.setEtag(etag);
|
||||
feed.setLastModified(etag);
|
||||
|
||||
queryResult.setFeed(feed);
|
||||
queryResult.setRssType(type);
|
||||
((ATOMFeed) feed).setWebsiteUrl(response.request().url().scheme() + "://" + response.request().url().host());
|
||||
((ATOMFeed) feed).setUrl(response.request().url().toString());
|
||||
break;
|
||||
case RSS_JSON:
|
||||
Gson gson = new Gson();
|
||||
feed = gson.fromJson(xml, JSONFeed.class);
|
||||
|
||||
feed.setEtag(etag);
|
||||
feed.setLastModified(lastModified);
|
||||
|
||||
queryResult.setFeed(feed);
|
||||
queryResult.setRssType(type);
|
||||
break;
|
||||
}
|
||||
|
||||
queryResult.setFeed(feed);
|
||||
queryResult.setRssType(type);
|
||||
|
||||
feed.setEtag(etag);
|
||||
feed.setLastModified(lastModified);
|
||||
|
||||
return queryResult;
|
||||
}
|
||||
|
||||
@ -188,16 +181,10 @@ public class RSSQuery {
|
||||
}
|
||||
|
||||
public enum RSSType {
|
||||
RSS_2("rss"),
|
||||
RSS_ATOM("atom"),
|
||||
RSS_JSON("json"),
|
||||
RSS_UNKNOWN("");
|
||||
|
||||
private String value;
|
||||
|
||||
RSSType(String value) {
|
||||
this.value = value;
|
||||
}
|
||||
RSS_2,
|
||||
RSS_ATOM,
|
||||
RSS_JSON,
|
||||
RSS_UNKNOWN
|
||||
}
|
||||
|
||||
|
||||
|
@ -1,7 +1,5 @@
|
||||
package com.readrops.readropslibrary.localfeed.atom;
|
||||
|
||||
import com.readrops.readropslibrary.localfeed.AItem;
|
||||
|
||||
import org.simpleframework.xml.Attribute;
|
||||
import org.simpleframework.xml.Element;
|
||||
import org.simpleframework.xml.ElementList;
|
||||
@ -10,7 +8,7 @@ import org.simpleframework.xml.Root;
|
||||
import java.util.List;
|
||||
|
||||
@Root(name = "entry", strict = false)
|
||||
public class ATOMEntry extends AItem {
|
||||
public class ATOMEntry {
|
||||
|
||||
@Element(required = false)
|
||||
private String title;
|
||||
|
@ -1,9 +1,8 @@
|
||||
package com.readrops.readropslibrary.localfeed.json;
|
||||
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
import com.readrops.readropslibrary.localfeed.AItem;
|
||||
|
||||
public class JSONItem extends AItem {
|
||||
public class JSONItem {
|
||||
|
||||
private String id;
|
||||
|
||||
|
@ -1,7 +1,5 @@
|
||||
package com.readrops.readropslibrary.localfeed.rss;
|
||||
|
||||
import com.readrops.readropslibrary.localfeed.AItem;
|
||||
|
||||
import org.simpleframework.xml.Element;
|
||||
import org.simpleframework.xml.ElementList;
|
||||
import org.simpleframework.xml.Namespace;
|
||||
@ -10,7 +8,7 @@ import org.simpleframework.xml.Root;
|
||||
import java.util.List;
|
||||
|
||||
@Root(name = "item", strict = false)
|
||||
public class RSSItem extends AItem {
|
||||
public class RSSItem {
|
||||
|
||||
@Element
|
||||
private String title;
|
||||
|
Loading…
x
Reference in New Issue
Block a user