-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmain.js
294 lines (244 loc) · 7.37 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
"ui";
var _proxy_port = 8080;
init_ui();
function init_ui() {
ui.layout(
<vertical>
<appbar>
<toolbar title="WiFi代理设置 v1.1"/>
</appbar>
<vertical padding="16">
<vertical>
<text>代理IP</text>
<input id="proxy_ip" text="192.168.1.100"/>
<text>代理端口</text>
<radiogroup id="proxy_port" orientation="horizontal">
<radio text="8080" id="r1" marginRight="16" checked="true"></radio>
<radio text="8888" id="r2" marginRight="16"></radio>
<radio text="8866" id="r3" marginRight="16"></radio>
</radiogroup>
</vertical>
<vertical marginTop="16">
<text>[Android 7] 设置 → WLAN → 已连接 → 修改网络 → ...</text>
<horizontal>
<button id="open_android_7" text="开启代理" marginRight="10" style="Widget.AppCompat.Button.Colored"/>
<button id="close_android_7" text="关闭代理"/>
</horizontal>
</vertical>
<vertical marginTop="16">
<text>[Android 9] 设置 → WLAN → WLAN → 已连接 → 修改 → ...</text>
<horizontal>
<button id="open_android_9" text="开启代理" marginRight="10" style="Widget.AppCompat.Button.Colored"/>
<button id="close_android_9" text="关闭代理"/>
</horizontal>
</vertical>
</vertical>
</vertical>
);
// Port checked
ui.r1.on("click", (checked)=>{
_proxy_port = 8080;
});
ui.r2.on("click", (checked)=>{
_proxy_port = 8888;
});
ui.r3.on("click", (checked)=>{
_proxy_port = 8866;
});
// Android 7
ui.open_android_7.click(function(){
var proxy_ip = ui.proxy_ip.getText();
// ...
threads.start(function(){
open_android_7_handler(proxy_ip, _proxy_port);
});
});
ui.close_android_7.click(function(){
threads.start(function(){
close_android_7_handler();
});
});
// Android 9
ui.open_android_9.click(function(){
var proxy_ip = ui.proxy_ip.getText();
// ...
threads.start(function(){
open_android_9_handler(proxy_ip, _proxy_port);
});
});
ui.close_android_9.click(function(){
threads.start(function(){
close_android_9_handler();
});
});
}
/**
* 开启代理(Android 7)
* @param proxy_ip
* @param proxy_port
*/
function open_android_7_handler(proxy_ip, proxy_port) {
// 检查无障碍
auto();
toast("自动开启代理 " + proxy_ip + ":" + proxy_port);
// 打开设置
var settingsPackageName = app.getPackageName("设置");
app.launchPackage(settingsPackageName)
waitForPackage(settingsPackageName)
// 滚动到顶部
scrollUp();
// 点击 WLAN
while(!click("WLAN", 0));
// 长按 第一个已连接的WIFI
while(!longClick("已连接", 0));
// 点击 修改网络
while(!click("修改网络", 0));
sleep(500);
back();
sleep(500);
// 判断是否已经设置代理
if (text("手动").exists()) {
// 点击 代理设置--手动
while(!click("手动", 0));
// 点击 代理设置--手动
while(!click("手动", 0));
} else {
// 点击 高级选项
while(!click("高级选项", 0));
// 点击 代理设置--无
while(!click("无", 0));
// 点击 代理设置--手动
while(!click("手动", 0));
}
// 设置ip、port
id("proxy_hostname").findOne().setText("" + proxy_ip);
id("proxy_port").findOne().setText("" + proxy_port);
// 点击 保存
while(!click("保存", 0));
// 返回
home();
toast("自动开启代理完毕");
}
/**
* 关闭代理(Android 7)
*/
function close_android_7_handler() {
// 检查无障碍
auto();
toast("自动关闭代理");
// 打开设置
var settingsPackageName = app.getPackageName("设置");
app.launchPackage(settingsPackageName)
waitForPackage(settingsPackageName)
// 滚动到顶部
scrollUp();
// 点击 WLAN
while(!click("WLAN", 0));
// 长按 第一个已连接的WIFI
while(!longClick("已连接", 0));
// 点击 修改网络
while(!click("修改网络", 0));
sleep(500);
back();
sleep(500);
// 判断是否已经设置代理
if (text("手动").exists()) {
// 点击 代理设置--手动
while(!click("手动", 0));
// 点击 代理设置--无
while(!click("无", 0));
}
// 点击 保存
while(!click("保存", 0));
// 返回
home();
toast("自动关闭代理完毕");
}
/**
* 开启代理(Android 9)
* @param proxy_ip
* @param proxy_port
*/
function open_android_9_handler(proxy_ip, proxy_port) {
// 检查无障碍
auto();
toast("自动开启代理 " + proxy_ip + ":" + proxy_port);
// 打开设置
var settingsPackageName = app.getPackageName("设置");
app.launchPackage(settingsPackageName)
waitForPackage(settingsPackageName)
// 滚动到顶部
scrollUp();
// 点击 WLAN
while(!click("WLAN", 0));
sleep(500);
// 点击 WLAN
while(!click("WLAN", 0));
// 点击 已连接
while(!click("已连接", 0));
// 点击 修改
className("android.widget.TextView").desc("修改").findOne().click();
sleep(500);
back();
sleep(500);
// 判断是否已经设置代理
if (text("手动").exists()) {
// 点击 代理设置--手动
while(!click("手动", 0));
// 点击 代理设置--手动
while(!click("手动", 0));
} else {
// 点击 高级选项
while(!click("高级选项", 0));
// 点击 代理设置--无
while(!click("无", 0));
// 点击 代理设置--手动
while(!click("手动", 0));
}
// 设置ip、port
id("proxy_hostname").findOne().setText("" + proxy_ip);
id("proxy_port").findOne().setText("" + proxy_port);
// 点击 保存
while(!click("保存", 0));
// 返回
home();
toast("自动开启代理完毕");
}
/**
* 关闭代理(Android 9)
*/
function close_android_9_handler() {
// 检查无障碍
auto();
toast("自动关闭代理");
// 打开设置
var settingsPackageName = app.getPackageName("设置");
app.launchPackage(settingsPackageName)
waitForPackage(settingsPackageName)
// 滚动到顶部
scrollUp();
// 点击 WLAN
while(!click("WLAN", 0));
sleep(500);
// 点击 WLAN
while(!click("WLAN", 0));
// 点击 已连接
while(!click("已连接", 0));
// 点击 修改
className("android.widget.TextView").desc("修改").findOne().click();
sleep(500);
back();
sleep(500);
// 判断是否已经设置代理
if (text("手动").exists()) {
// 点击 代理设置--手动
while(!click("手动", 0));
// 点击 代理设置--无
while(!click("无", 0));
}
// 点击 保存
while(!click("保存", 0));
// 返回
home();
toast("自动关闭代理完毕");
}