mirror of
https://github.com/TeamPiped/Piped-Backend.git
synced 2024-08-14 23:51:41 +00:00
Update field names for better reusablity.
This commit is contained in:
parent
e03f2661b4
commit
3d030b6968
2 changed files with 10 additions and 9 deletions
|
@ -699,10 +699,11 @@ public class ResponseHelper {
|
|||
List<Video> videos = DatabaseHelper.getVideosFromChannelIds(s, user.getSubscribed());
|
||||
|
||||
videos.forEach(video -> {
|
||||
feedItems.add(new FeedItem(video.getId(), video.getTitle(), rewriteURL(video.getThumbnail()),
|
||||
video.getChannel().getUploaderId(), video.getChannel().getUploader(),
|
||||
rewriteURL(video.getChannel().getUploaderAvatar()), video.getViews(), video.getDuration(),
|
||||
video.getUploaded(), video.getChannel().isVerified()));
|
||||
feedItems.add(new FeedItem("/watch?v=" + video.getId(), video.getTitle(),
|
||||
rewriteURL(video.getThumbnail()), "/channel/" + video.getChannel().getUploaderId(),
|
||||
video.getChannel().getUploader(), rewriteURL(video.getChannel().getUploaderAvatar()),
|
||||
video.getViews(), video.getDuration(), video.getUploaded(),
|
||||
video.getChannel().isVerified()));
|
||||
});
|
||||
|
||||
Collections.sort(feedItems, (a, b) -> (int) (b.uploaded - a.uploaded));
|
||||
|
|
|
@ -2,19 +2,19 @@ package me.kavin.piped.utils.obj;
|
|||
|
||||
public class FeedItem {
|
||||
|
||||
public String id, title, thumbnail, uploader_id, uploader, uploaderAvatar;
|
||||
public String url, title, thumbnail, uploaderUrl, uploaderName, uploaderAvatar;
|
||||
|
||||
public long views, duration, uploaded;
|
||||
|
||||
public boolean verified;
|
||||
|
||||
public FeedItem(String id, String title, String thumbnail, String uploader_id, String uploader,
|
||||
public FeedItem(String url, String title, String thumbnail, String uploaderUrl, String uploaderName,
|
||||
String uploaderAvatar, long views, long duration, long uploaded, boolean verified) {
|
||||
this.id = id;
|
||||
this.url = url;
|
||||
this.title = title;
|
||||
this.thumbnail = thumbnail;
|
||||
this.uploader_id = uploader_id;
|
||||
this.uploader = uploader;
|
||||
this.uploaderUrl = uploaderUrl;
|
||||
this.uploaderName = uploaderName;
|
||||
this.uploaderAvatar = uploaderAvatar;
|
||||
this.views = views;
|
||||
this.duration = duration;
|
||||
|
|
Loading…
Reference in a new issue