Merge branch 'main' of https://github.com/FongMi/CatVodSpider
This commit is contained in:
commit
3877f2fa07
|
|
@ -15,9 +15,13 @@ public class Sorter implements Comparator<Item> {
|
||||||
@Override
|
@Override
|
||||||
public int compare(Item o1, Item o2) {
|
public int compare(Item o1, Item o2) {
|
||||||
try {
|
try {
|
||||||
return Integer.valueOf(Utils.removeExt(o1.getDisplayName())).compareTo(Integer.valueOf(Utils.removeExt(o2.getDisplayName())));
|
return Integer.compare(getDigit(o1.getDisplayName()), getDigit(o2.getDisplayName()));
|
||||||
} catch (NumberFormatException e) {
|
} catch (NumberFormatException e) {
|
||||||
return o1.getDisplayName().compareToIgnoreCase(o2.getDisplayName());
|
return o1.getDisplayName().compareToIgnoreCase(o2.getDisplayName());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private int getDigit(String text) throws NumberFormatException {
|
||||||
|
return Integer.parseInt(Utils.removeExt(text).replaceAll("\\D+", ""));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -69,7 +69,7 @@ public class Zhaozy extends Ali {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String searchContent(String key, boolean quick) throws Exception {
|
public String searchContent(String key, boolean quick) throws Exception {
|
||||||
String url = siteUrl + "so?filename=" + URLEncoder.encode(key);
|
String url = siteUrl + "sos?filename=" + URLEncoder.encode(key);
|
||||||
Document doc = Jsoup.parse(OkHttp.string(url, getHeader()));
|
Document doc = Jsoup.parse(OkHttp.string(url, getHeader()));
|
||||||
List<Vod> list = new ArrayList<>();
|
List<Vod> list = new ArrayList<>();
|
||||||
for (Element element : doc.select("div.li_con div.news_text")) {
|
for (Element element : doc.select("div.li_con div.news_text")) {
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,6 @@ import android.webkit.ValueCallback;
|
||||||
import android.webkit.WebView;
|
import android.webkit.WebView;
|
||||||
import android.webkit.WebViewClient;
|
import android.webkit.WebViewClient;
|
||||||
|
|
||||||
import com.github.catvod.crawler.SpiderDebug;
|
|
||||||
import com.github.catvod.spider.Init;
|
import com.github.catvod.spider.Init;
|
||||||
|
|
||||||
import java.math.BigInteger;
|
import java.math.BigInteger;
|
||||||
|
|
@ -56,19 +55,16 @@ public class Utils {
|
||||||
}
|
}
|
||||||
|
|
||||||
public static String fixUrl(String base, String src) {
|
public static String fixUrl(String base, String src) {
|
||||||
try {
|
|
||||||
if (src.startsWith("//")) {
|
if (src.startsWith("//")) {
|
||||||
Uri parse = Uri.parse(base);
|
Uri parse = Uri.parse(base);
|
||||||
src = parse.getScheme() + ":" + src;
|
return parse.getScheme() + ":" + src;
|
||||||
} else if (!src.contains("://")) {
|
} else if (!src.contains("://")) {
|
||||||
Uri parse = Uri.parse(base);
|
Uri parse = Uri.parse(base);
|
||||||
src = parse.getScheme() + "://" + parse.getHost() + src;
|
return parse.getScheme() + "://" + parse.getHost() + src;
|
||||||
}
|
} else {
|
||||||
} catch (Exception e) {
|
|
||||||
SpiderDebug.log(e);
|
|
||||||
}
|
|
||||||
return src;
|
return src;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public static String removeExt(String text) {
|
public static String removeExt(String text) {
|
||||||
return text.contains(".") ? text.substring(0, text.lastIndexOf(".")) : text;
|
return text.contains(".") ? text.substring(0, text.lastIndexOf(".")) : text;
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -1 +1 @@
|
||||||
06c33541084d5842fdbf6e67ce4258ed
|
1da9b9d6b4241ada175c741d4b4b9cf9
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"spider": "https://raw.githubusercontent.com/FongMi/CatVodSpider/main/jar/custom_spider.jar;md5;06c33541084d5842fdbf6e67ce4258ed",
|
"spider": "https://raw.githubusercontent.com/FongMi/CatVodSpider/main/jar/custom_spider.jar;md5;1da9b9d6b4241ada175c741d4b4b9cf9",
|
||||||
"wallpaper": "https://gao.chuqiuyu.tk",
|
"wallpaper": "https://gao.chuqiuyu.tk",
|
||||||
"sites": [
|
"sites": [
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -52,7 +52,7 @@
|
||||||
"searchable": 1,
|
"searchable": 1,
|
||||||
"filterable": 0,
|
"filterable": 0,
|
||||||
"changeable": 0,
|
"changeable": 0,
|
||||||
"ext": "影視天下第一$$$yingshi$$$abcd1234",
|
"ext": "影視天下第一$$$test2$$$test2",
|
||||||
"jar": "https://raw.githubusercontent.com/FongMi/CatVodSpider/main/jar/custom_spider.jar"
|
"jar": "https://raw.githubusercontent.com/FongMi/CatVodSpider/main/jar/custom_spider.jar"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"spider": "https://raw.githubusercontent.com/FongMi/CatVodSpider/main/jar/custom_spider.jar;md5;06c33541084d5842fdbf6e67ce4258ed",
|
"spider": "https://raw.githubusercontent.com/FongMi/CatVodSpider/main/jar/custom_spider.jar;md5;1da9b9d6b4241ada175c741d4b4b9cf9",
|
||||||
"wallpaper": "http://饭太硬.ga/深色壁纸/api.php",
|
"wallpaper": "http://饭太硬.ga/深色壁纸/api.php",
|
||||||
"sites": [
|
"sites": [
|
||||||
{
|
{
|
||||||
|
|
@ -131,7 +131,7 @@
|
||||||
"searchable": 1,
|
"searchable": 1,
|
||||||
"filterable": 0,
|
"filterable": 0,
|
||||||
"changeable": 0,
|
"changeable": 0,
|
||||||
"ext": "影視天下第一$$$yingshi$$$abcd1234"
|
"ext": "影視天下第一$$$test2$$$test2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"key": "push_agent",
|
"key": "push_agent",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue