forked from unmojang/drasl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsession.go
203 lines (174 loc) · 5.15 KB
/
session.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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
package main
import (
"errors"
"github.com/labstack/echo/v4"
"gorm.io/gorm"
"log"
"net/http"
"net/url"
)
type sessionJoinRequest struct {
AccessToken string `json:"accessToken"`
SelectedProfile string `json:"selectedProfile"`
ServerID string `json:"serverId"`
}
// /session/minecraft/join
// https://wiki.vg/Protocol_Encryption#Client
func SessionJoin(app *App) func(c echo.Context) error {
return func(c echo.Context) error {
req := new(sessionJoinRequest)
if err := c.Bind(req); err != nil {
return err
}
client := app.GetClient(req.AccessToken, StalePolicyDeny)
if client == nil {
return c.JSONBlob(http.StatusForbidden, invalidAccessTokenBlob)
}
user := client.User
user.ServerID = MakeNullString(&req.ServerID)
result := app.DB.Save(&user)
if result.Error != nil {
return result.Error
}
return c.NoContent(http.StatusNoContent)
}
}
func fullProfile(app *App, user *User, uuid string, sign bool) (SessionProfileResponse, error) {
id, err := UUIDToID(uuid)
if err != nil {
return SessionProfileResponse{}, err
}
texturesProperty, err := GetSkinTexturesProperty(app, user, sign)
if err != nil {
return SessionProfileResponse{}, err
}
return SessionProfileResponse{
ID: id,
Name: user.PlayerName,
Properties: []SessionProfileProperty{texturesProperty},
}, nil
}
// /session/minecraft/hasJoined
// https://c4k3.github.io/wiki.vg/Protocol_Encryption.html#Server
func SessionHasJoined(app *App) func(c echo.Context) error {
return func(c echo.Context) error {
playerName := c.QueryParam("username")
serverID := c.QueryParam("serverId")
var user User
result := app.DB.First(&user, "player_name = ?", playerName)
if result.Error != nil && !errors.Is(result.Error, gorm.ErrRecordNotFound) {
if app.Config.TransientUsers.Allow && app.TransientUsernameRegex.MatchString(playerName) {
var err error
user, err = MakeTransientUser(app, playerName)
if err != nil {
return err
}
} else {
return c.NoContent(http.StatusForbidden)
}
}
if result.Error != nil || !user.ServerID.Valid || serverID != user.ServerID.String {
for _, fallbackAPIServer := range app.Config.FallbackAPIServers {
if fallbackAPIServer.DenyUnknownUsers && result.Error != nil {
// If DenyUnknownUsers is enabled and the player name is
// not known, don't query the fallback server.
continue
}
base, err := url.Parse(fallbackAPIServer.SessionURL)
if err != nil {
log.Println(err)
continue
}
base.Path += "/session/minecraft/hasJoined"
params := url.Values{}
params.Add("username", playerName)
params.Add("serverId", serverID)
base.RawQuery = params.Encode()
res, err := MakeHTTPClient().Get(base.String())
if err != nil {
log.Printf("Received invalid response from fallback API server at %s\n", base.String())
continue
}
defer res.Body.Close()
if res.StatusCode == http.StatusOK {
return c.Stream(http.StatusOK, res.Header.Get("Content-Type"), res.Body)
}
}
return c.NoContent(http.StatusForbidden)
}
profile, err := fullProfile(app, &user, user.UUID, true)
if err != nil {
return err
}
return c.JSON(http.StatusOK, profile)
}
}
// /session/minecraft/profile/:id
// https://wiki.vg/Mojang_API#UUID_to_Profile_and_Skin.2FCape
func SessionProfile(app *App) func(c echo.Context) error {
return func(c echo.Context) error {
id := c.Param("id")
uuid, err := IDToUUID(id)
if err != nil {
return c.JSON(http.StatusBadRequest, ErrorResponse{
ErrorMessage: Ptr("Not a valid UUID: " + c.Param("id")),
})
}
findUser := func() (*User, error) {
var user User
result := app.DB.First(&user, "uuid = ?", uuid)
if result.Error == nil {
return &user, nil
}
if !errors.Is(result.Error, gorm.ErrRecordNotFound) {
return nil, err
}
// Could be an offline UUID
if app.Config.OfflineSkins {
result = app.DB.First(&user, "offline_uuid = ?", uuid)
if result.Error == nil {
return &user, nil
}
if !errors.Is(result.Error, gorm.ErrRecordNotFound) {
return nil, err
}
}
return nil, nil
}
user, err := findUser()
if err != nil {
return err
}
if user == nil {
for _, fallbackAPIServer := range app.Config.FallbackAPIServers {
reqURL, err := url.JoinPath(fallbackAPIServer.SessionURL, "session/minecraft/profile", id)
if err != nil {
log.Println(err)
continue
}
res, err := app.CachedGet(reqURL+"?unsigned=false", fallbackAPIServer.CacheTTLSeconds)
if err != nil {
log.Printf("Couldn't access fallback API server at %s: %s\n", reqURL, err)
continue
}
if res.StatusCode == http.StatusOK {
return c.Blob(http.StatusOK, "application/json", res.BodyBytes)
}
}
return c.NoContent(http.StatusNoContent)
}
sign := c.QueryParam("unsigned") == "false"
profile, err := fullProfile(app, user, uuid, sign)
if err != nil {
return err
}
return c.JSON(http.StatusOK, profile)
}
}
// /blockedservers
// https://wiki.vg/Mojang_API#Blocked_Servers
func SessionBlockedServers(app *App) func(c echo.Context) error {
return func(c echo.Context) error {
return c.NoContent(http.StatusOK)
}
}