49 lines
1.0 KiB
Java
49 lines
1.0 KiB
Java
package com.github.catvod.crawler;
|
|
|
|
import android.content.Context;
|
|
|
|
import java.util.HashMap;
|
|
import java.util.List;
|
|
|
|
public abstract class Spider {
|
|
|
|
public void init(Context context) {
|
|
}
|
|
|
|
public void init(Context context, String extend) {
|
|
init(context);
|
|
}
|
|
|
|
public String homeContent(boolean filter) throws Exception {
|
|
return "";
|
|
}
|
|
|
|
public String homeVideoContent() throws Exception {
|
|
return "";
|
|
}
|
|
|
|
public String categoryContent(String tid, String pg, boolean filter, HashMap<String, String> extend) throws Exception {
|
|
return "";
|
|
}
|
|
|
|
public String detailContent(List<String> ids) throws Exception {
|
|
return "";
|
|
}
|
|
|
|
public String searchContent(String key, boolean quick) throws Exception {
|
|
return "";
|
|
}
|
|
|
|
public String playerContent(String flag, String id, List<String> vipFlags) throws Exception {
|
|
return "";
|
|
}
|
|
|
|
public boolean manualVideoCheck() {
|
|
return false;
|
|
}
|
|
|
|
public boolean isVideoFormat(String url) {
|
|
return false;
|
|
}
|
|
}
|