103 lines
3.4 KiB
Java
103 lines
3.4 KiB
Java
package com.github.catvod.debug;
|
|
|
|
import android.app.Activity;
|
|
import android.os.Bundle;
|
|
import android.widget.Button;
|
|
|
|
import com.github.catvod.R;
|
|
import com.github.catvod.crawler.Spider;
|
|
import com.github.catvod.spider.Doll;
|
|
import com.github.catvod.spider.Init;
|
|
import com.orhanobut.logger.AndroidLogAdapter;
|
|
import com.orhanobut.logger.Logger;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.Arrays;
|
|
import java.util.HashMap;
|
|
import java.util.concurrent.ExecutorService;
|
|
import java.util.concurrent.Executors;
|
|
|
|
public class MainActivity extends Activity {
|
|
|
|
private ExecutorService executor;
|
|
private Spider spider;
|
|
|
|
@Override
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
super.onCreate(savedInstanceState);
|
|
setContentView(R.layout.activity_main);
|
|
Button homeContent = findViewById(R.id.homeContent);
|
|
Button homeVideoContent = findViewById(R.id.homeVideoContent);
|
|
Button categoryContent = findViewById(R.id.categoryContent);
|
|
Button detailContent = findViewById(R.id.detailContent);
|
|
Button playerContent = findViewById(R.id.playerContent);
|
|
Button searchContent = findViewById(R.id.searchContent);
|
|
homeContent.setOnClickListener(view -> executor.execute(this::homeContent));
|
|
homeVideoContent.setOnClickListener(view -> executor.execute(this::homeVideoContent));
|
|
categoryContent.setOnClickListener(view -> executor.execute(this::categoryContent));
|
|
detailContent.setOnClickListener(view -> executor.execute(this::detailContent));
|
|
playerContent.setOnClickListener(view -> executor.execute(this::playerContent));
|
|
searchContent.setOnClickListener(view -> executor.execute(this::searchContent));
|
|
Logger.addLogAdapter(new AndroidLogAdapter());
|
|
executor = Executors.newCachedThreadPool();
|
|
executor.execute(this::initSpider);
|
|
}
|
|
|
|
private void initSpider() {
|
|
try {
|
|
Init.init(getApplicationContext());
|
|
spider = new Doll();
|
|
spider.init(this, "");
|
|
} catch (Throwable e) {
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
|
|
public void homeContent() {
|
|
try {
|
|
Logger.t("homeContent").d(spider.homeContent(true));
|
|
} catch (Throwable e) {
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
|
|
public void homeVideoContent() {
|
|
try {
|
|
Logger.t("homeVideoContent").d(spider.homeVideoContent());
|
|
} catch (Throwable e) {
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
|
|
public void categoryContent() {
|
|
try {
|
|
Logger.t("categoryContent").d(spider.categoryContent("movie", "1", true, new HashMap<>()));
|
|
} catch (Throwable e) {
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
|
|
public void detailContent() {
|
|
try {
|
|
Logger.t("detailContent").d(spider.detailContent(Arrays.asList("2121173431")));
|
|
} catch (Throwable e) {
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
|
|
public void playerContent() {
|
|
try {
|
|
Logger.t("playerContent").d(spider.playerContent("轉存原畫", "kahf2rw5Uuk+652f55f6943ee2f75d8e4fa590b4ec65fd007f8c", new ArrayList<>()));
|
|
} catch (Throwable e) {
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
|
|
public void searchContent() {
|
|
try {
|
|
Logger.t("searchContent").d(spider.searchContent("我的人间烟火", false));
|
|
} catch (Throwable e) {
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
} |