mirror of
https://github.com/qaiu/netdisk-fast-download.git
synced 2025-12-17 21:03:03 +00:00
UCpan和移动云空间API测试
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
package cn.qaiu.lz;
|
||||
|
||||
import cn.qaiu.db.pool.JDBCPoolInit;
|
||||
import cn.qaiu.vx.core.Deploy;
|
||||
import io.vertx.core.json.JsonObject;
|
||||
|
||||
@@ -22,7 +23,7 @@ public class AppMain {
|
||||
* @param jsonObject 配置
|
||||
*/
|
||||
private static void exec(JsonObject jsonObject) {
|
||||
// JDBCPoolInit.builder().config(jsonObject.getJsonObject("dataSource")).build().initPool();
|
||||
JDBCPoolInit.builder().config(jsonObject.getJsonObject("dataSource")).build().initPool();
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -10,6 +10,8 @@ import org.jsoup.Jsoup;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* 奶牛快传解析工具
|
||||
*
|
||||
* @author <a href="https://qaiu.top">QAIU</a>
|
||||
* @date 2023/4/21 21:19
|
||||
*/
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
package cn.qaiu.lz.common.util;
|
||||
|
||||
import io.vertx.core.Vertx;
|
||||
import io.vertx.ext.web.client.WebClient;
|
||||
|
||||
/**
|
||||
* 移动云空间解析
|
||||
*/
|
||||
public class EcTool {
|
||||
public static String FULL_URL_PREFIX = "https://www.ecpan.cn/drive/fileextoverrid.do?chainUrlTemplate=https:%2F%2Fwww.ecpan.cn%2Fweb%2F%23%2FyunpanProxy%3Fpath%3D%252F%2523%252Fdrive%252Foutside&parentId=-1&data=";
|
||||
|
||||
|
||||
public static String parse(String dataKey) throws Exception {
|
||||
Vertx vertx = Vertx.vertx();
|
||||
WebClient client = WebClient.create(vertx);
|
||||
try {
|
||||
|
||||
client.getAbs(FULL_URL_PREFIX+dataKey).send().onSuccess(
|
||||
res -> {
|
||||
System.out.println(res.bodyAsString());
|
||||
}
|
||||
).onFailure(t -> {
|
||||
throw new RuntimeException("解析失败");
|
||||
});
|
||||
|
||||
} catch (RuntimeException e) {
|
||||
throw new Exception(e);
|
||||
}
|
||||
return "";
|
||||
}
|
||||
|
||||
public static void main(String[] args) throws Exception {
|
||||
parse("81027a5c99af5b11ca004966c945cce6W9Bf2");
|
||||
System.out.println("222222");
|
||||
}
|
||||
}
|
||||
@@ -12,6 +12,8 @@ import java.util.regex.Matcher;
|
||||
import java.util.regex.Pattern;
|
||||
|
||||
/**
|
||||
* 蓝奏云解析工具
|
||||
*
|
||||
* @author QAIU
|
||||
* @version 1.0 update 2021/5/16 10:39
|
||||
*/
|
||||
|
||||
@@ -2,7 +2,7 @@ package cn.qaiu.lz.web.http;
|
||||
|
||||
import cn.qaiu.lz.common.util.CowTool;
|
||||
import cn.qaiu.lz.common.util.LzTool;
|
||||
import cn.qaiu.lz.web.model.RealUser;
|
||||
import cn.qaiu.lz.web.model.SysUser;
|
||||
import cn.qaiu.lz.web.service.UserService;
|
||||
import cn.qaiu.vx.core.annotaions.RouteHandler;
|
||||
import cn.qaiu.vx.core.annotaions.RouteMapping;
|
||||
@@ -26,7 +26,7 @@ public class ServerApi {
|
||||
private final UserService userService = AsyncServiceUtil.getAsyncServiceInstance(UserService.class);
|
||||
|
||||
@RouteMapping(value = "/login", method = RouteMethod.POST)
|
||||
public Future<String> login(RealUser user) {
|
||||
public Future<String> login(SysUser user) {
|
||||
log.info("<------- login: {}", user.getUsername());
|
||||
return userService.login(user);
|
||||
}
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
package cn.qaiu.lz.web.model;
|
||||
|
||||
public class CowUser {
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package cn.qaiu.lz.web.model;
|
||||
|
||||
public class LzUser {
|
||||
}
|
||||
@@ -13,13 +13,13 @@ import lombok.NoArgsConstructor;
|
||||
@AllArgsConstructor
|
||||
@DataObject
|
||||
@Table("t_user")
|
||||
public class RealUser implements ToJson {
|
||||
public class SysUser implements ToJson {
|
||||
private String id;
|
||||
|
||||
private String username;
|
||||
private String password;
|
||||
|
||||
public RealUser(JsonObject json) {
|
||||
public SysUser(JsonObject json) {
|
||||
this.username = json.getString("username");
|
||||
this.password = json.getString("password");
|
||||
}
|
||||
@@ -1,7 +1,7 @@
|
||||
package cn.qaiu.lz.web.service;
|
||||
|
||||
import cn.qaiu.lz.web.model.SysUser;
|
||||
import cn.qaiu.vx.core.base.BaseAsyncService;
|
||||
import cn.qaiu.lz.web.model.RealUser;
|
||||
import io.vertx.codegen.annotations.ProxyGen;
|
||||
import io.vertx.core.Future;
|
||||
|
||||
@@ -13,5 +13,5 @@ import io.vertx.core.Future;
|
||||
*/
|
||||
@ProxyGen
|
||||
public interface UserService extends BaseAsyncService {
|
||||
Future<String> login(RealUser user);
|
||||
Future<String> login(SysUser user);
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package cn.qaiu.lz.web.service.impl;
|
||||
|
||||
import cn.qaiu.lz.web.model.RealUser;
|
||||
import cn.qaiu.lz.web.model.SysUser;
|
||||
import cn.qaiu.lz.web.service.UserService;
|
||||
import cn.qaiu.vx.core.annotaions.Service;
|
||||
import io.vertx.core.Future;
|
||||
@@ -15,7 +15,7 @@ import io.vertx.core.Future;
|
||||
public class UserServiceImpl implements UserService {
|
||||
|
||||
@Override
|
||||
public Future<String> login(RealUser user) {
|
||||
public Future<String> login(SysUser user) {
|
||||
|
||||
return Future.succeededFuture("111");
|
||||
}
|
||||
|
||||
@@ -126,3 +126,211 @@ content-type: application/json
|
||||
https://drive-pc.quark.cn/1/clouddrive/share/sharepage/detail?pr=ucpro&fr=pc&pwd_id=8f816f506409&stoken=JX6p1XFG5hD2VaUJFxazvE72u9TuhcKiXd81%2BXaFFsI%3D&pdir_fid=0&force=0&_page=1&_size=50&_fetch_banner=1&_fetch_share=1&_fetch_total=1&_sort=file_type:asc,updated_at:desc
|
||||
|
||||
|
||||
### quark_pan
|
||||
https://drive-pc.quark.cn/1/clouddrive/auth/pc/flush?pr=ucpro&fr=pc
|
||||
cookie: __pus=77641f2139b914c29ed2b0caf246723dAAQbjDyR/fi1Z9YqqWbfO2qPZYeRTrFSC2P30uuWJwtY2ZwwQTRsEPHJKc9nuPnrXfQxir+0N8K/mVfr7SIwGc2t;
|
||||
|
||||
# https://fast.uc.cn/s/33197dd53ace4
|
||||
### UCpan
|
||||
https://fast.uc.cn/api/info?st=&fr=pc&pr=UCBrowser
|
||||
|
||||
### UCpan 第一步 获取stoken POST json传入pwd_id(分享id),passcode(分享密码)
|
||||
POST https://pc-api.uc.cn/1/clouddrive/share/sharepage/token?entry=ft&fr=pc&pr=UCBrowser
|
||||
content-type: application/json
|
||||
|
||||
{"pwd_id":"33197dd53ace4","passcode":"","share_for_transfer":true}
|
||||
|
||||
### UCpan 第二步 获取fid,share_fid_token GET传参pwd_id,passcode,stoken
|
||||
https://pc-api.uc.cn/1/clouddrive/transfer_share/detail?pwd_id=33197dd53ace4&passcode=&stoken=oPz47hsgQXQdDYimsP4kBMi8aLv40X378IZOiBsnfLU%3D
|
||||
content-type: application/json
|
||||
|
||||
### UCpan 第二步获取下载链接 POST json传入fids(fid),pwd_id,stoken,fids_token(share_fid_token)
|
||||
POST https://pc-api.uc.cn/1/clouddrive/file/download?entry=ft&fr=pc&pr=UCBrowser
|
||||
content-type: application/json
|
||||
|
||||
{
|
||||
"fids": [
|
||||
"54c3cd90ed3e45119bb96ed99a562d40"
|
||||
],
|
||||
"pwd_id": "33197dd53ace4",
|
||||
"stoken": "oPz47hsgQXQdDYimsP4kBMi8aLv40X378IZOiBsnfLU=",
|
||||
"fids_token": [
|
||||
"ff9f5b5c94df9d08c8dd3b7948fc5e20"
|
||||
]
|
||||
}
|
||||
|
||||
### https://www.ecpan.cn/web/#/yunpanProxy?path=%2F%23%2Fdrive%2Foutside&data=81027a5c99af5b11ca004966c945cce6W9Bf2&isShare=1
|
||||
### ecpan(移动云空间)
|
||||
https://www.ecpan.cn/drive/fileextoverrid.do?chainUrlTemplate=https:%2F%2Fwww.ecpan.cn%2Fweb%2F%23%2FyunpanProxy%3Fpath%3D%252F%2523%252Fdrive%252Foutside&data=81027a5c99af5b11ca004966c945cce6W9Bf2&parentId=-1
|
||||
|
||||
|
||||
###
|
||||
POST https://www.ecpan.cn/drive/sharedownload.do
|
||||
Accept: application/json
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"extCodeFlag": 0,
|
||||
"isIp": 0,
|
||||
"shareId": 2404807,
|
||||
"groupId": "c27b53c4f91b11ed86b3b026287b20b1",
|
||||
"fileIdList": [{
|
||||
"tableName": "cloudp_file_52",
|
||||
"appFileId": "2d06ad61f91c11ed86b3b026287b20b1",
|
||||
"dfsFileId": "3080817de83747698ff5747e25f97e50",
|
||||
"fileName": "fonts.zip",
|
||||
"filePath": "个人盘",
|
||||
"fileLevel": 0,
|
||||
"fileCount": 0,
|
||||
"fileType": 2,
|
||||
"fileSort": 99,
|
||||
"fileSize": 19115063,
|
||||
"uploadSize": 19115063,
|
||||
"parentId": "c27b53c4f91b11ed86b3b026287b20b1",
|
||||
"usn": 11364252,
|
||||
"userName": "157****1073",
|
||||
"userId": "",
|
||||
"corpId": 13260232,
|
||||
"createDate": 1684813492000,
|
||||
"modifyDate": 1684813492000,
|
||||
"status": 1,
|
||||
"version": 0,
|
||||
"comeFrom": 21,
|
||||
"isShare": 0,
|
||||
"folderType": 0,
|
||||
"groupDesc": null,
|
||||
"groupId": "c27b53c4f91b11ed86b3b026287b20b1",
|
||||
"groupName": null,
|
||||
"permission": null,
|
||||
"userInfo": null,
|
||||
"diskType": 1,
|
||||
"historyKey": null,
|
||||
"oldAppFileId": null,
|
||||
"fileRealPath": null,
|
||||
"fileExt": null,
|
||||
"oldFileName": null,
|
||||
"key": null,
|
||||
"isUpperCase": null,
|
||||
"isSubDir": null,
|
||||
"isViewFolder": null,
|
||||
"uploadTimeType": null,
|
||||
"startUploadTime": null,
|
||||
"endUploadTime": null,
|
||||
"sizeOperator": null,
|
||||
"orderField": null,
|
||||
"orderBy": null,
|
||||
"oldFilePath": null,
|
||||
"statusStr": null,
|
||||
"rootUsn": 11364252,
|
||||
"createdByUsn": null,
|
||||
"attentionCount": 0,
|
||||
"fileMd5": "86c1ff32437ca0ccaca24f7ea197e34a",
|
||||
"fileLabel": null,
|
||||
"fileDesc": null,
|
||||
"fileExtends": "<fileExtends><shareRoot></shareRoot><isLock>0</isLock><isEncrypt>0</isEncrypt></fileExtends>",
|
||||
"deviceId": null,
|
||||
"fileNamePinyin": "fonts.zip",
|
||||
"modifyUser": "157****1073",
|
||||
"fileExFileds": {
|
||||
"shareRoot": "",
|
||||
"isLock": 0,
|
||||
"isEncrypt": 0
|
||||
},
|
||||
"security": 0,
|
||||
"createdDate": null,
|
||||
"modifiedDate1": null,
|
||||
"modifiedDate2": null,
|
||||
"createdDate1": null,
|
||||
"createdDate2": null,
|
||||
"deleteUsn": null,
|
||||
"toShares": null,
|
||||
"firstLevel": null
|
||||
}]
|
||||
}
|
||||
|
||||
###
|
||||
https://www.ecpan.cn/drive/fileextoverrid.do?chainUrlTemplate=https:%2F%2Fwww.ecpan.cn%2Fweb%2F%23%2FyunpanProxy%3Fpath%3D%252F%2523%252Fdrive%252Foutside&data=aa0cae0164d8885e6d35826b5b2901eckbWJBalM&parentId=-1
|
||||
|
||||
###
|
||||
POST https://www.ecpan.cn/drive/sharedownload.do
|
||||
Accept: application/json
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"extCodeFlag": 0,
|
||||
"isIp": 0,
|
||||
"shareId": 2404807,
|
||||
"groupId": "c27b53c4f91b11ed86b3b026287b20b1",
|
||||
"fileIdList": [{
|
||||
"tableName": "cloudp_file_52",
|
||||
"appFileId": "fe4ea2d0f92011ed86b3b026287b20b1",
|
||||
"dfsFileId": "a81bdef5a9614d30b7f856755c985cf8",
|
||||
"fileName": "readline-7.0-rc1.tar.gz",
|
||||
"filePath": "个人盘\\app",
|
||||
"fileLevel": 1,
|
||||
"fileCount": 0,
|
||||
"fileType": 2,
|
||||
"fileSort": 99,
|
||||
"fileSize": 2897058,
|
||||
"uploadSize": 2897058,
|
||||
"parentId": "ed008146f92011ed86b3b026287b20b1",
|
||||
"usn": 11364252,
|
||||
"userName": "157****1073",
|
||||
"userId": "",
|
||||
"corpId": 13260232,
|
||||
"createDate": 1684815561000,
|
||||
"modifyDate": 1684815561000,
|
||||
"status": 1,
|
||||
"version": 0,
|
||||
"comeFrom": 21,
|
||||
"isShare": 0,
|
||||
"folderType": 0,
|
||||
"groupDesc": null,
|
||||
"groupId": "c27b53c4f91b11ed86b3b026287b20b1",
|
||||
"groupName": null,
|
||||
"permission": null,
|
||||
"userInfo": null,
|
||||
"diskType": 1,
|
||||
"historyKey": null,
|
||||
"oldAppFileId": null,
|
||||
"fileRealPath": null,
|
||||
"fileExt": null,
|
||||
"oldFileName": null,
|
||||
"key": null,
|
||||
"isUpperCase": null,
|
||||
"isSubDir": null,
|
||||
"isViewFolder": null,
|
||||
"uploadTimeType": null,
|
||||
"startUploadTime": null,
|
||||
"endUploadTime": null,
|
||||
"sizeOperator": null,
|
||||
"orderField": null,
|
||||
"orderBy": null,
|
||||
"oldFilePath": null,
|
||||
"statusStr": null,
|
||||
"rootUsn": 11364252,
|
||||
"createdByUsn": null,
|
||||
"attentionCount": 0,
|
||||
"fileMd5": "c5ed4d0fd48ec6c940d6da375e3f1b50",
|
||||
"fileLabel": null,
|
||||
"fileDesc": null,
|
||||
"fileExtends": "<fileExtends><shareRoot></shareRoot><isLock>0</isLock><isEncrypt>0</isEncrypt></fileExtends>",
|
||||
"deviceId": null,
|
||||
"fileNamePinyin": "readline-7.0-rc1.tar.gz",
|
||||
"modifyUser": "157****1073",
|
||||
"fileExFileds": {
|
||||
"shareRoot": "",
|
||||
"isLock": 0,
|
||||
"isEncrypt": 0
|
||||
},
|
||||
"security": 0,
|
||||
"createdDate": null,
|
||||
"modifiedDate1": null,
|
||||
"modifiedDate2": null,
|
||||
"createdDate1": null,
|
||||
"createdDate2": null,
|
||||
"deleteUsn": null,
|
||||
"toShares": null,
|
||||
"firstLevel": null
|
||||
}]
|
||||
}
|
||||
|
||||
@@ -53,6 +53,7 @@
|
||||
</appender>
|
||||
<logger name="io.netty" level="warn"/>
|
||||
<logger name="io.vertx" level="info"/>
|
||||
<logger name="com.zaxxer.hikari" level="info"/>
|
||||
<root level="debug">
|
||||
<appender-ref ref="STDOUT"/>
|
||||
<!-- <appender-ref ref="FILE"/>-->
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
package cn.qaiu.web.test;
|
||||
|
||||
import io.vertx.core.Vertx;
|
||||
import io.vertx.ext.web.client.WebClient;
|
||||
|
||||
public class TestWebClient2 {
|
||||
|
||||
public static void main(String[] args) {
|
||||
Vertx vertx = Vertx.vertx();
|
||||
WebClient client = WebClient.create(vertx);
|
||||
client.getAbs("https://qaiu.top").send().onSuccess(res -> {
|
||||
System.out.println(res.bodyAsString());
|
||||
client.close();
|
||||
});
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user