-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathxuanim.go
92 lines (75 loc) · 1.68 KB
/
xuanim.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
// AGPL License
// Copyright (c) 2023 ysicing <[email protected]>
package xuanim
import (
"fmt"
"net/url"
"github.com/imroc/req/v3"
)
const (
userAgent = "go-xuanim"
)
type Client struct {
client *req.Client
baseURL *url.URL
Token string // token
Caller string // caller 机器人
Custom bool // 是否定制
Notification *NotificationService
}
func New(token, caller string, options ...ClientOptionFunc) (*Client, error) {
client := &Client{}
client.client = req.C().SetLogger(nil)
client.setReqUserAgent(userAgent)
for _, fn := range options {
if fn == nil {
continue
}
if err := fn(client); err != nil {
return nil, err
}
}
client.Caller = caller
client.Token = token
client.Notification = &NotificationService{client: client}
return client, nil
}
func (c *Client) setBaseURL(urlStr string) error {
baseURL, err := url.Parse(urlStr)
if err != nil {
return err
}
// Update the base URL of the client.
c.baseURL = baseURL
return nil
}
func (c *Client) setDebug() error {
c.client.EnableDebugLog()
return nil
}
func (c *Client) setDumpAll() error {
c.client.EnableDumpAll()
return nil
}
func (c *Client) setDisableProxy() error {
c.client.SetProxy(nil)
return nil
}
func (c *Client) setReqUserAgent(ua string) error {
c.client.SetUserAgent(ua)
return nil
}
func (c *Client) setCustom(custom bool) error {
c.Custom = custom
return nil
}
func (c *Client) CustomRequestURL(path, t string) string {
u := *c.baseURL
u.Path = c.baseURL.Path + path
return fmt.Sprintf("%s?m=im&f=%s&code=%s&token=%s", u.String(), t, c.Caller, c.Token)
}
func (c *Client) RequestURL(path string) string {
u := *c.baseURL
u.Path = c.baseURL.Path + path
return u.String()
}