-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnotification.go
48 lines (43 loc) · 1.43 KB
/
notification.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
// AGPL License
// Copyright (c) 2023 ysicing <[email protected]>
package xuanim
import "github.com/imroc/req/v3"
type NotificationService struct {
client *Client
}
func (ns *NotificationService) SendUser(user SendUserNotification) (msgResp *MessageResp, resp *req.Response, err error) {
if ns.client.Custom {
resp, err = ns.client.client.R().
SetHeader("token", ns.client.Token).
SetHeader("caller", ns.client.Caller).
SetHeader("Content-Type", "application/json").
SetBody(&user).
SetResult(&msgResp).
Post(ns.client.RequestURL("/xuanxuan-notification.json"))
} else {
resp, err = ns.client.client.R().
SetHeader("Content-Type", "application/json").
SetBody(&user).
SetResult(msgResp).
Post(ns.client.CustomRequestURL("/x.php", "sendNotification"))
}
return msgResp, resp, err
}
func (ns *NotificationService) SendChat(chat SendGroupNotification) (msgResp *MessageResp, resp *req.Response, err error) {
if ns.client.Custom {
resp, err = ns.client.client.R().
SetHeader("token", ns.client.Token).
SetHeader("caller", ns.client.Caller).
SetHeader("Content-Type", "application/json").
SetBody(&chat).
SetResult(msgResp).
Post(ns.client.RequestURL("/xuanxuan-chat.json"))
} else {
resp, err = ns.client.client.R().
SetHeader("Content-Type", "application/json").
SetBody(&chat).
SetResult(msgResp).
Post(ns.client.CustomRequestURL("/x.php", "sendChatMessage"))
}
return msgResp, resp, err
}