Add uploader info search.

This commit is contained in:
FireMasterK 2021-05-06 21:56:03 +05:30
parent a2cd2baf2a
commit 0e07295265
No known key found for this signature in database
GPG key ID: 8DFF5DD33E93DB58
2 changed files with 17 additions and 6 deletions

View file

@ -315,8 +315,8 @@ public class ResponseHelper {
case STREAM:
StreamInfoItem stream = (StreamInfoItem) item;
items.add(new SearchStream(item.getName(), rewriteURL(item.getThumbnailUrl()),
item.getUrl().substring(23), stream.getTextualUploadDate(), stream.getViewCount(),
stream.getDuration()));
item.getUrl().substring(23), stream.getTextualUploadDate(), stream.getUploaderName(),
stream.getUploaderUrl().substring(23), stream.getViewCount(), stream.getDuration()));
break;
case CHANNEL:
items.add(new SearchItem(item.getName(), rewriteURL(item.getThumbnailUrl()),
@ -348,8 +348,8 @@ public class ResponseHelper {
case STREAM:
StreamInfoItem stream = (StreamInfoItem) item;
items.add(new SearchStream(item.getName(), rewriteURL(item.getThumbnailUrl()),
item.getUrl().substring(23), stream.getTextualUploadDate(), stream.getViewCount(),
stream.getDuration()));
item.getUrl().substring(23), stream.getTextualUploadDate(), stream.getUploaderName(),
stream.getUploaderUrl().substring(23), stream.getViewCount(), stream.getDuration()));
break;
case CHANNEL:
items.add(new SearchItem(item.getName(), rewriteURL(item.getThumbnailUrl()),

View file

@ -2,12 +2,15 @@ package me.kavin.piped.utils.obj.search;
public class SearchStream extends SearchItem {
private String uploadDate;
private String uploadDate, uploader, uploaderUrl;
private long views, duration;
public SearchStream(String name, String thumbnail, String url, String uploadDate, long views, long duration) {
public SearchStream(String name, String thumbnail, String url, String uploadDate, String uploader,
String uploaderUrl, long views, long duration) {
super(name, thumbnail, url);
this.uploadDate = uploadDate;
this.uploader = uploader;
this.uploaderUrl = uploaderUrl;
this.views = views;
this.duration = duration;
}
@ -16,6 +19,14 @@ public class SearchStream extends SearchItem {
return uploadDate;
}
public String getUploader() {
return uploader;
}
public String getUploaderUrl() {
return uploaderUrl;
}
public long getViews() {
return views;
}