-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwebhook.go
118 lines (105 loc) · 2.29 KB
/
webhook.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
package main
import (
"bytes"
"fmt"
"net/http"
)
func SendSuccess(vanity string, time string) {
embed := []byte(fmt.Sprintf(`{
"content": "@everyone",
"embeds": [
{
"title": "SNIPED!",
"color": 65280,
"fields": [
{
"name": "Vanity",
"value": "%s"
},
{
"name": "Time Taken to attempt",
"value": "%s"
}
],
"thumbnail": {
"url": "https://m.media-amazon.com/images/I/71+XQ4SFqnL._AC_SL1500_.jpg"
}
}
],
"attachments": []
}`, vanity, time))
resp, err := http.Post(Config.Main.Webhook, "application/json", bytes.NewBuffer(embed))
if err != nil {
fmt.Println(err)
SendSuccess(vanity, time)
}
defer resp.Body.Close()
}
func SendRatelimit(vanity string, time string) {
embed := []byte(fmt.Sprintf(`{
"content": "@everyone",
"embeds": [
{
"title": "RATELIMITED",
"color": 16763904,
"fields": [
{
"name": "Vanity",
"value": "%s"
},
{
"name": "Time Taken to attempt",
"value": "%s"
}
],
"thumbnail": {
"url": "https://www.cambridge.org/elt/blog/wp-content/uploads/2019/07/Sad-Face-Emoji-480x480.png"
}
}
],
"attachments": []
}`, vanity, time))
resp, err := http.Post(Config.Main.Webhook, "application/json", bytes.NewBuffer(embed))
if err != nil {
fmt.Println(err)
SendSuccess(vanity, time)
}
defer resp.Body.Close()
}
func SendFail(vanity string, time string, statuscode string) {
embed := []byte(fmt.Sprintf(`{
"content": "@everyone",
"embeds": [
{
"title": "FAILED TO SNIPE",
"description": "Better luck next time",
"color": 16763904,
16711680
"fields": [
{
"name": "Vanity",
"value": "%s"
},
{
"name": "Time Taken to attempt",
"value": "%s"
},
{
"name": "Status Code",
"value": "%s"
}
],
"thumbnail": {
"url": "https://www.cambridge.org/elt/blog/wp-content/uploads/2019/07/Sad-Face-Emoji-480x480.png"
}
}
],
"attachments": []
}`, vanity, time, statuscode))
resp, err := http.Post(Config.Main.Webhook, "application/json", bytes.NewBuffer(embed))
if err != nil {
fmt.Println(err)
SendSuccess(vanity, time)
}
defer resp.Body.Close()
}