feat: ASW-85 新增 API 前置拦截器,请求接口前执行前置操作
1. adb connect 2. adb root 3. start droid_ng 4. 判断 默认链中是否含有 ASW_OUTPUT 如果没有则添加
This commit is contained in:
@@ -47,9 +47,19 @@ public class AdbUtil {
|
||||
this.port = adb.getPort();
|
||||
this.vncPort = adb.getVncPort();
|
||||
// adb connect
|
||||
this.connect();
|
||||
if (!this.connect()) {
|
||||
log.error("[connect error, program exit]");
|
||||
Runtime.getRuntime().halt(1);
|
||||
}
|
||||
// init
|
||||
this.init();
|
||||
this.init(true);
|
||||
}
|
||||
|
||||
public static AdbUtil getInstance() {
|
||||
if (instance == null) {
|
||||
throw new IllegalArgumentException("Object has not been instantiated.");
|
||||
}
|
||||
return instance;
|
||||
}
|
||||
|
||||
public static AdbUtil getInstance(EnvApiYml.Adb connInfo) {
|
||||
@@ -66,14 +76,13 @@ public class AdbUtil {
|
||||
/**
|
||||
* connect
|
||||
*/
|
||||
private void connect() {
|
||||
public boolean connect() {
|
||||
if (T.StrUtil.isNotEmpty(this.serial)) {
|
||||
// local
|
||||
AdbDevice adbDevice = this.getAdbDevice();
|
||||
log.info("[connect] [result: {}]", T.JSONUtil.toJsonStr(adbDevice));
|
||||
if (null == adbDevice || !adbDevice.isAvailable()) {
|
||||
log.error("[device is not available, program exit]");
|
||||
Runtime.getRuntime().halt(1);
|
||||
return false;
|
||||
}
|
||||
} else {
|
||||
// remote
|
||||
@@ -82,10 +91,10 @@ public class AdbUtil {
|
||||
.build());
|
||||
log.info("[connect] [result: {}]", result);
|
||||
if (!T.StrUtil.contains(result, "connected")) {
|
||||
log.error("[connect error, program exit]");
|
||||
Runtime.getRuntime().halt(1);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -93,7 +102,7 @@ public class AdbUtil {
|
||||
* su root
|
||||
* install droidVNC NG
|
||||
*/
|
||||
private void init() {
|
||||
public void init(boolean install) {
|
||||
// adb root
|
||||
String result = CommandExec.exec(AdbCommandBuilder.builder()
|
||||
.serial(this.getSerial())
|
||||
@@ -102,23 +111,27 @@ public class AdbUtil {
|
||||
);
|
||||
log.info("[init] [adb root] [result: {}]", result);
|
||||
|
||||
// install droidVNC NG
|
||||
CommandResult installed = this.install(DEFAULT_DROIDVNC_NG_APK_PATH, true, true);
|
||||
log.info("[init] [install droidVNC NG] [result: {}]", installed);
|
||||
if (install) {
|
||||
// install droidVNC NG
|
||||
CommandResult installed = this.install(DEFAULT_DROIDVNC_NG_APK_PATH, true, true);
|
||||
log.info("[init] [install droidVNC NG] [result: {}]", installed);
|
||||
|
||||
// 上传默认配置
|
||||
this.execShellCommand("shell mkdir -p /storage/emulated/0/Android/data/net.christianbeier.droidvnc_ng/files");
|
||||
this.push(DEFAULT_DROIDVNC_NG_DEFAULTS_JSON_PATH, "/storage/emulated/0/Android/data/net.christianbeier.droidvnc_ng/files/defaults.json");
|
||||
// 上传默认配置
|
||||
this.execShellCommand("shell mkdir -p /storage/emulated/0/Android/data/net.christianbeier.droidvnc_ng/files");
|
||||
this.push(DEFAULT_DROIDVNC_NG_DEFAULTS_JSON_PATH, "/storage/emulated/0/Android/data/net.christianbeier.droidvnc_ng/files/defaults.json");
|
||||
|
||||
// 无障碍权限
|
||||
this.execShellCommand("shell settings put secure enabled_accessibility_services net.christianbeier.droidvnc_ng/.InputService:$(settings get secure enabled_accessibility_services)");
|
||||
// 存储空间权限
|
||||
this.execShellCommand("shell pm grant net.christianbeier.droidvnc_ng android.permission.WRITE_EXTERNAL_STORAGE");
|
||||
// 屏幕录制权限
|
||||
this.execShellCommand("shell appops set net.christianbeier.droidvnc_ng PROJECT_MEDIA allow");
|
||||
// 无障碍权限
|
||||
this.execShellCommand("shell settings put secure enabled_accessibility_services net.christianbeier.droidvnc_ng/.InputService:$(settings get secure enabled_accessibility_services)");
|
||||
// 存储空间权限
|
||||
this.execShellCommand("shell pm grant net.christianbeier.droidvnc_ng android.permission.WRITE_EXTERNAL_STORAGE");
|
||||
// 屏幕录制权限
|
||||
this.execShellCommand("shell appops set net.christianbeier.droidvnc_ng PROJECT_MEDIA allow");
|
||||
|
||||
// 后台启动
|
||||
this.execShellCommand("shell am start-foreground-service -n net.christianbeier.droidvnc_ng/.MainService -a net.christianbeier.droidvnc_ng.ACTION_STOP --es net.christianbeier.droidvnc_ng.EXTRA_ACCESS_KEY d042e2b5d5f348588a4e1a243eb7a9a0");
|
||||
// ACTION_STOP
|
||||
this.execShellCommand("shell am start-foreground-service -n net.christianbeier.droidvnc_ng/.MainService -a net.christianbeier.droidvnc_ng.ACTION_STOP --es net.christianbeier.droidvnc_ng.EXTRA_ACCESS_KEY d042e2b5d5f348588a4e1a243eb7a9a0");
|
||||
}
|
||||
|
||||
// ACTION_START
|
||||
this.execShellCommand("shell am start-foreground-service -n net.christianbeier.droidvnc_ng/.MainService -a net.christianbeier.droidvnc_ng.ACTION_START --es net.christianbeier.droidvnc_ng.EXTRA_ACCESS_KEY d042e2b5d5f348588a4e1a243eb7a9a0");
|
||||
|
||||
// 添加自定义链
|
||||
|
||||
Reference in New Issue
Block a user