Add files via upload

This commit is contained in:
dlgt7
2022-10-07 23:41:29 +08:00
committed by GitHub
parent 5fafcdab0a
commit 7c326a51a8
56 changed files with 21513 additions and 777 deletions
@@ -6,6 +6,8 @@ import com.github.catvod.crawler.Spider;
import com.github.catvod.crawler.SpiderDebug;
import com.github.catvod.live.TxtSubscribe;
import com.github.catvod.utils.okhttp.OkHttpUtil;
import com.github.catvod.parser.MixDemo;
import com.github.catvod.parser.MixWeb;
import java.io.ByteArrayInputStream;
import java.util.Map;
@@ -55,8 +57,19 @@ public class Proxy extends Spider {
return result;
} else if (what.equals("push")) {
return PushAgent.vod(params);
} else if (what.equals("kmys")) {
return Kmys.vod(params);
} else if (what.equals("ali")) {
return PushAgent.vod(params);
} else if (what.equals("czspp")) {
return Czsapp.loadsub(params.get("url"));
} else if (what.equals("XYQBiu")) {
return XYQBiu.loadPic(params);
} else if (what.equals("MixDemo")) {
return MixDemo.loadHtml(params.get("flag"), params.get("url"));
}
else if (what.equals("MixWeb")) {
return MixWeb.loadHtml(params.get("flag"), params.get("url"));
}
} catch (Throwable th) {
@@ -65,4 +78,4 @@ public class Proxy extends Spider {
return null;
}
}
}