forked from mcstatus-io/mcutil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vote.go
177 lines (140 loc) · 3.41 KB
/
vote.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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
package mcutil
import (
"bufio"
"bytes"
"context"
"crypto/hmac"
"crypto/sha256"
"encoding/base64"
"encoding/binary"
"encoding/json"
"errors"
"fmt"
"io"
"net"
"strings"
"time"
"github.com/mcstatus-io/mcutil/v2/options"
)
type voteMessage struct {
Payload string `json:"payload"`
Signature string `json:"signature"`
}
type votePayload struct {
ServiceName string `json:"serviceName"`
Username string `json:"username"`
Address string `json:"address"`
Timestamp int64 `json:"timestamp"`
Challenge string `json:"challenge"`
UUID string `json:"uuid,omitempty"`
}
type voteResponse struct {
Status string `json:"status"`
Error string `json:"error"`
}
// SendVote sends a Votifier vote to the specified Minecraft server
func SendVote(ctx context.Context, host string, port uint16, opts options.Vote) error {
e := make(chan error, 1)
go func() {
e <- sendVote(host, port, opts)
}()
select {
case <-ctx.Done():
if v := ctx.Err(); v != nil {
return v
}
return errors.New("context finished before server sent response")
case v := <-e:
return v
}
}
func sendVote(host string, port uint16, opts options.Vote) error {
conn, err := net.DialTimeout("tcp", fmt.Sprintf("%s:%d", host, port), opts.Timeout)
if err != nil {
return err
}
defer conn.Close()
r := bufio.NewReader(conn)
if err = conn.SetDeadline(time.Now().Add(opts.Timeout)); err != nil {
return err
}
var challenge string
// Handshake packet
// https://github.com/NuVotifier/NuVotifier/wiki/Technical-QA#handshake
{
data, err := r.ReadBytes('\n')
if err != nil {
return err
}
split := strings.Split(string(data[:len(data)-1]), " ")
if split[1] != "2" {
return fmt.Errorf("vote: unknown server Votifier version: %s", split[1])
}
challenge = split[2]
}
// Vote packet
// https://github.com/NuVotifier/NuVotifier/wiki/Technical-QA#protocol-v2
{
buf := &bytes.Buffer{}
payload := votePayload{
ServiceName: opts.ServiceName,
Username: opts.Username,
Address: fmt.Sprintf("%s:%d", host, port),
Timestamp: opts.Timestamp.UnixMilli(),
Challenge: challenge,
UUID: opts.UUID,
}
payloadData, err := json.Marshal(payload)
if err != nil {
return err
}
hash := hmac.New(sha256.New, []byte(opts.Token))
hash.Write(payloadData)
message := voteMessage{
Payload: string(payloadData),
Signature: base64.StdEncoding.EncodeToString(hash.Sum(nil)),
}
messageData, err := json.Marshal(message)
if err != nil {
return err
}
if err := binary.Write(buf, binary.BigEndian, uint16(0x733A)); err != nil {
return err
}
if err := binary.Write(buf, binary.BigEndian, uint16(len(messageData))); err != nil {
return err
}
if _, err := buf.Write(messageData); err != nil {
return err
}
if _, err := io.Copy(conn, buf); err != nil {
return err
}
}
// Response packet
// https://github.com/NuVotifier/NuVotifier/wiki/Technical-QA#protocol-v2
{
data, err := r.ReadBytes('\n')
if err != nil {
return err
}
response := voteResponse{}
if err = json.Unmarshal(data[:len(data)-1], &response); err != nil {
return err
}
switch response.Status {
case "ok":
{
return nil
}
case "error":
{
return fmt.Errorf("server returned error: %s", response.Error)
}
default:
{
return fmt.Errorf("vote: received unexpected server response (expected=ok, received=%s)", response.Status)
}
}
}
}