2024-05-21 15:24:28 +00:00
|
|
|
package thunderx
|
|
|
|
|
|
|
|
import (
|
2024-07-02 06:59:07 +00:00
|
|
|
"crypto/md5"
|
2024-05-21 15:24:28 +00:00
|
|
|
"crypto/sha1"
|
|
|
|
"encoding/hex"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"net/http"
|
|
|
|
"regexp"
|
2024-07-02 06:59:07 +00:00
|
|
|
"strings"
|
2024-05-21 15:24:28 +00:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/alist-org/alist/v3/drivers/base"
|
|
|
|
"github.com/alist-org/alist/v3/pkg/utils"
|
|
|
|
"github.com/go-resty/resty/v2"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
API_URL = "https://api-pan.xunleix.com/drive/v1"
|
|
|
|
FILE_API_URL = API_URL + "/files"
|
|
|
|
XLUSER_API_URL = "https://xluser-ssl.xunleix.com/v1"
|
|
|
|
)
|
|
|
|
|
2024-07-02 06:59:07 +00:00
|
|
|
var Algorithms = []string{
|
|
|
|
"kVy0WbPhiE4v6oxXZ88DvoA3Q",
|
|
|
|
"lON/AUoZKj8/nBtcE85mVbkOaVdVa",
|
|
|
|
"rLGffQrfBKH0BgwQ33yZofvO3Or",
|
|
|
|
"FO6HWqw",
|
|
|
|
"GbgvyA2",
|
|
|
|
"L1NU9QvIQIH7DTRt",
|
|
|
|
"y7llk4Y8WfYflt6",
|
|
|
|
"iuDp1WPbV3HRZudZtoXChxH4HNVBX5ZALe",
|
|
|
|
"8C28RTXmVcco0",
|
|
|
|
"X5Xh",
|
|
|
|
"7xe25YUgfGgD0xW3ezFS",
|
|
|
|
"",
|
|
|
|
"CKCR",
|
|
|
|
"8EmDjBo6h3eLaK7U6vU2Qys0NsMx",
|
|
|
|
"t2TeZBXKqbdP09Arh9C3",
|
|
|
|
}
|
|
|
|
|
|
|
|
const (
|
|
|
|
ClientID = "ZQL_zwA4qhHcoe_2"
|
|
|
|
ClientSecret = "Og9Vr1L8Ee6bh0olFxFDRg"
|
|
|
|
ClientVersion = "1.06.0.2132"
|
|
|
|
PackageName = "com.thunder.downloader"
|
|
|
|
DownloadUserAgent = "Dalvik/2.1.0 (Linux; U; Android 13; M2004J7AC Build/SP1A.210812.016)"
|
|
|
|
SdkVersion = "2.0.3.203100 "
|
|
|
|
)
|
|
|
|
|
2024-05-21 15:24:28 +00:00
|
|
|
const (
|
|
|
|
FOLDER = "drive#folder"
|
|
|
|
FILE = "drive#file"
|
|
|
|
RESUMABLE = "drive#resumable"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
UPLOAD_TYPE_UNKNOWN = "UPLOAD_TYPE_UNKNOWN"
|
|
|
|
//UPLOAD_TYPE_FORM = "UPLOAD_TYPE_FORM"
|
|
|
|
UPLOAD_TYPE_RESUMABLE = "UPLOAD_TYPE_RESUMABLE"
|
|
|
|
UPLOAD_TYPE_URL = "UPLOAD_TYPE_URL"
|
|
|
|
)
|
|
|
|
|
|
|
|
func GetAction(method string, url string) string {
|
|
|
|
urlpath := regexp.MustCompile(`://[^/]+((/[^/\s?#]+)*)`).FindStringSubmatch(url)[1]
|
|
|
|
return method + ":" + urlpath
|
|
|
|
}
|
|
|
|
|
|
|
|
type Common struct {
|
|
|
|
client *resty.Client
|
|
|
|
|
|
|
|
captchaToken string
|
2024-07-02 06:59:07 +00:00
|
|
|
userID string
|
2024-05-21 15:24:28 +00:00
|
|
|
// 签名相关,二选一
|
|
|
|
Algorithms []string
|
|
|
|
Timestamp, CaptchaSign string
|
|
|
|
|
|
|
|
// 必要值,签名相关
|
|
|
|
DeviceID string
|
|
|
|
ClientID string
|
|
|
|
ClientSecret string
|
|
|
|
ClientVersion string
|
|
|
|
PackageName string
|
|
|
|
UserAgent string
|
|
|
|
DownloadUserAgent string
|
|
|
|
UseVideoUrl bool
|
|
|
|
|
|
|
|
// 验证码token刷新成功回调
|
|
|
|
refreshCTokenCk func(token string)
|
|
|
|
}
|
|
|
|
|
2024-07-02 06:59:07 +00:00
|
|
|
func (c *Common) SetDeviceID(deviceID string) {
|
|
|
|
c.DeviceID = deviceID
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Common) SetUserID(userID string) {
|
|
|
|
c.userID = userID
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Common) SetUserAgent(userAgent string) {
|
|
|
|
c.UserAgent = userAgent
|
|
|
|
}
|
|
|
|
|
2024-05-21 15:24:28 +00:00
|
|
|
func (c *Common) SetCaptchaToken(captchaToken string) {
|
|
|
|
c.captchaToken = captchaToken
|
|
|
|
}
|
|
|
|
func (c *Common) GetCaptchaToken() string {
|
|
|
|
return c.captchaToken
|
|
|
|
}
|
|
|
|
|
|
|
|
// 刷新验证码token(登录后)
|
|
|
|
func (c *Common) RefreshCaptchaTokenAtLogin(action, userID string) error {
|
|
|
|
metas := map[string]string{
|
|
|
|
"client_version": c.ClientVersion,
|
|
|
|
"package_name": c.PackageName,
|
|
|
|
"user_id": userID,
|
|
|
|
}
|
|
|
|
metas["timestamp"], metas["captcha_sign"] = c.GetCaptchaSign()
|
|
|
|
return c.refreshCaptchaToken(action, metas)
|
|
|
|
}
|
|
|
|
|
|
|
|
// 刷新验证码token(登录时)
|
|
|
|
func (c *Common) RefreshCaptchaTokenInLogin(action, username string) error {
|
|
|
|
metas := make(map[string]string)
|
|
|
|
if ok, _ := regexp.MatchString(`\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*`, username); ok {
|
|
|
|
metas["email"] = username
|
|
|
|
} else if len(username) >= 11 && len(username) <= 18 {
|
|
|
|
metas["phone_number"] = username
|
|
|
|
} else {
|
|
|
|
metas["username"] = username
|
|
|
|
}
|
|
|
|
return c.refreshCaptchaToken(action, metas)
|
|
|
|
}
|
|
|
|
|
|
|
|
// 获取验证码签名
|
|
|
|
func (c *Common) GetCaptchaSign() (timestamp, sign string) {
|
|
|
|
if len(c.Algorithms) == 0 {
|
|
|
|
return c.Timestamp, c.CaptchaSign
|
|
|
|
}
|
|
|
|
timestamp = fmt.Sprint(time.Now().UnixMilli())
|
|
|
|
str := fmt.Sprint(c.ClientID, c.ClientVersion, c.PackageName, c.DeviceID, timestamp)
|
|
|
|
for _, algorithm := range c.Algorithms {
|
|
|
|
str = utils.GetMD5EncodeStr(str + algorithm)
|
|
|
|
}
|
|
|
|
sign = "1." + str
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// 刷新验证码token
|
|
|
|
func (c *Common) refreshCaptchaToken(action string, metas map[string]string) error {
|
|
|
|
param := CaptchaTokenRequest{
|
|
|
|
Action: action,
|
|
|
|
CaptchaToken: c.captchaToken,
|
|
|
|
ClientID: c.ClientID,
|
|
|
|
DeviceID: c.DeviceID,
|
|
|
|
Meta: metas,
|
|
|
|
RedirectUri: "xlaccsdk01://xbase.cloud/callback?state=harbor",
|
|
|
|
}
|
|
|
|
var e ErrResp
|
|
|
|
var resp CaptchaTokenResponse
|
|
|
|
_, err := c.Request(XLUSER_API_URL+"/shield/captcha/init", http.MethodPost, func(req *resty.Request) {
|
|
|
|
req.SetError(&e).SetBody(param)
|
|
|
|
}, &resp)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if e.IsError() {
|
|
|
|
return &e
|
|
|
|
}
|
|
|
|
|
|
|
|
if resp.Url != "" {
|
|
|
|
return fmt.Errorf(`need verify: <a target="_blank" href="%s">Click Here</a>`, resp.Url)
|
|
|
|
}
|
|
|
|
|
|
|
|
if resp.CaptchaToken == "" {
|
|
|
|
return fmt.Errorf("empty captchaToken")
|
|
|
|
}
|
|
|
|
|
|
|
|
if c.refreshCTokenCk != nil {
|
|
|
|
c.refreshCTokenCk(resp.CaptchaToken)
|
|
|
|
}
|
|
|
|
c.SetCaptchaToken(resp.CaptchaToken)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2024-07-02 06:59:07 +00:00
|
|
|
// Request 只有基础信息的请求
|
2024-05-21 15:24:28 +00:00
|
|
|
func (c *Common) Request(url, method string, callback base.ReqCallback, resp interface{}) ([]byte, error) {
|
|
|
|
req := c.client.R().SetHeaders(map[string]string{
|
|
|
|
"user-agent": c.UserAgent,
|
|
|
|
"accept": "application/json;charset=UTF-8",
|
|
|
|
"x-device-id": c.DeviceID,
|
|
|
|
"x-client-id": c.ClientID,
|
|
|
|
"x-client-version": c.ClientVersion,
|
|
|
|
})
|
|
|
|
|
|
|
|
if callback != nil {
|
|
|
|
callback(req)
|
|
|
|
}
|
|
|
|
if resp != nil {
|
|
|
|
req.SetResult(resp)
|
|
|
|
}
|
|
|
|
res, err := req.Execute(method, url)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var erron ErrResp
|
|
|
|
utils.Json.Unmarshal(res.Body(), &erron)
|
|
|
|
if erron.IsError() {
|
|
|
|
return nil, &erron
|
|
|
|
}
|
|
|
|
|
|
|
|
return res.Body(), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// 计算文件Gcid
|
|
|
|
func getGcid(r io.Reader, size int64) (string, error) {
|
|
|
|
calcBlockSize := func(j int64) int64 {
|
|
|
|
var psize int64 = 0x40000
|
|
|
|
for float64(j)/float64(psize) > 0x200 && psize < 0x200000 {
|
|
|
|
psize = psize << 1
|
|
|
|
}
|
|
|
|
return psize
|
|
|
|
}
|
|
|
|
|
|
|
|
hash1 := sha1.New()
|
|
|
|
hash2 := sha1.New()
|
|
|
|
readSize := calcBlockSize(size)
|
|
|
|
for {
|
|
|
|
hash2.Reset()
|
|
|
|
if n, err := utils.CopyWithBufferN(hash2, r, readSize); err != nil && n == 0 {
|
|
|
|
if err != io.EOF {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
break
|
|
|
|
}
|
|
|
|
hash1.Write(hash2.Sum(nil))
|
|
|
|
}
|
|
|
|
return hex.EncodeToString(hash1.Sum(nil)), nil
|
|
|
|
}
|
2024-07-02 06:59:07 +00:00
|
|
|
|
|
|
|
func generateDeviceSign(deviceID, packageName string) string {
|
|
|
|
|
|
|
|
signatureBase := fmt.Sprintf("%s%s%s%s", deviceID, packageName, "1", "appkey")
|
|
|
|
|
|
|
|
sha1Hash := sha1.New()
|
|
|
|
sha1Hash.Write([]byte(signatureBase))
|
|
|
|
sha1Result := sha1Hash.Sum(nil)
|
|
|
|
|
|
|
|
sha1String := hex.EncodeToString(sha1Result)
|
|
|
|
|
|
|
|
md5Hash := md5.New()
|
|
|
|
md5Hash.Write([]byte(sha1String))
|
|
|
|
md5Result := md5Hash.Sum(nil)
|
|
|
|
|
|
|
|
md5String := hex.EncodeToString(md5Result)
|
|
|
|
|
|
|
|
deviceSign := fmt.Sprintf("div101.%s%s", deviceID, md5String)
|
|
|
|
|
|
|
|
return deviceSign
|
|
|
|
}
|
|
|
|
|
|
|
|
func BuildCustomUserAgent(deviceID, clientID, appName, sdkVersion, clientVersion, packageName, userID string) string {
|
|
|
|
deviceSign := generateDeviceSign(deviceID, packageName)
|
|
|
|
var sb strings.Builder
|
|
|
|
|
|
|
|
sb.WriteString(fmt.Sprintf("ANDROID-%s/%s ", appName, clientVersion))
|
|
|
|
sb.WriteString("protocolVersion/200 ")
|
|
|
|
sb.WriteString("accesstype/ ")
|
|
|
|
sb.WriteString(fmt.Sprintf("clientid/%s ", clientID))
|
|
|
|
sb.WriteString(fmt.Sprintf("clientversion/%s ", clientVersion))
|
|
|
|
sb.WriteString("action_type/ ")
|
|
|
|
sb.WriteString("networktype/WIFI ")
|
|
|
|
sb.WriteString("sessionid/ ")
|
|
|
|
sb.WriteString(fmt.Sprintf("deviceid/%s ", deviceID))
|
|
|
|
sb.WriteString("providername/NONE ")
|
|
|
|
sb.WriteString(fmt.Sprintf("devicesign/%s ", deviceSign))
|
|
|
|
sb.WriteString("refresh_token/ ")
|
|
|
|
sb.WriteString(fmt.Sprintf("sdkversion/%s ", sdkVersion))
|
|
|
|
sb.WriteString(fmt.Sprintf("datetime/%d ", time.Now().UnixMilli()))
|
|
|
|
sb.WriteString(fmt.Sprintf("usrno/%s ", userID))
|
|
|
|
sb.WriteString(fmt.Sprintf("appname/%s ", appName))
|
|
|
|
sb.WriteString(fmt.Sprintf("session_origin/ "))
|
|
|
|
sb.WriteString(fmt.Sprintf("grant_type/ "))
|
|
|
|
sb.WriteString(fmt.Sprintf("appid/ "))
|
|
|
|
sb.WriteString(fmt.Sprintf("clientip/ "))
|
|
|
|
sb.WriteString(fmt.Sprintf("devicename/Xiaomi_M2004j7ac "))
|
|
|
|
sb.WriteString(fmt.Sprintf("osversion/13 "))
|
|
|
|
sb.WriteString(fmt.Sprintf("platformversion/10 "))
|
|
|
|
sb.WriteString(fmt.Sprintf("accessmode/ "))
|
|
|
|
sb.WriteString(fmt.Sprintf("devicemodel/M2004J7AC "))
|
|
|
|
|
|
|
|
return sb.String()
|
|
|
|
}
|