mirror of
https://github.com/TeamPiped/Piped-Backend.git
synced 2024-12-13 05:40:30 +05:30
Add uploader info search.
This commit is contained in:
parent
a2cd2baf2a
commit
0e07295265
@ -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()),
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user