-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmojang.go
86 lines (73 loc) · 2.19 KB
/
mojang.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
package server
import (
"bytes"
"crypto/md5"
"encoding/hex"
"fmt"
"io/ioutil"
"net/http"
)
const API_URL = "https://api.mojang.com/"
const SESSION_URL = "https://sessionserver.mojang.com/"
func UsernameToUUID(userName string) MojangResponse {
URL := API_URL + "users/profiles/minecraft/" + userName
return mojangGet(URL)
}
func UsernamesToUUIDs(jsonData []byte) MojangResponse {
URL := API_URL + "profiles/minecraft"
return mojangPost(URL, jsonData)
}
func UuidToName(uuid string, action string) MojangResponse {
URL := API_URL + "user/profiles/" + uuid + "/" + action
return mojangGet(URL)
}
// This endpoint has been deprecated by Mojang and was removed on 13 September 2022 at 9:25 AM CET to "improve player safety and data privacy"
func UuidToNameHistory(uuid string) MojangResponse {
return UuidToName(uuid, "names")
}
func UuidToProfile(uuid string, unsigned string) MojangResponse {
URL := SESSION_URL + "session/minecraft/profile/" + uuid + "?unsigned=" + unsigned
return mojangGet(URL)
}
func HasJoined(userName string, serverId string) MojangResponse {
URL := SESSION_URL + fmt.Sprintf("session/minecraft/hasJoined?username=%s&serverId=%s", userName, serverId)
return mojangGet(URL)
}
func BlockedServers() MojangResponse {
URL := SESSION_URL + "blockedservers"
return mojangGet(URL)
}
type MojangResponse struct {
Code int `json:"code"`
Json string `json:"json"`
}
func mojangGet(URL string) MojangResponse {
key := URL
cache := HasCache(key)
if cache.HasCache {
return cache.Response
}
resp, err := http.Get(URL)
return SaveCache(key, mojangResponse(resp, err)).Response
}
func mojangPost(URL string, jsonData []byte) MojangResponse {
hashData := hex.EncodeToString(md5.New().Sum(jsonData))
key := URL + hashData
cache := HasCache(key)
if cache.HasCache {
return cache.Response
}
resp, err := http.Post(URL, "application/json", bytes.NewBuffer(jsonData))
return SaveCache(key, mojangResponse(resp, err)).Response
}
func mojangResponse(resp *http.Response, err error) MojangResponse {
if err != nil {
fmt.Println(err)
}
defer resp.Body.Close()
b, err := ioutil.ReadAll(resp.Body)
if err != nil {
fmt.Println(err)
}
return MojangResponse{resp.StatusCode, string(b)}
}