2021-12-06 07:55:05 +00:00
|
|
|
package _89
|
2021-11-15 10:00:43 +00:00
|
|
|
|
|
|
|
import (
|
2022-01-08 11:31:12 +00:00
|
|
|
"bytes"
|
2021-12-10 14:25:09 +00:00
|
|
|
"crypto/aes"
|
|
|
|
"crypto/hmac"
|
|
|
|
"crypto/md5"
|
2021-11-15 10:00:43 +00:00
|
|
|
"crypto/rand"
|
|
|
|
"crypto/rsa"
|
2021-12-10 14:25:09 +00:00
|
|
|
"crypto/sha1"
|
2021-11-15 10:00:43 +00:00
|
|
|
"crypto/x509"
|
|
|
|
"encoding/base64"
|
2021-12-10 14:25:09 +00:00
|
|
|
"encoding/hex"
|
2021-11-15 10:00:43 +00:00
|
|
|
"encoding/pem"
|
2021-12-10 14:25:09 +00:00
|
|
|
"errors"
|
2021-11-15 10:00:43 +00:00
|
|
|
"fmt"
|
|
|
|
"github.com/Xhofe/alist/conf"
|
2021-12-06 07:55:05 +00:00
|
|
|
"github.com/Xhofe/alist/drivers/base"
|
2021-11-15 10:00:43 +00:00
|
|
|
"github.com/Xhofe/alist/model"
|
|
|
|
"github.com/Xhofe/alist/utils"
|
|
|
|
"github.com/go-resty/resty/v2"
|
2022-01-08 11:31:12 +00:00
|
|
|
"github.com/google/uuid"
|
2021-12-10 14:25:09 +00:00
|
|
|
jsoniter "github.com/json-iterator/go"
|
2021-11-15 10:00:43 +00:00
|
|
|
log "github.com/sirupsen/logrus"
|
2022-01-08 11:31:12 +00:00
|
|
|
"io"
|
|
|
|
"math"
|
2021-11-15 10:00:43 +00:00
|
|
|
mathRand "math/rand"
|
2022-01-08 11:31:12 +00:00
|
|
|
"net/http"
|
2021-12-10 14:25:09 +00:00
|
|
|
"net/url"
|
2021-11-15 10:00:43 +00:00
|
|
|
"path/filepath"
|
|
|
|
"regexp"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
var client189Map map[string]*resty.Client
|
|
|
|
|
2021-11-27 11:40:36 +00:00
|
|
|
func (driver Cloud189) FormatFile(file *Cloud189File) *model.File {
|
2021-11-15 10:00:43 +00:00
|
|
|
f := &model.File{
|
2021-11-27 10:55:09 +00:00
|
|
|
Id: strconv.FormatInt(file.Id, 10),
|
2021-11-15 10:00:43 +00:00
|
|
|
Name: file.Name,
|
|
|
|
Size: file.Size,
|
2021-11-30 01:37:51 +00:00
|
|
|
Driver: driver.Config().Name,
|
2021-11-15 10:00:43 +00:00
|
|
|
UpdatedAt: nil,
|
|
|
|
Thumbnail: file.Icon.SmallUrl,
|
|
|
|
Url: file.Url,
|
|
|
|
}
|
2021-11-15 12:31:44 +00:00
|
|
|
loc, _ := time.LoadLocation("Local")
|
|
|
|
lastOpTime, err := time.ParseInLocation("2006-01-02 15:04:05", file.LastOpTime, loc)
|
|
|
|
if err == nil {
|
|
|
|
f.UpdatedAt = &lastOpTime
|
|
|
|
}
|
2021-11-15 10:00:43 +00:00
|
|
|
if file.Size == -1 {
|
|
|
|
f.Type = conf.FOLDER
|
2021-11-15 12:31:44 +00:00
|
|
|
f.Size = 0
|
2021-11-15 10:00:43 +00:00
|
|
|
} else {
|
|
|
|
f.Type = utils.GetFileType(filepath.Ext(file.Name))
|
|
|
|
}
|
|
|
|
return f
|
|
|
|
}
|
|
|
|
|
2021-11-27 10:55:09 +00:00
|
|
|
//func (c Cloud189) GetFile(path string, account *model.Account) (*Cloud189File, error) {
|
|
|
|
// dir, name := filepath.Split(path)
|
|
|
|
// dir = utils.ParsePath(dir)
|
2021-12-06 09:49:20 +00:00
|
|
|
// _, _, err := c.ParentPath(dir, account)
|
2021-11-27 10:55:09 +00:00
|
|
|
// if err != nil {
|
|
|
|
// return nil, err
|
|
|
|
// }
|
|
|
|
// parentFiles_, _ := conf.Cache.Get(conf.Ctx, fmt.Sprintf("%s%s", account.Name, dir))
|
|
|
|
// parentFiles, _ := parentFiles_.([]Cloud189File)
|
|
|
|
// for _, file := range parentFiles {
|
|
|
|
// if file.Name == name {
|
|
|
|
// if file.Size != -1 {
|
|
|
|
// return &file, err
|
|
|
|
// } else {
|
2021-12-05 07:22:19 +00:00
|
|
|
// return nil, ErrNotFile
|
2021-11-27 10:55:09 +00:00
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// }
|
2021-12-05 07:22:19 +00:00
|
|
|
// return nil, ErrPathNotFound
|
2021-11-27 10:55:09 +00:00
|
|
|
//}
|
|
|
|
|
2021-11-15 10:00:43 +00:00
|
|
|
type Cloud189Down struct {
|
|
|
|
ResCode int `json:"res_code"`
|
|
|
|
ResMessage string `json:"res_message"`
|
|
|
|
FileDownloadUrl string `json:"fileDownloadUrl"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type LoginResp struct {
|
|
|
|
Msg string `json:"msg"`
|
|
|
|
Result int `json:"result"`
|
|
|
|
ToUrl string `json:"toUrl"`
|
|
|
|
}
|
|
|
|
|
2021-11-15 12:15:25 +00:00
|
|
|
// Login refer to PanIndex
|
2021-11-27 11:40:36 +00:00
|
|
|
func (driver Cloud189) Login(account *model.Account) error {
|
2021-11-15 10:00:43 +00:00
|
|
|
client, ok := client189Map[account.Name]
|
|
|
|
if !ok {
|
2021-11-15 11:06:44 +00:00
|
|
|
//cookieJar, _ := cookiejar.New(&cookiejar.Options{PublicSuffixList: publicsuffix.List})
|
2021-11-15 10:00:43 +00:00
|
|
|
client = resty.New()
|
2021-11-15 11:06:44 +00:00
|
|
|
//client.SetCookieJar(cookieJar)
|
2021-11-15 10:00:43 +00:00
|
|
|
client.SetRetryCount(3)
|
2021-12-10 14:25:09 +00:00
|
|
|
client.SetHeader("Referer", "https://cloud.189.cn/")
|
2021-11-15 10:00:43 +00:00
|
|
|
}
|
|
|
|
url := "https://cloud.189.cn/api/portal/loginUrl.action?redirectURL=https%3A%2F%2Fcloud.189.cn%2Fmain.action"
|
2021-11-23 07:46:10 +00:00
|
|
|
b := ""
|
2021-11-15 10:00:43 +00:00
|
|
|
lt := ""
|
|
|
|
ltText := regexp.MustCompile(`lt = "(.+?)"`)
|
2021-11-23 07:46:10 +00:00
|
|
|
for i := 0; i < 3; i++ {
|
|
|
|
res, err := client.R().Get(url)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-01-06 10:45:07 +00:00
|
|
|
// 已经登陆
|
2022-01-08 09:19:11 +00:00
|
|
|
if res.RawResponse.Request.URL.String() == "https://cloud.189.cn/web/main" {
|
2022-01-06 10:45:07 +00:00
|
|
|
return nil
|
|
|
|
}
|
2021-11-23 07:46:10 +00:00
|
|
|
b = res.String()
|
|
|
|
ltTextArr := ltText.FindStringSubmatch(b)
|
|
|
|
if len(ltTextArr) > 0 {
|
|
|
|
lt = ltTextArr[1]
|
|
|
|
break
|
|
|
|
} else {
|
|
|
|
<-time.After(time.Second)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if lt == "" {
|
|
|
|
return fmt.Errorf("get empty login page")
|
2021-11-15 10:00:43 +00:00
|
|
|
}
|
|
|
|
captchaToken := regexp.MustCompile(`captchaToken' value='(.+?)'`).FindStringSubmatch(b)[1]
|
|
|
|
returnUrl := regexp.MustCompile(`returnUrl = '(.+?)'`).FindStringSubmatch(b)[1]
|
|
|
|
paramId := regexp.MustCompile(`paramId = "(.+?)"`).FindStringSubmatch(b)[1]
|
|
|
|
//reqId := regexp.MustCompile(`reqId = "(.+?)"`).FindStringSubmatch(b)[1]
|
|
|
|
jRsakey := regexp.MustCompile(`j_rsaKey" value="(\S+)"`).FindStringSubmatch(b)[1]
|
|
|
|
vCodeID := regexp.MustCompile(`picCaptcha\.do\?token\=([A-Za-z0-9\&\=]+)`).FindStringSubmatch(b)[1]
|
|
|
|
vCodeRS := ""
|
|
|
|
if vCodeID != "" {
|
|
|
|
// need ValidateCode
|
|
|
|
}
|
|
|
|
userRsa := RsaEncode([]byte(account.Username), jRsakey)
|
|
|
|
passwordRsa := RsaEncode([]byte(account.Password), jRsakey)
|
|
|
|
url = "https://open.e.189.cn/api/logbox/oauth2/loginSubmit.do"
|
|
|
|
var loginResp LoginResp
|
2021-11-23 07:46:10 +00:00
|
|
|
res, err := client.R().
|
2021-11-15 10:00:43 +00:00
|
|
|
SetHeaders(map[string]string{
|
2021-11-15 12:15:25 +00:00
|
|
|
"lt": lt,
|
|
|
|
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36",
|
|
|
|
"Referer": "https://open.e.189.cn/",
|
|
|
|
"accept": "application/json;charset=UTF-8",
|
|
|
|
}).SetFormData(map[string]string{
|
2021-11-15 10:00:43 +00:00
|
|
|
"appKey": "cloud",
|
|
|
|
"accountType": "01",
|
|
|
|
"userName": "{RSA}" + userRsa,
|
|
|
|
"password": "{RSA}" + passwordRsa,
|
|
|
|
"validateCode": vCodeRS,
|
|
|
|
"captchaToken": captchaToken,
|
|
|
|
"returnUrl": returnUrl,
|
|
|
|
"mailSuffix": "@pan.cn",
|
|
|
|
"paramId": paramId,
|
|
|
|
"clientType": "10010",
|
|
|
|
"dynamicCheck": "FALSE",
|
|
|
|
"cb_SaveName": "1",
|
|
|
|
"isOauth2": "false",
|
|
|
|
}).Post(url)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-01-03 12:25:22 +00:00
|
|
|
err = utils.Json.Unmarshal(res.Body(), &loginResp)
|
2021-11-15 10:00:43 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Error(err.Error())
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if loginResp.Result != 0 {
|
|
|
|
return fmt.Errorf(loginResp.Msg)
|
|
|
|
}
|
|
|
|
_, err = client.R().Get(loginResp.ToUrl)
|
|
|
|
if err != nil {
|
|
|
|
log.Errorf(err.Error())
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
client189Map[account.Name] = client
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type Cloud189Error struct {
|
|
|
|
ErrorCode string `json:"errorCode"`
|
|
|
|
ErrorMsg string `json:"errorMsg"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Cloud189File struct {
|
|
|
|
Id int64 `json:"id"`
|
|
|
|
LastOpTime string `json:"lastOpTime"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
Size int64 `json:"size"`
|
|
|
|
Icon struct {
|
|
|
|
SmallUrl string `json:"smallUrl"`
|
|
|
|
//LargeUrl string `json:"largeUrl"`
|
|
|
|
} `json:"icon"`
|
|
|
|
Url string `json:"url"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Cloud189Folder struct {
|
|
|
|
Id int64 `json:"id"`
|
|
|
|
LastOpTime string `json:"lastOpTime"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Cloud189Files struct {
|
|
|
|
ResCode int `json:"res_code"`
|
|
|
|
ResMessage string `json:"res_message"`
|
|
|
|
FileListAO struct {
|
|
|
|
Count int `json:"count"`
|
|
|
|
FileList []Cloud189File `json:"fileList"`
|
|
|
|
FolderList []Cloud189Folder `json:"folderList"`
|
|
|
|
} `json:"fileListAO"`
|
|
|
|
}
|
|
|
|
|
2022-01-06 10:45:07 +00:00
|
|
|
func (driver Cloud189) isFamily(account *model.Account) bool {
|
|
|
|
return account.InternalType == "Family"
|
|
|
|
}
|
|
|
|
|
2021-11-27 11:40:36 +00:00
|
|
|
func (driver Cloud189) GetFiles(fileId string, account *model.Account) ([]Cloud189File, error) {
|
2021-11-15 10:00:43 +00:00
|
|
|
res := make([]Cloud189File, 0)
|
|
|
|
pageNum := 1
|
2022-01-06 10:45:07 +00:00
|
|
|
|
2021-11-15 10:00:43 +00:00
|
|
|
for {
|
|
|
|
var resp Cloud189Files
|
2022-01-06 10:45:07 +00:00
|
|
|
body, err := driver.Request("https://cloud.189.cn/api/open/file/listFiles.action", base.Get, map[string]string{
|
|
|
|
//"noCache": random(),
|
|
|
|
"pageSize": "60",
|
|
|
|
"pageNum": strconv.Itoa(pageNum),
|
|
|
|
"mediaType": "0",
|
|
|
|
"folderId": fileId,
|
|
|
|
"iconOption": "5",
|
|
|
|
"orderBy": account.OrderBy,
|
|
|
|
"descending": account.OrderDirection,
|
|
|
|
}, nil, nil, account)
|
2021-11-15 10:00:43 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2022-01-06 10:45:07 +00:00
|
|
|
err = utils.Json.Unmarshal(body, &resp)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2021-11-15 10:00:43 +00:00
|
|
|
}
|
|
|
|
if resp.ResCode != 0 {
|
|
|
|
return nil, fmt.Errorf(resp.ResMessage)
|
|
|
|
}
|
|
|
|
if resp.FileListAO.Count == 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
for _, folder := range resp.FileListAO.FolderList {
|
|
|
|
res = append(res, Cloud189File{
|
|
|
|
Id: folder.Id,
|
|
|
|
LastOpTime: folder.LastOpTime,
|
|
|
|
Name: folder.Name,
|
|
|
|
Size: -1,
|
|
|
|
})
|
|
|
|
}
|
2022-01-01 11:48:59 +00:00
|
|
|
res = append(res, resp.FileListAO.FileList...)
|
2021-11-15 10:00:43 +00:00
|
|
|
pageNum++
|
|
|
|
}
|
|
|
|
return res, nil
|
|
|
|
}
|
|
|
|
|
2022-01-06 10:45:07 +00:00
|
|
|
func (driver Cloud189) Request(url string, method int, query, form map[string]string, headers map[string]string, account *model.Account) ([]byte, error) {
|
2021-12-10 14:25:09 +00:00
|
|
|
client, ok := client189Map[account.Name]
|
|
|
|
if !ok {
|
|
|
|
return nil, fmt.Errorf("can't find [%s] client", account.Name)
|
|
|
|
}
|
|
|
|
//var resp base.Json
|
2022-01-06 10:45:07 +00:00
|
|
|
if driver.isFamily(account) {
|
|
|
|
url = strings.Replace(url, "/api/open", "/api/open/family", 1)
|
|
|
|
if query != nil {
|
|
|
|
query["familyId"] = account.SiteId
|
|
|
|
}
|
|
|
|
if form != nil {
|
|
|
|
form["familyId"] = account.SiteId
|
|
|
|
}
|
|
|
|
}
|
2021-12-10 14:25:09 +00:00
|
|
|
var e Cloud189Error
|
|
|
|
req := client.R().SetError(&e).
|
|
|
|
SetHeader("Accept", "application/json;charset=UTF-8").
|
|
|
|
SetQueryParams(map[string]string{
|
|
|
|
"noCache": random(),
|
|
|
|
})
|
2022-01-06 10:45:07 +00:00
|
|
|
if query != nil {
|
|
|
|
req = req.SetQueryParams(query)
|
|
|
|
}
|
2021-12-10 14:25:09 +00:00
|
|
|
if form != nil {
|
|
|
|
req = req.SetFormData(form)
|
|
|
|
}
|
|
|
|
if headers != nil {
|
|
|
|
req = req.SetHeaders(headers)
|
|
|
|
}
|
|
|
|
var err error
|
|
|
|
var res *resty.Response
|
2022-01-06 10:45:07 +00:00
|
|
|
switch method {
|
|
|
|
case base.Get:
|
2021-12-10 14:25:09 +00:00
|
|
|
res, err = req.Get(url)
|
2022-01-06 10:45:07 +00:00
|
|
|
case base.Post:
|
2021-12-10 14:25:09 +00:00
|
|
|
res, err = req.Post(url)
|
2022-01-06 10:45:07 +00:00
|
|
|
default:
|
|
|
|
return nil, base.ErrNotSupport
|
2021-12-10 14:25:09 +00:00
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2022-01-06 10:45:07 +00:00
|
|
|
log.Debug(res.String())
|
2021-12-10 14:25:09 +00:00
|
|
|
if e.ErrorCode != "" {
|
|
|
|
if e.ErrorCode == "InvalidSessionKey" {
|
|
|
|
err = driver.Login(account)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2022-01-06 10:45:07 +00:00
|
|
|
return driver.Request(url, method, query, form, nil, account)
|
2021-12-10 14:25:09 +00:00
|
|
|
}
|
|
|
|
}
|
2022-01-01 11:48:59 +00:00
|
|
|
if jsoniter.Get(res.Body(), "res_code").ToInt() != 0 {
|
|
|
|
err = errors.New(jsoniter.Get(res.Body(), "res_message").ToString())
|
2021-12-10 14:25:09 +00:00
|
|
|
}
|
|
|
|
return res.Body(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (driver Cloud189) GetSessionKey(account *model.Account) (string, error) {
|
2022-01-06 10:45:07 +00:00
|
|
|
resp, err := driver.Request("https://cloud.189.cn/v2/getUserBriefInfo.action", base.Get, nil, nil, nil, account)
|
2021-12-10 14:25:09 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
return jsoniter.Get(resp, "sessionKey").ToString(), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (driver Cloud189) GetResKey(account *model.Account) (string, string, error) {
|
2022-01-06 10:45:07 +00:00
|
|
|
resp, err := driver.Request("https://cloud.189.cn/api/security/generateRsaKey.action", base.Get, nil, nil, nil, account)
|
2021-12-10 14:25:09 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", "", err
|
|
|
|
}
|
|
|
|
return jsoniter.Get(resp, "pubKey").ToString(), jsoniter.Get(resp, "pkId").ToString(), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (driver Cloud189) UploadRequest(url string, form map[string]string, account *model.Account) ([]byte, error) {
|
|
|
|
sessionKey, err := driver.GetSessionKey(account)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
pubKey, pkId, err := driver.GetResKey(account)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2022-01-08 11:31:12 +00:00
|
|
|
xRId := uuid.New().String()
|
|
|
|
pkey := strings.ReplaceAll(xRId, "-", "")[:mathRand.Intn(16)+16]
|
2021-12-10 14:25:09 +00:00
|
|
|
params := aesEncrypt(qs(form), pkey[:16])
|
|
|
|
date := strconv.FormatInt(time.Now().Unix(), 10)
|
|
|
|
signature := hmacSha1(fmt.Sprintf("SessionKey=%s&Operate=GET&RequestURI=%s&Date=%s¶ms=%s", sessionKey, url, date, params), pkey)
|
|
|
|
encryptionText := RsaEncode([]byte(pkey), pubKey)
|
2022-01-08 11:31:12 +00:00
|
|
|
headers := map[string]string{
|
2021-12-10 14:25:09 +00:00
|
|
|
"signature": signature,
|
|
|
|
"sessionKey": sessionKey,
|
|
|
|
"encryptionText": encryptionText,
|
|
|
|
"pkId": pkId,
|
|
|
|
"x-request-id": xRId,
|
|
|
|
"x-request-date": date,
|
|
|
|
"origin": "https://cloud.189.cn",
|
|
|
|
"referer": "https://cloud.189.cn/",
|
2022-01-08 11:31:12 +00:00
|
|
|
}
|
|
|
|
log.Debugf("%+v\n%s", headers, params)
|
|
|
|
res, err := base.RestyClient.R().SetHeaders(headers).SetQueryParam("params", params).Get("https://upload.cloud.189.cn" + url)
|
2021-12-10 14:25:09 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
log.Debug(res.String())
|
|
|
|
data := res.Body()
|
|
|
|
if jsoniter.Get(data, "code").ToString() != "SUCCESS" {
|
|
|
|
return nil, errors.New(jsoniter.Get(data, "msg").ToString())
|
|
|
|
}
|
|
|
|
return data, nil
|
|
|
|
}
|
|
|
|
|
2022-01-08 11:31:12 +00:00
|
|
|
// Upload Error: decrypt encryptionText failed
|
|
|
|
func (driver Cloud189) NewUpload(file *model.FileStream, account *model.Account) error {
|
|
|
|
const DEFAULT uint64 = 10485760
|
|
|
|
var count = int64(math.Ceil(float64(file.GetSize()) / float64(DEFAULT)))
|
|
|
|
var finish uint64 = 0
|
|
|
|
parentFile, err := driver.File(file.ParentPath, account)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if !parentFile.IsDir() {
|
|
|
|
return base.ErrNotFolder
|
|
|
|
}
|
|
|
|
res, err := driver.UploadRequest("/person/initMultiUpload", map[string]string{
|
|
|
|
"parentFolderId": parentFile.Id,
|
|
|
|
"fileName": file.Name,
|
|
|
|
"fileSize": strconv.FormatInt(int64(file.Size), 10),
|
|
|
|
"sliceSize": strconv.FormatInt(int64(DEFAULT), 10),
|
|
|
|
"lazyCheck": "1",
|
|
|
|
}, account)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
uploadFileId := jsoniter.Get(res, "data.uploadFileId").ToString()
|
|
|
|
var i int64
|
|
|
|
var byteSize uint64
|
|
|
|
md5s := make([]string, 0)
|
|
|
|
md5Sum := md5.New()
|
|
|
|
for i = 1; i <= count; i++ {
|
|
|
|
byteSize = file.GetSize() - finish
|
|
|
|
if DEFAULT < byteSize {
|
|
|
|
byteSize = DEFAULT
|
|
|
|
}
|
|
|
|
log.Debugf("%d,%d", byteSize, finish)
|
|
|
|
byteData := make([]byte, byteSize)
|
|
|
|
n, err := io.ReadFull(file, byteData)
|
|
|
|
log.Debug(err, n)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
finish += uint64(n)
|
|
|
|
md5Bytes := getMd5(byteData)
|
|
|
|
md5Str := hex.EncodeToString(md5Bytes)
|
|
|
|
md5Base64 := base64.StdEncoding.EncodeToString(md5Bytes)
|
|
|
|
md5s = append(md5s, md5Str)
|
|
|
|
md5Sum.Write(byteData)
|
|
|
|
res, err = driver.UploadRequest("/person/getMultiUploadUrls", map[string]string{
|
|
|
|
"partInfo": fmt.Sprintf("%s-%s", strconv.FormatInt(i, 10), md5Base64),
|
|
|
|
"uploadFileId": uploadFileId,
|
|
|
|
}, account)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
uploadData := jsoniter.Get(res, "uploadUrls.partNumber_"+strconv.FormatInt(i, 10))
|
|
|
|
headers := strings.Split(uploadData.Get("requestHeader").ToString(), "&")
|
|
|
|
req, err := http.NewRequest("PUT", uploadData.Get("requestURL").ToString(), bytes.NewBuffer(byteData))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
for _, header := range headers {
|
|
|
|
kv := strings.Split(header, "=")
|
|
|
|
req.Header.Set(kv[0], strings.Join(kv[1:], "="))
|
|
|
|
}
|
|
|
|
res, err := base.HttpClient.Do(req)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
log.Debugf("%+v", res)
|
|
|
|
}
|
|
|
|
id := md5Sum.Sum(nil)
|
|
|
|
res, err = driver.UploadRequest("/person/commitMultiUploadFile", map[string]string{
|
|
|
|
"uploadFileId": uploadFileId,
|
|
|
|
"fileMd5": hex.EncodeToString(id),
|
|
|
|
"sliceMd5": utils.GetMD5Encode(strings.Join(md5s, "\n")),
|
|
|
|
"lazyCheck": "1",
|
|
|
|
}, account)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-11-15 10:00:43 +00:00
|
|
|
func random() string {
|
|
|
|
return fmt.Sprintf("0.%17v", mathRand.New(mathRand.NewSource(time.Now().UnixNano())).Int63n(100000000000000000))
|
|
|
|
}
|
|
|
|
|
|
|
|
func RsaEncode(origData []byte, j_rsakey string) string {
|
|
|
|
publicKey := []byte("-----BEGIN PUBLIC KEY-----\n" + j_rsakey + "\n-----END PUBLIC KEY-----")
|
|
|
|
block, _ := pem.Decode(publicKey)
|
|
|
|
pubInterface, _ := x509.ParsePKIXPublicKey(block.Bytes)
|
|
|
|
pub := pubInterface.(*rsa.PublicKey)
|
|
|
|
b, err := rsa.EncryptPKCS1v15(rand.Reader, pub, origData)
|
|
|
|
if err != nil {
|
|
|
|
log.Errorf("err: %s", err.Error())
|
|
|
|
}
|
|
|
|
return b64tohex(base64.StdEncoding.EncodeToString(b))
|
|
|
|
}
|
|
|
|
|
|
|
|
var b64map = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"
|
|
|
|
|
|
|
|
var BI_RM = "0123456789abcdefghijklmnopqrstuvwxyz"
|
|
|
|
|
|
|
|
func int2char(a int) string {
|
|
|
|
return strings.Split(BI_RM, "")[a]
|
|
|
|
}
|
|
|
|
|
|
|
|
func b64tohex(a string) string {
|
|
|
|
d := ""
|
|
|
|
e := 0
|
|
|
|
c := 0
|
|
|
|
for i := 0; i < len(a); i++ {
|
|
|
|
m := strings.Split(a, "")[i]
|
|
|
|
if m != "=" {
|
|
|
|
v := strings.Index(b64map, m)
|
|
|
|
if 0 == e {
|
|
|
|
e = 1
|
|
|
|
d += int2char(v >> 2)
|
|
|
|
c = 3 & v
|
|
|
|
} else if 1 == e {
|
|
|
|
e = 2
|
|
|
|
d += int2char(c<<2 | v>>4)
|
|
|
|
c = 15 & v
|
|
|
|
} else if 2 == e {
|
|
|
|
e = 3
|
|
|
|
d += int2char(c)
|
|
|
|
d += int2char(v >> 2)
|
|
|
|
c = 3 & v
|
|
|
|
} else {
|
|
|
|
e = 0
|
|
|
|
d += int2char(c<<2 | v>>4)
|
|
|
|
d += int2char(15 & v)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if e == 1 {
|
|
|
|
d += int2char(c << 2)
|
|
|
|
}
|
|
|
|
return d
|
|
|
|
}
|
2021-11-27 12:20:14 +00:00
|
|
|
|
2021-12-10 14:25:09 +00:00
|
|
|
func qs(form map[string]string) string {
|
|
|
|
strList := make([]string, 0)
|
|
|
|
for k, v := range form {
|
|
|
|
strList = append(strList, fmt.Sprintf("%s=%s", k, url.QueryEscape(v)))
|
|
|
|
}
|
|
|
|
return strings.Join(strList, "&")
|
|
|
|
}
|
|
|
|
|
|
|
|
func aesEncrypt(data, key string) string {
|
|
|
|
encrypted := AesEncryptECB([]byte(data), []byte(key))
|
|
|
|
//return string(encrypted)
|
|
|
|
return hex.EncodeToString(encrypted)
|
|
|
|
}
|
|
|
|
|
|
|
|
func hmacSha1(data string, secret string) string {
|
|
|
|
h := hmac.New(sha1.New, []byte(secret))
|
|
|
|
h.Write([]byte(data))
|
|
|
|
return hex.EncodeToString(h.Sum(nil))
|
|
|
|
}
|
|
|
|
|
|
|
|
func AesEncryptECB(origData []byte, key []byte) (encrypted []byte) {
|
|
|
|
cipher, _ := aes.NewCipher(generateKey(key))
|
|
|
|
length := (len(origData) + aes.BlockSize) / aes.BlockSize
|
|
|
|
plain := make([]byte, length*aes.BlockSize)
|
|
|
|
copy(plain, origData)
|
|
|
|
pad := byte(len(plain) - len(origData))
|
|
|
|
for i := len(origData); i < len(plain); i++ {
|
|
|
|
plain[i] = pad
|
|
|
|
}
|
|
|
|
encrypted = make([]byte, len(plain))
|
|
|
|
// 分组分块加密
|
|
|
|
for bs, be := 0, cipher.BlockSize(); bs <= len(origData); bs, be = bs+cipher.BlockSize(), be+cipher.BlockSize() {
|
|
|
|
cipher.Encrypt(encrypted[bs:be], plain[bs:be])
|
|
|
|
}
|
|
|
|
|
|
|
|
return encrypted
|
|
|
|
}
|
|
|
|
func AesDecryptECB(encrypted []byte, key []byte) (decrypted []byte) {
|
|
|
|
cipher, _ := aes.NewCipher(generateKey(key))
|
|
|
|
decrypted = make([]byte, len(encrypted))
|
|
|
|
//
|
|
|
|
for bs, be := 0, cipher.BlockSize(); bs < len(encrypted); bs, be = bs+cipher.BlockSize(), be+cipher.BlockSize() {
|
|
|
|
cipher.Decrypt(decrypted[bs:be], encrypted[bs:be])
|
|
|
|
}
|
|
|
|
|
|
|
|
trim := 0
|
|
|
|
if len(decrypted) > 0 {
|
|
|
|
trim = len(decrypted) - int(decrypted[len(decrypted)-1])
|
|
|
|
}
|
|
|
|
|
|
|
|
return decrypted[:trim]
|
|
|
|
}
|
|
|
|
func generateKey(key []byte) (genKey []byte) {
|
|
|
|
genKey = make([]byte, 16)
|
|
|
|
copy(genKey, key)
|
|
|
|
for i := 16; i < len(key); {
|
|
|
|
for j := 0; j < 16 && i < len(key); j, i = j+1, i+1 {
|
|
|
|
genKey[j] ^= key[i]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return genKey
|
|
|
|
}
|
|
|
|
|
|
|
|
func getMd5(data []byte) []byte {
|
|
|
|
h := md5.New()
|
|
|
|
h.Write(data)
|
|
|
|
return h.Sum(nil)
|
|
|
|
}
|
|
|
|
|
2021-11-27 12:20:14 +00:00
|
|
|
func init() {
|
2021-12-06 07:55:05 +00:00
|
|
|
base.RegisterDriver(&Cloud189{})
|
2021-11-27 12:20:14 +00:00
|
|
|
client189Map = make(map[string]*resty.Client, 0)
|
2021-12-10 14:25:09 +00:00
|
|
|
}
|