forked from Ecalose/hbookerlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi.go
161 lines (138 loc) · 6.15 KB
/
api.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
package hbookerLib
import (
"fmt"
"github.com/AlexiaVeronica/hbookerLib/hbookermodel"
"github.com/AlexiaVeronica/hbookerLib/urlconstants"
"github.com/AlexiaVeronica/req/v3"
"strconv"
"strings"
"time"
)
type Request[T any] struct {
HttpRequest *req.Request
}
func (request *Request[T]) handleResponse(url string, formData map[string]string) (*T, error) {
res, err := request.HttpRequest.SetFormData(formData).Post(url)
if err != nil {
return nil, err
}
if res == nil {
return nil, fmt.Errorf("response is nil")
}
data := new(T)
if err = res.UnmarshalJson(data); err != nil {
return nil, err
}
if response, ok := any(data).(interface {
GetCode() string
GetTip() string
IsSuccess() bool
}); ok && !response.IsSuccess() {
return nil, fmt.Errorf("error: %s", response.GetTip())
} else if !ok {
return nil, fmt.Errorf("response does not implement required methods")
}
return data, nil
}
func newRequest[T any](HttpRequest *req.Request) *Request[T] {
return &Request[T]{HttpRequest: HttpRequest}
}
func (client *Client) API() *API {
if client.debug {
client.HttpsClient.DevMode()
}
if client.outputDebug {
client.HttpsClient.EnableDumpAllToFile("hbookerLib_debug.log")
}
if client.proxyURL != "" {
client.HttpsClient.SetProxyURL(client.proxyURL)
}
httpRequest := client.HttpsClient.
SetCommonRetryCount(client.retryCount).
SetBaseURL(client.baseURL).
SetResponseBodyTransformer(func(rawBody []byte, _ *req.Request, _ *req.Response) ([]byte, error) {
return aesDecrypt(string(rawBody), client.apiKey)
}).R()
if strings.Contains(client.Authenticate.DeviceToken, deviceIosToken) {
client.Authenticate.SetRandStr(randString())
client.Authenticate.SetRefresh("1")
client.Authenticate.SetTimestamp(strconv.FormatInt(time.Now().UnixNano()/1e6, 10))
client.Authenticate.SetSignatures(IosSignaturesKey)
httpRequest.SetHeader("User-Agent", fmt.Sprintf(iosUserAgent, client.Authenticate.AppVersion))
} else {
SetNewVersionP(client.Authenticate)
httpRequest.SetHeader("User-Agent", fmt.Sprintf(androidUserAgent, client.Authenticate.AppVersion))
}
return &API{HttpRequest: httpRequest}
}
func (api *API) GetBookInfo(bookId string) (*hbookermodel.Detail, error) {
data := map[string]string{"book_id": bookId}
return newRequest[hbookermodel.Detail](api.HttpRequest).handleResponse(urlconstants.GetInfoById, data)
}
func (api *API) DeleteValue(deleteValue string) *API {
if api.HttpRequest.FormData != nil {
delete(api.HttpRequest.FormData, deleteValue)
}
return api
}
func (api *API) GetUserInfo() (*hbookermodel.UserInfo, error) {
return newRequest[hbookermodel.UserInfo](api.HttpRequest).handleResponse(urlconstants.MyDetailsInfo, nil)
}
func (api *API) GetDivisionListByBookId(bookId string) (*hbookermodel.Division, error) {
data := map[string]string{"book_id": bookId}
return newRequest[hbookermodel.Division](api.HttpRequest).handleResponse(urlconstants.GetUpdatedChapterByDivisionNew, data)
}
func (api *API) GetChapterCmd(chapterId string) (*hbookermodel.ChapterCmd, error) {
data := map[string]string{"chapter_id": chapterId}
return newRequest[hbookermodel.ChapterCmd](api.HttpRequest).handleResponse(urlconstants.GetChapterCmd, data)
}
func (api *API) GetCptIfm(chapterId, chapterKey string) (*hbookermodel.ChapterInfo, error) {
data := map[string]string{"chapter_id": chapterId, "chapter_command": chapterKey}
content, err := newRequest[hbookermodel.Content](api.HttpRequest).handleResponse(urlconstants.GetCptIfm, data)
if err != nil {
return nil, err
}
contentRaw, err := aesDecrypt(content.Data.ChapterInfo.TxtContent, chapterKey)
if err != nil {
return nil, fmt.Errorf("aesDecrypt error: %v", err)
}
content.Data.ChapterInfo.TxtContent = string(contentRaw)
return &content.Data.ChapterInfo, nil
}
// Deprecated: MySignLogin is deprecated, hbooker has joined login verification, so this method is no longer available
func (api *API) MySignLogin(username, password, validate, challenge string) (*hbookermodel.Login, error) {
data := map[string]string{"login_name": username, "passwd": password}
if validate != "" {
data["geetest_seccode"] = validate + "|jordan"
data["geetest_validate"] = validate
data["geetest_challenge"] = challenge
}
return newRequest[hbookermodel.Login](api.HttpRequest).handleResponse(urlconstants.MySignLogin, data)
}
func (api *API) GetBuyChapterAPI(chapterId string) (*hbookermodel.ContentBuy, error) {
data := map[string]string{"chapter_id": chapterId, "shelf_id": ""}
return newRequest[hbookermodel.ContentBuy](api.HttpRequest).handleResponse(urlconstants.ChapterBuy, data)
}
func (api *API) GetAutoSignAPI(device string) (*hbookermodel.Register, error) {
data := map[string]string{"uuid": "android" + device, "gender": "1", "channel": "PCdownloadC"}
return newRequest[hbookermodel.Register](api.HttpRequest).handleResponse(urlconstants.SIGNUP, data)
}
func (api *API) GetUseGeetestAPI(loginName string) (*hbookermodel.Geetest, error) {
data := map[string]string{"login_name": loginName}
return newRequest[hbookermodel.Geetest](api.HttpRequest).handleResponse(urlconstants.UseGeetest, data)
}
func (api *API) GetGeetestRegisterAPI(UserID string) (*hbookermodel.GeetestFirstRegisterStruct, error) {
data := map[string]string{"user_id": UserID, "t": strconv.FormatInt(time.Now().UnixNano()/1e6, 10)}
return newRequest[hbookermodel.GeetestFirstRegisterStruct](api.HttpRequest).handleResponse(urlconstants.GeetestRegister, data)
}
func (api *API) GetBookcaseAPI(shelfId string) (*hbookermodel.Bookcase, error) {
data := map[string]string{"shelf_id": shelfId, "direction": "prev", "last_mod_time": "0"}
return newRequest[hbookermodel.Bookcase](api.HttpRequest).handleResponse(urlconstants.BookshelfGetShelfBookList, data)
}
func (api *API) GetBookShelfInfoAPI() (*hbookermodel.Bookshelf, error) {
return newRequest[hbookermodel.Bookshelf](api.HttpRequest).handleResponse(urlconstants.BookshelfGetShelfList, nil)
}
func (api *API) GetSearchBooksAPI(keyword string, page any) (*hbookermodel.Search, error) {
data := map[string]string{"count": "10", "page": fmt.Sprintf("%v", page), "category_index": "0", "key": keyword}
return newRequest[hbookermodel.Search](api.HttpRequest).handleResponse(urlconstants.GetFilterSearchBookList, data)
}