Skip to content

Commit 1eca2b8

Browse files
authoredJan 12, 2023
perf(terabox): optimize prompt message (#3002)
* perf(terabox):prompt login status when init the driver * docs:add Terabox * perf(terabox):prompt area is not available * style(terabox): del else
1 parent 48e6f3b commit 1eca2b8

File tree

4 files changed

+37
-15
lines changed

4 files changed

+37
-15
lines changed
 

‎README.md

+1
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ English | [中文](./README_cn.md) | [Contributing](./CONTRIBUTING.md) | [CODE_O
6161
- [x] [139yun](https://yun.139.com/) (Personal, Family)
6262
- [x] [YandexDisk](https://disk.yandex.com/)
6363
- [x] [BaiduNetdisk](http://pan.baidu.com/)
64+
- [x] [Terabox](https://www.terabox.com/main)
6465
- [x] [Quark](https://pan.quark.cn)
6566
- [x] [Thunder](https://pan.xunlei.com)
6667
- [x] [Lanzou](https://www.lanzou.com/)

‎drivers/terabox/driver.go

+11-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import (
1111
log "github.com/sirupsen/logrus"
1212
"io"
1313
"math"
14-
"net/http"
1514
"os"
1615
stdpath "path"
1716
"strconv"
@@ -35,7 +34,17 @@ func (d *Terabox) GetAddition() driver.Additional {
3534
}
3635

3736
func (d *Terabox) Init(ctx context.Context) error {
38-
_, err := d.request("https://www.terabox.com/api/check/#", http.MethodGet, nil, nil)
37+
var resp CheckLoginResp
38+
_, err := d.get("/api/check/#", nil, &resp)
39+
if err != nil {
40+
return err
41+
}
42+
if resp.Errno != 0 {
43+
if resp.Errno == 9000 {
44+
return fmt.Errorf("terabox is not yet available in this area")
45+
}
46+
return fmt.Errorf("failed to check login status according to cookie")
47+
}
3948
return err
4049
}
4150

‎drivers/terabox/types.go

+11-7
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ type File struct {
3838
}
3939

4040
type ListResp struct {
41-
Errno int `json:"errno"`
42-
GuidInfo string `json:"guid_info"`
43-
List []File `json:"list"`
44-
RequestId int64 `json:"request_id"`
45-
Guid int `json:"guid"`
41+
Errno int `json:"errno"`
42+
GuidInfo string `json:"guid_info"`
43+
List []File `json:"list"`
44+
//RequestId int64 `json:"request_id"` 接口返回有时是int有时是string
45+
Guid int `json:"guid"`
4646
}
4747

4848
func fileToObj(f File) *model.ObjThumb {
@@ -70,7 +70,7 @@ type DownloadResp2 struct {
7070
Info []struct {
7171
Dlink string `json:"dlink"`
7272
} `json:"info"`
73-
RequestID int64 `json:"request_id"`
73+
//RequestID int64 `json:"request_id"`
7474
}
7575

7676
type HomeInfoResp struct {
@@ -88,5 +88,9 @@ type PrecreateResp struct {
8888
ReturnType int `json:"return_type"`
8989
BlockList []int `json:"block_list"`
9090
Errno int `json:"errno"`
91-
RequestId int64 `json:"request_id"`
91+
//RequestId int64 `json:"request_id"`
92+
}
93+
94+
type CheckLoginResp struct {
95+
Errno int `json:"errno"`
9296
}

‎drivers/terabox/util.go

+14-6
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,11 @@ import (
1717
func (d *Terabox) request(furl string, method string, callback base.ReqCallback, resp interface{}) ([]byte, error) {
1818
req := base.RestyClient.R()
1919
req.SetHeaders(map[string]string{
20-
"Cookie": d.Cookie,
21-
"Accept": "application/json, text/plain, */*",
22-
"Referer": "https://www.terabox.com/",
23-
"User-Agent": base.UserAgent,
20+
"Cookie": d.Cookie,
21+
"Accept": "application/json, text/plain, */*",
22+
"Referer": "https://www.terabox.com/",
23+
"User-Agent": base.UserAgent,
24+
"X-Requested-With": "XMLHttpRequest",
2425
})
2526
req.SetQueryParam("app_id", "250528")
2627
req.SetQueryParam("web", "1")
@@ -41,13 +42,17 @@ func (d *Terabox) request(furl string, method string, callback base.ReqCallback,
4142

4243
func (d *Terabox) get(pathname string, params map[string]string, resp interface{}) ([]byte, error) {
4344
return d.request("https://www.terabox.com"+pathname, http.MethodGet, func(req *resty.Request) {
44-
req.SetQueryParams(params)
45+
if params != nil {
46+
req.SetQueryParams(params)
47+
}
4548
}, resp)
4649
}
4750

4851
func (d *Terabox) post(pathname string, params map[string]string, data interface{}, resp interface{}) ([]byte, error) {
4952
return d.request("https://www.terabox.com"+pathname, http.MethodPost, func(req *resty.Request) {
50-
req.SetQueryParams(params)
53+
if params != nil {
54+
req.SetQueryParams(params)
55+
}
5156
req.SetBody(data)
5257
}, resp)
5358
}
@@ -73,6 +78,9 @@ func (d *Terabox) getFiles(dir string) ([]File, error) {
7378
if err != nil {
7479
return nil, err
7580
}
81+
if resp.Errno == 9000 {
82+
return nil, fmt.Errorf("terabox is not yet available in this area")
83+
}
7684
if len(resp.List) == 0 {
7785
break
7886
}

0 commit comments

Comments
 (0)