package com.github.catvod.spider; import android.util.Base64; import com.github.catvod.bean.Class; import com.github.catvod.bean.Result; import com.github.catvod.bean.Vod; import com.github.catvod.crawler.Spider; import com.github.catvod.net.OkHttp; import com.github.catvod.utils.Utils; import org.jsoup.Jsoup; import org.jsoup.nodes.Document; import org.jsoup.nodes.Element; import java.net.URLDecoder; import java.util.ArrayList; import java.util.HashMap; import java.util.List; public class Doll extends Spider { private final String url = "https://hongkongdollvideo.com/"; @Override public String homeContent(boolean filter) throws Exception { List classes = new ArrayList<>(); List list = new ArrayList<>(); Document doc = Jsoup.parse(OkHttp.string(url)); for (Element a : doc.select("ul#side-menu").get(0).select("li > a")) { String typeName = a.text(); String typeId = a.attr("href").replace(url, ""); classes.add(new Class(typeId, typeName)); } for (Element div : doc.select("div.video-detail")) { String id = div.select("h3.video-title > a").attr("href").replace(url, ""); String name = div.select("h3.video-title > a").text(); String pic = url + div.select("div.thumb > a > img").attr("data-src"); String remark = div.select("div.date").text(); list.add(new Vod(id, name, pic, remark)); } return Result.string(classes, list); } @Override public String categoryContent(String tid, String pg, boolean filter, HashMap extend) throws Exception { List list = new ArrayList<>(); String target = pg.equals("1") ? url + tid : url + tid + "/" + pg + ".html"; Document doc = Jsoup.parse(OkHttp.string(target)); for (Element div : doc.select("div.video-detail")) { String id = div.select("h3.video-title > a").attr("href").replace(url, ""); String name = div.select("h3.video-title > a").text(); String pic = url + div.select("div.thumb > a > img").attr("data-src"); String remark = div.select("div.date").text(); list.add(new Vod(id, name, pic, remark)); } return Result.string(list); } @Override public String detailContent(List ids) throws Exception { String html = OkHttp.string(url + ids.get(0)); Document doc = Jsoup.parse(html); StringBuilder sb = new StringBuilder(); String videoId = ids.get(0).split("/")[1].split("\\.")[0]; String pic = doc.select("meta[property=og:image]").attr("content"); String name = doc.select("meta[property=og:title]").attr("content"); String voteTag = new String(Base64.decode(Utils.getVar(html, "voteTag").getBytes(), 0)); for (int i = 0; i < voteTag.length(); i++) sb.append(Character.toChars(voteTag.charAt(i) ^ videoId.charAt(i % videoId.length()))); String playUrl = URLDecoder.decode(new String(Base64.decode(sb.toString().getBytes(), 0))); Vod vod = new Vod(); vod.setVodId(ids.get(0)); vod.setVodPic(pic); vod.setVodName(name); vod.setVodPlayFrom("玩偶姐姐"); vod.setVodPlayUrl("播放$" + playUrl); return Result.string(vod); } @Override public String playerContent(String flag, String id, List vipFlags) throws Exception { return Result.get().url(id).string(); } }