-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstructs.go
122 lines (103 loc) · 2.7 KB
/
structs.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
package gosolver
const (
CapsolverBaseURL = "https://api.capsolver.com"
CapmonsterBaseURL = "https://api.capmonster.cloud"
TwoCaptchaBaseURL = "https://api.2captcha.com/"
)
type SolverData struct {
ClientKey string
Service string
UA string
Proxy string
WebURL string
SiteKey string
RQData string
RQToken string
}
type CapmonsterTask struct {
Type string `json:"type"`
WebsiteURL string `json:"websiteURL"`
WebsiteKey string `json:"websiteKey"`
}
type Capmonster struct {
Key string `json:"clientKey"`
Task CapmonsterTask `json:"task"`
}
type HCaptchaTask struct {
Type string `json:"type"`
WebsiteURL string `json:"websiteURL"`
WebsiteKey string `json:"websiteKey"`
IsInvisible bool `json:"isInvisible"`
EnterprisePayload struct {
Rqdata string `json:"rqdata"`
} `json:"enterprisePayload"`
Proxy string `json:"proxy"`
GetCaptcha string `json:"getCaptcha"`
UserAgent string `json:"userAgent"`
}
type TaskPayload struct {
ClientKey string `json:"clientKey"`
Task HCaptchaTask `json:"task"`
}
type TaskResponse interface {
GetErrorID() int
GetTaskID() interface{}
}
type CreatedCapS struct {
ErrorID int `json:"errorId"`
TaskID string `json:"taskId"`
Status string `json:"status"`
}
func (c *CreatedCapS) GetErrorID() int {
return c.ErrorID
}
func (c *CreatedCapS) GetTaskID() interface{} {
return c.TaskID
}
type CreatedCapM struct {
ErrorID int `json:"errorId"`
TaskID int `json:"taskId"`
}
func (c *CreatedCapM) GetErrorID() int {
return c.ErrorID
}
func (c *CreatedCapM) GetTaskID() interface{} {
return c.TaskID
}
type Error struct {
Error int `json:"errorId"`
ErrorCode string `json:"errorCode"`
ErrorDescription string `json:"errorDescription"`
}
type TaskResult struct {
Key string
TaskID string
}
type FinishedTaskCapSolver struct {
Err int `json:"errorId"`
ErrCode int `json:"errorCode"`
ErrDescription string `json:"errorDescription"`
Solution struct {
CaptchaKey string `json:"captchaKey"`
CaptchaResp string `json:"gRecaptchaResponse"`
}
Status string `json:"status"`
}
type Context struct {
CapKey string
CapResp string
CapStatus string
}
type Result struct {
Captchakey string
CaptchaResponse string
}
type FinishedTaskCapMonster struct {
Err int `json:"errorId"`
Status string `json:"status"`
Sol struct {
GRecaptchaResponse string `json:"gRecaptchaResponse"`
RespKey string `json:"respKey"`
UserAgent string `json:"userAgent"`
} `json:"solution"`
}