Update Push.java

This commit is contained in:
FongMi 2022-08-23 23:54:01 +08:00
parent 7e58c043b0
commit 6a53e9a4be
1 changed files with 9 additions and 13 deletions

View File

@ -11,18 +11,12 @@ public class Push extends Spider {
@Override @Override
public String detailContent(List<String> ids) { public String detailContent(List<String> ids) {
try { String url = ids.get(0).trim();
String url = ids.get(0).trim(); if (Misc.isVip(url)) return Result.string(vod(url, "官源"));
Vod vod = new Vod(); else if (Misc.isVideoFormat(url)) return Result.string(vod(url, "直連"));
if (Misc.isVip(url)) setVod(vod, url, "官源"); else if (url.startsWith("magnet")) return Result.string(vod(url, "磁力"));
else if (Misc.isVideoFormat(url)) setVod(vod, url, "直連"); else if (url.startsWith("http")) return Result.string(vod(url, "網頁"));
else if (url.startsWith("magnet")) setVod(vod, url, "磁力"); else return "";
else if (url.startsWith("http")) setVod(vod, url, "網頁");
return Result.string(vod);
} catch (Exception e) {
e.printStackTrace();
return "";
}
} }
@Override @Override
@ -36,12 +30,14 @@ public class Push extends Spider {
} }
} }
private void setVod(Vod vod, String url, String type) { private Vod vod(String url, String type) {
Vod vod = new Vod();
vod.setTypeName(type); vod.setTypeName(type);
vod.setVodId(url); vod.setVodId(url);
vod.setVodName(url); vod.setVodName(url);
vod.setVodPlayFrom(type); vod.setVodPlayFrom(type);
vod.setVodPlayUrl("播放$" + url); vod.setVodPlayUrl("播放$" + url);
vod.setVodPic("https://pic.rmb.bdstatic.com/bjh/1d0b02d0f57f0a42201f92caba5107ed.jpeg"); vod.setVodPic("https://pic.rmb.bdstatic.com/bjh/1d0b02d0f57f0a42201f92caba5107ed.jpeg");
return vod;
} }
} }