Browse Source
- renamed UTorrentRssFeed to UTorrentRemoteRssChannel and removed a bunch of unnecessary data - renamed RemoteRssFile to UTorrentRemoteRssItempull/313/head
twig
9 years ago
11 changed files with 197 additions and 142 deletions
@ -0,0 +1,45 @@
@@ -0,0 +1,45 @@
|
||||
package org.transdroid.core.gui.remoterss.data; |
||||
|
||||
import android.os.Parcelable; |
||||
|
||||
import org.transdroid.core.gui.lists.SimpleListItem; |
||||
|
||||
import java.util.Date; |
||||
import java.util.List; |
||||
|
||||
/** |
||||
* Created by twig on 1/06/2016. |
||||
*/ |
||||
public abstract class RemoteRssChannel implements Parcelable, SimpleListItem { |
||||
protected int id; |
||||
protected String name; |
||||
protected String link; |
||||
protected long lastUpdated; |
||||
protected List<RemoteRssItem> files; |
||||
|
||||
@Override |
||||
public int describeContents() { |
||||
return 0; |
||||
} |
||||
|
||||
public int getId() { |
||||
return id; |
||||
} |
||||
|
||||
public String getLink() { |
||||
return link; |
||||
} |
||||
|
||||
public Date getLastUpdated() { |
||||
return new Date(lastUpdated); |
||||
} |
||||
|
||||
public List<RemoteRssItem> getFiles() { |
||||
return files; |
||||
} |
||||
|
||||
@Override |
||||
public String getName() { |
||||
return name; |
||||
} |
||||
} |
@ -0,0 +1,47 @@
@@ -0,0 +1,47 @@
|
||||
package org.transdroid.core.gui.remoterss.data; |
||||
|
||||
import android.os.Parcelable; |
||||
|
||||
import org.transdroid.core.gui.lists.SimpleListItem; |
||||
|
||||
import java.util.Date; |
||||
|
||||
/** |
||||
* Created by twig on 1/06/2016. |
||||
*/ |
||||
public abstract class RemoteRssItem implements Parcelable, SimpleListItem { |
||||
protected String title; |
||||
protected String link; |
||||
protected String sourceName; // Name of RSS feed channel
|
||||
protected long timestamp; |
||||
|
||||
@Override |
||||
public String getName() { |
||||
return title; |
||||
} |
||||
|
||||
public String getTitle() { |
||||
return title; |
||||
} |
||||
|
||||
public String getLink() { |
||||
return link; |
||||
} |
||||
|
||||
public String getSourceName() { |
||||
return sourceName; |
||||
} |
||||
|
||||
public void setSourceName(String sourceName) { |
||||
this.sourceName = sourceName; |
||||
} |
||||
|
||||
public Date getTimestamp() { |
||||
return new Date(timestamp); |
||||
} |
||||
|
||||
@Override |
||||
public int describeContents() { |
||||
return 0; |
||||
} |
||||
} |
@ -1,69 +0,0 @@
@@ -1,69 +0,0 @@
|
||||
package org.transdroid.daemon.Utorrent.data; |
||||
|
||||
import android.os.Parcel; |
||||
import android.os.Parcelable; |
||||
|
||||
import org.json.JSONArray; |
||||
import org.json.JSONException; |
||||
import org.transdroid.core.gui.lists.SimpleListItem; |
||||
|
||||
public class RemoteRssFile implements Parcelable, SimpleListItem { |
||||
public String name; |
||||
public String title; |
||||
public String link; |
||||
public String feedLabel; |
||||
public long timestamp; |
||||
public int season; |
||||
public int episode; |
||||
|
||||
public RemoteRssFile(JSONArray json) throws JSONException { |
||||
name = json.getString(0); |
||||
title = json.getString(1); |
||||
link = json.getString(2); |
||||
timestamp = json.getLong(5); |
||||
season = json.getInt(6); |
||||
episode = json.getInt(7); |
||||
} |
||||
|
||||
|
||||
public static final Parcelable.Creator<RemoteRssFile> CREATOR = new Parcelable.Creator<RemoteRssFile>() { |
||||
public RemoteRssFile createFromParcel(Parcel in) { |
||||
return new RemoteRssFile(in); |
||||
} |
||||
|
||||
public RemoteRssFile[] newArray(int size) { |
||||
return new RemoteRssFile[size]; |
||||
} |
||||
}; |
||||
|
||||
public RemoteRssFile(Parcel in) { |
||||
name = in.readString(); |
||||
title = in.readString(); |
||||
link = in.readString(); |
||||
feedLabel = in.readString(); |
||||
timestamp = in.readLong(); |
||||
season = in.readInt(); |
||||
episode = in.readInt(); |
||||
} |
||||
|
||||
@Override |
||||
public int describeContents() { |
||||
return 0; |
||||
} |
||||
|
||||
@Override |
||||
public void writeToParcel(Parcel dest, int flags) { |
||||
dest.writeString(name); |
||||
dest.writeString(title); |
||||
dest.writeString(link); |
||||
dest.writeString(feedLabel); |
||||
dest.writeLong(timestamp); |
||||
dest.writeInt(season); |
||||
dest.writeInt(episode); |
||||
} |
||||
|
||||
@Override |
||||
public String getName() { |
||||
return title; |
||||
} |
||||
} |
@ -0,0 +1,55 @@
@@ -0,0 +1,55 @@
|
||||
package org.transdroid.daemon.Utorrent.data; |
||||
|
||||
import android.os.Parcel; |
||||
import android.os.Parcelable; |
||||
|
||||
import org.json.JSONArray; |
||||
import org.json.JSONException; |
||||
import org.transdroid.core.gui.remoterss.data.RemoteRssItem; |
||||
|
||||
public class UTorrentRemoteRssItem extends RemoteRssItem { |
||||
public String name; |
||||
// public int season;
|
||||
// public int episode;
|
||||
|
||||
public UTorrentRemoteRssItem(JSONArray json) throws JSONException { |
||||
name = json.getString(0); |
||||
title = json.getString(1); |
||||
link = json.getString(2); |
||||
timestamp = json.getLong(5); |
||||
// season = json.getInt(6);
|
||||
// episode = json.getInt(7);
|
||||
} |
||||
|
||||
|
||||
public static final Parcelable.Creator<UTorrentRemoteRssItem> CREATOR = new Parcelable.Creator<UTorrentRemoteRssItem>() { |
||||
public UTorrentRemoteRssItem createFromParcel(Parcel in) { |
||||
return new UTorrentRemoteRssItem(in); |
||||
} |
||||
|
||||
public UTorrentRemoteRssItem[] newArray(int size) { |
||||
return new UTorrentRemoteRssItem[size]; |
||||
} |
||||
}; |
||||
|
||||
public UTorrentRemoteRssItem(Parcel in) { |
||||
name = in.readString(); |
||||
title = in.readString(); |
||||
link = in.readString(); |
||||
sourceName = in.readString(); |
||||
timestamp = in.readLong(); |
||||
// season = in.readInt();
|
||||
// episode = in.readInt();
|
||||
} |
||||
|
||||
@Override |
||||
public void writeToParcel(Parcel dest, int flags) { |
||||
dest.writeString(name); |
||||
dest.writeString(title); |
||||
dest.writeString(link); |
||||
dest.writeString(sourceName); |
||||
dest.writeLong(timestamp); |
||||
// dest.writeInt(season);
|
||||
// dest.writeInt(episode);
|
||||
} |
||||
} |
Loading…
Reference in new issue