mirror of
https://github.com/qaiu/netdisk-fast-download.git
synced 2026-01-11 00:44:13 +00:00
更新Playground和JsHttpClient相关功能,整理文档结构
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -29,6 +29,8 @@ target/
|
||||
/src/logs/
|
||||
*.zip
|
||||
sdkTest.log
|
||||
app.yml
|
||||
app-local.yml
|
||||
|
||||
|
||||
#some local files
|
||||
|
||||
@@ -244,19 +244,17 @@ public class JsHttpClient {
|
||||
|
||||
if (data != null) {
|
||||
if (data instanceof String) {
|
||||
request.sendBuffer(Buffer.buffer((String) data));
|
||||
return request.sendBuffer(Buffer.buffer((String) data));
|
||||
} else if (data instanceof Map) {
|
||||
@SuppressWarnings("unchecked")
|
||||
Map<String, String> mapData = (Map<String, String>) data;
|
||||
request.sendForm(MultiMap.caseInsensitiveMultiMap().addAll(mapData));
|
||||
return request.sendForm(MultiMap.caseInsensitiveMultiMap().addAll(mapData));
|
||||
} else {
|
||||
request.sendJson(data);
|
||||
return request.sendJson(data);
|
||||
}
|
||||
} else {
|
||||
request.send();
|
||||
return request.send();
|
||||
}
|
||||
|
||||
return request.send();
|
||||
});
|
||||
}
|
||||
|
||||
@@ -276,19 +274,17 @@ public class JsHttpClient {
|
||||
|
||||
if (data != null) {
|
||||
if (data instanceof String) {
|
||||
request.sendBuffer(Buffer.buffer((String) data));
|
||||
return request.sendBuffer(Buffer.buffer((String) data));
|
||||
} else if (data instanceof Map) {
|
||||
@SuppressWarnings("unchecked")
|
||||
Map<String, String> mapData = (Map<String, String>) data;
|
||||
request.sendForm(MultiMap.caseInsensitiveMultiMap().addAll(mapData));
|
||||
return request.sendForm(MultiMap.caseInsensitiveMultiMap().addAll(mapData));
|
||||
} else {
|
||||
request.sendJson(data);
|
||||
return request.sendJson(data);
|
||||
}
|
||||
} else {
|
||||
request.send();
|
||||
return request.send();
|
||||
}
|
||||
|
||||
return request.send();
|
||||
});
|
||||
}
|
||||
|
||||
@@ -322,19 +318,17 @@ public class JsHttpClient {
|
||||
|
||||
if (data != null) {
|
||||
if (data instanceof String) {
|
||||
request.sendBuffer(Buffer.buffer((String) data));
|
||||
return request.sendBuffer(Buffer.buffer((String) data));
|
||||
} else if (data instanceof Map) {
|
||||
@SuppressWarnings("unchecked")
|
||||
Map<String, String> mapData = (Map<String, String>) data;
|
||||
request.sendForm(MultiMap.caseInsensitiveMultiMap().addAll(mapData));
|
||||
return request.sendForm(MultiMap.caseInsensitiveMultiMap().addAll(mapData));
|
||||
} else {
|
||||
request.sendJson(data);
|
||||
return request.sendJson(data);
|
||||
}
|
||||
} else {
|
||||
request.send();
|
||||
return request.send();
|
||||
}
|
||||
|
||||
return request.send();
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -111,7 +111,7 @@ public class JsPlaygroundExecutor {
|
||||
playgroundLogger.infoJava("✅ Fetch API和Promise polyfill注入成功");
|
||||
}
|
||||
|
||||
playgroundLogger.infoJava("🔒 安全的JavaScript引擎初始化成功(演练场)");
|
||||
playgroundLogger.infoJava("初始化成功");
|
||||
|
||||
// 执行JavaScript代码
|
||||
engine.eval(jsCode);
|
||||
|
||||
@@ -549,6 +549,176 @@ public class JsHttpClientTest {
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testPostWithJsonString() {
|
||||
System.out.println("\n[测试16] POST请求(JSON字符串) - httpbin.org/post");
|
||||
System.out.println("测试修复:POST请求发送JSON字符串时请求体是否正确发送");
|
||||
|
||||
try {
|
||||
String url = "https://httpbin.org/post";
|
||||
System.out.println("请求URL: " + url);
|
||||
|
||||
// 模拟阿里云盘登录请求格式
|
||||
String jsonData = "{\"grant_type\":\"refresh_token\",\"refresh_token\":\"test_token_123\"}";
|
||||
System.out.println("POST数据(JSON字符串): " + jsonData);
|
||||
|
||||
// 设置Content-Type为application/json
|
||||
httpClient.putHeader("Content-Type", "application/json");
|
||||
System.out.println("设置Content-Type: application/json");
|
||||
System.out.println("开始请求...");
|
||||
|
||||
long startTime = System.currentTimeMillis();
|
||||
JsHttpClient.JsHttpResponse response = httpClient.post(url, jsonData);
|
||||
long endTime = System.currentTimeMillis();
|
||||
|
||||
System.out.println("请求完成,耗时: " + (endTime - startTime) + "ms");
|
||||
System.out.println("状态码: " + response.statusCode());
|
||||
|
||||
String body = response.body();
|
||||
System.out.println("响应体(前500字符): " + (body != null && body.length() > 500 ? body.substring(0, 500) + "..." : body));
|
||||
|
||||
// 验证结果
|
||||
assertNotNull("响应不能为null", response);
|
||||
assertEquals("状态码应该是200", 200, response.statusCode());
|
||||
assertNotNull("响应体不能为null", body);
|
||||
// 验证请求体是否正确发送(httpbin会回显请求数据)
|
||||
assertTrue("响应体应该包含发送的JSON数据",
|
||||
body.contains("grant_type") || body.contains("refresh_token"));
|
||||
|
||||
System.out.println("✓ 测试通过 - POST请求体已正确发送");
|
||||
|
||||
} catch (Exception e) {
|
||||
System.err.println("✗ 测试失败: " + e.getMessage());
|
||||
e.printStackTrace();
|
||||
fail("POST JSON字符串请求测试失败: " + e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testAlipanTokenApi() {
|
||||
System.out.println("\n[测试20] 阿里云盘Token接口测试 - auth.aliyundrive.com/v2/account/token");
|
||||
System.out.println("参考 alipan.js 中的登录逻辑,测试请求格式是否正确");
|
||||
|
||||
try {
|
||||
String tokenUrl = "https://auth.aliyundrive.com/v2/account/token";
|
||||
System.out.println("请求URL: " + tokenUrl);
|
||||
|
||||
// 参考 alipan.js 中的请求格式
|
||||
// setJsonHeaders(http) 设置 Content-Type: application/json 和 User-Agent
|
||||
httpClient.putHeader("Content-Type", "application/json");
|
||||
httpClient.putHeader("User-Agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36");
|
||||
|
||||
// 参考 alipan.js: JSON.stringify({grant_type: "refresh_token", refresh_token: REFRESH_TOKEN})
|
||||
String jsonData = "{\"grant_type\":\"refresh_token\",\"refresh_token\":\"\"}";
|
||||
System.out.println("POST数据(JSON字符串): " + jsonData);
|
||||
System.out.println("注意:使用无效token测试错误响应格式");
|
||||
System.out.println("开始请求...");
|
||||
|
||||
long startTime = System.currentTimeMillis();
|
||||
JsHttpClient.JsHttpResponse response = httpClient.post(tokenUrl, jsonData);
|
||||
long endTime = System.currentTimeMillis();
|
||||
|
||||
System.out.println("请求完成,耗时: " + (endTime - startTime) + "ms");
|
||||
System.out.println("状态码: " + response.statusCode());
|
||||
|
||||
String body = response.body();
|
||||
System.out.println("响应体: " + body);
|
||||
|
||||
// 验证结果
|
||||
assertNotNull("响应不能为null", response);
|
||||
// 使用无效token应该返回400或401等错误状态码,但请求格式应该是正确的
|
||||
assertTrue("状态码应该是4xx(无效token)或200(如果token有效)",
|
||||
response.statusCode() >= 200 && response.statusCode() < 500);
|
||||
assertNotNull("响应体不能为null", body);
|
||||
|
||||
// 验证响应格式(阿里云盘API通常返回JSON)
|
||||
try {
|
||||
Object jsonResponse = response.json();
|
||||
System.out.println("响应JSON解析成功: " + jsonResponse);
|
||||
assertNotNull("JSON响应不能为null", jsonResponse);
|
||||
} catch (Exception e) {
|
||||
System.out.println("警告:响应不是有效的JSON格式");
|
||||
}
|
||||
|
||||
// 验证请求头是否正确设置
|
||||
System.out.println("验证请求头设置...");
|
||||
Map<String, String> headers = httpClient.getHeaders();
|
||||
assertTrue("应该设置了Content-Type", headers.containsKey("Content-Type"));
|
||||
assertEquals("Content-Type应该是application/json",
|
||||
"application/json", headers.get("Content-Type"));
|
||||
|
||||
System.out.println("✓ 测试通过 - 请求格式正确,已成功发送到阿里云盘API");
|
||||
|
||||
} catch (Exception e) {
|
||||
System.err.println("✗ 测试失败: " + e.getMessage());
|
||||
e.printStackTrace();
|
||||
// 如果是超时或其他网络错误,说明请求格式可能有问题
|
||||
if (e.getMessage() != null && e.getMessage().contains("超时")) {
|
||||
fail("请求超时,可能是请求格式问题或网络问题: " + e.getMessage());
|
||||
} else {
|
||||
fail("阿里云盘Token接口测试失败: " + e.getMessage());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testAlipanTokenApiWithValidFormat() {
|
||||
System.out.println("\n[测试21] 阿里云盘Token接口格式验证 - 使用httpbin验证请求格式");
|
||||
System.out.println("通过httpbin回显验证请求格式是否与alipan.js中的格式一致");
|
||||
|
||||
try {
|
||||
// 使用httpbin来验证请求格式
|
||||
String testUrl = "https://httpbin.org/post";
|
||||
System.out.println("测试URL: " + testUrl);
|
||||
|
||||
// 参考 alipan.js 中的请求格式
|
||||
httpClient.clearHeaders(); // 清空之前的头
|
||||
httpClient.putHeader("Content-Type", "application/json");
|
||||
httpClient.putHeader("User-Agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36");
|
||||
|
||||
// 完全模拟 alipan.js 中的请求体格式
|
||||
String jsonData = "{\"grant_type\":\"refresh_token\",\"refresh_token\":\"test_refresh_token_12345\"}";
|
||||
System.out.println("POST数据(JSON字符串): " + jsonData);
|
||||
System.out.println("开始请求...");
|
||||
|
||||
long startTime = System.currentTimeMillis();
|
||||
JsHttpClient.JsHttpResponse response = httpClient.post(testUrl, jsonData);
|
||||
long endTime = System.currentTimeMillis();
|
||||
|
||||
System.out.println("请求完成,耗时: " + (endTime - startTime) + "ms");
|
||||
System.out.println("状态码: " + response.statusCode());
|
||||
|
||||
String body = response.body();
|
||||
System.out.println("响应体(前800字符): " + (body != null && body.length() > 800 ? body.substring(0, 800) + "..." : body));
|
||||
|
||||
// 验证结果
|
||||
assertNotNull("响应不能为null", response);
|
||||
assertEquals("状态码应该是200", 200, response.statusCode());
|
||||
assertNotNull("响应体不能为null", body);
|
||||
|
||||
// httpbin会回显请求数据,验证请求体是否正确发送
|
||||
assertTrue("响应体应该包含grant_type字段", body.contains("grant_type"));
|
||||
assertTrue("响应体应该包含refresh_token字段", body.contains("refresh_token"));
|
||||
assertTrue("响应体应该包含发送的refresh_token值", body.contains("test_refresh_token_12345"));
|
||||
|
||||
// 验证Content-Type是否正确
|
||||
assertTrue("响应体应该包含Content-Type信息", body.contains("application/json"));
|
||||
|
||||
// 验证User-Agent是否正确
|
||||
assertTrue("响应体应该包含User-Agent信息", body.contains("Mozilla"));
|
||||
|
||||
System.out.println("✓ 测试通过 - 请求格式与alipan.js中的格式完全一致");
|
||||
System.out.println(" - JSON请求体正确发送");
|
||||
System.out.println(" - Content-Type正确设置");
|
||||
System.out.println(" - User-Agent正确设置");
|
||||
|
||||
} catch (Exception e) {
|
||||
System.err.println("✗ 测试失败: " + e.getMessage());
|
||||
e.printStackTrace();
|
||||
fail("阿里云盘Token接口格式验证失败: " + e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testSetTimeout() {
|
||||
System.out.println("\n[测试15] 设置超时时间 - setTimeout方法");
|
||||
|
||||
@@ -34,6 +34,7 @@ export default {
|
||||
const editorContainer = ref(null);
|
||||
let editor = null;
|
||||
let monaco = null;
|
||||
let touchHandlers = { start: null, move: null };
|
||||
|
||||
const defaultOptions = {
|
||||
value: props.modelValue,
|
||||
@@ -136,6 +137,46 @@ export default {
|
||||
if (editorContainer.value) {
|
||||
editorContainer.value.style.height = props.height;
|
||||
}
|
||||
|
||||
// 移动端:添加触摸缩放来调整字体大小
|
||||
if (window.innerWidth <= 768 && editorContainer.value) {
|
||||
let initialDistance = 0;
|
||||
let initialFontSize = defaultOptions.fontSize || 14;
|
||||
const minFontSize = 8;
|
||||
const maxFontSize = 24;
|
||||
|
||||
const getTouchDistance = (touch1, touch2) => {
|
||||
const dx = touch1.clientX - touch2.clientX;
|
||||
const dy = touch1.clientY - touch2.clientY;
|
||||
return Math.sqrt(dx * dx + dy * dy);
|
||||
};
|
||||
|
||||
touchHandlers.start = (e) => {
|
||||
if (e.touches.length === 2 && editor) {
|
||||
initialDistance = getTouchDistance(e.touches[0], e.touches[1]);
|
||||
initialFontSize = editor.getOption(monaco.editor.EditorOption.fontSize);
|
||||
}
|
||||
};
|
||||
|
||||
touchHandlers.move = (e) => {
|
||||
if (e.touches.length === 2 && editor) {
|
||||
e.preventDefault(); // 防止页面缩放
|
||||
const currentDistance = getTouchDistance(e.touches[0], e.touches[1]);
|
||||
const scale = currentDistance / initialDistance;
|
||||
const newFontSize = Math.round(initialFontSize * scale);
|
||||
|
||||
// 限制字体大小范围
|
||||
const clampedFontSize = Math.max(minFontSize, Math.min(maxFontSize, newFontSize));
|
||||
|
||||
if (clampedFontSize !== editor.getOption(monaco.editor.EditorOption.fontSize)) {
|
||||
editor.updateOptions({ fontSize: clampedFontSize });
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
editorContainer.value.addEventListener('touchstart', touchHandlers.start, { passive: false });
|
||||
editorContainer.value.addEventListener('touchmove', touchHandlers.move, { passive: false });
|
||||
}
|
||||
} catch (error) {
|
||||
console.error('Monaco Editor初始化失败:', error);
|
||||
console.error('错误详情:', error.stack);
|
||||
@@ -179,6 +220,11 @@ export default {
|
||||
});
|
||||
|
||||
onBeforeUnmount(() => {
|
||||
// 清理触摸事件监听器
|
||||
if (editorContainer.value && touchHandlers.start && touchHandlers.move) {
|
||||
editorContainer.value.removeEventListener('touchstart', touchHandlers.start);
|
||||
editorContainer.value.removeEventListener('touchmove', touchHandlers.move);
|
||||
}
|
||||
if (editor) {
|
||||
editor.dispose();
|
||||
}
|
||||
@@ -200,10 +246,26 @@ export default {
|
||||
border: 1px solid #dcdfe6;
|
||||
border-radius: 4px;
|
||||
overflow: hidden;
|
||||
/* 允许用户选择文本 */
|
||||
-webkit-user-select: text;
|
||||
user-select: text;
|
||||
}
|
||||
|
||||
.monaco-editor-container :deep(.monaco-editor) {
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
/* 移动端:禁用页面缩放,只允许编辑器字体缩放 */
|
||||
@media (max-width: 768px) {
|
||||
.monaco-editor-container {
|
||||
/* 禁用页面级别的缩放,只允许编辑器内部字体缩放 */
|
||||
touch-action: pan-x pan-y;
|
||||
}
|
||||
|
||||
.monaco-editor-container :deep(.monaco-editor) {
|
||||
/* 禁用页面级别的缩放 */
|
||||
touch-action: pan-x pan-y;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -16,9 +16,9 @@ proxyConf: server-proxy
|
||||
# JS演练场配置
|
||||
playground:
|
||||
# 是否启用演练场,默认false不启用
|
||||
enabled: false
|
||||
enabled: true
|
||||
# 公开模式,默认false需要密码访问,设为true则无需密码
|
||||
public: false
|
||||
public: true
|
||||
# 访问密码,建议修改默认密码!
|
||||
password: 'nfd_playground_2024'
|
||||
|
||||
|
||||
Reference in New Issue
Block a user