|
|
|
|
@ -1,12 +1,13 @@ |
|
|
|
|
package com.github.catvod.spider; |
|
|
|
|
|
|
|
|
|
import android.content.Context; |
|
|
|
|
import android.text.TextUtils; |
|
|
|
|
|
|
|
|
|
import com.github.catvod.bean.Result; |
|
|
|
|
import com.github.catvod.bean.Vod; |
|
|
|
|
import com.github.catvod.crawler.Spider; |
|
|
|
|
import com.github.catvod.utils.Utils; |
|
|
|
|
|
|
|
|
|
import java.util.Arrays; |
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
|
|
public class Push extends Spider { |
|
|
|
|
@ -20,26 +21,27 @@ public class Push extends Spider { |
|
|
|
|
public String detailContent(List<String> ids) throws Exception { |
|
|
|
|
String url = ids.get(0).trim(); |
|
|
|
|
if (url.contains("aliyundrive")) return Ali.get().detailContent(ids); |
|
|
|
|
if (Utils.isVip(url)) return Result.string(vod(url, "官源")); |
|
|
|
|
if (Utils.isVideoFormat(url)) return Result.string(vod(url, "直連")); |
|
|
|
|
return Result.string(vod(url, "網頁")); |
|
|
|
|
List<String> playFrom = Arrays.asList("直連", "嗅探", "解析"); |
|
|
|
|
List<String> playUrl = Arrays.asList("播放$" + url, "播放$" + url, "播放$" + url); |
|
|
|
|
Vod vod = create(url); |
|
|
|
|
vod.setVodPlayFrom(TextUtils.join("$$$", playFrom)); |
|
|
|
|
vod.setVodPlayUrl(TextUtils.join("$$$", playUrl)); |
|
|
|
|
return Result.string(vod); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public String playerContent(String flag, String id, List<String> vipFlags) { |
|
|
|
|
if (flag.contains("畫")) return Ali.get().playerContent(flag, id); |
|
|
|
|
if (flag.equals("官源")) return Result.get().parse().jx().url(id).string(); |
|
|
|
|
if (flag.equals("網頁")) return Result.get().parse().url(id).string(); |
|
|
|
|
if (flag.equals("嗅探")) return Result.get().parse().url(id).string(); |
|
|
|
|
if (flag.equals("解析")) return Result.get().parse().jx().url(id).string(); |
|
|
|
|
return Result.get().url(id).string(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private Vod vod(String url, String type) { |
|
|
|
|
private Vod create(String url) { |
|
|
|
|
Vod vod = new Vod(); |
|
|
|
|
vod.setTypeName(type); |
|
|
|
|
vod.setTypeName("FongMi"); |
|
|
|
|
vod.setVodId(url); |
|
|
|
|
vod.setVodName(url); |
|
|
|
|
vod.setVodPlayFrom(type); |
|
|
|
|
vod.setVodPlayUrl("播放$" + url); |
|
|
|
|
vod.setVodPic("https://pic.rmb.bdstatic.com/bjh/1d0b02d0f57f0a42201f92caba5107ed.jpeg"); |
|
|
|
|
return vod; |
|
|
|
|
} |
|
|
|
|
|