-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAccount.php
292 lines (284 loc) · 6.95 KB
/
Account.php
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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
<?php /** @noinspection PhpComposerExtensionStubsInspection */
namespace Phpcraft;
use Asyncore\stdin;
/** A Mojang or Minecraft account. */
class Account
{
static $allowed_username_characters = [];
/**
* The in-game name.
*
* @var string $username
*/
public $username;
/**
* The selected profile ID or null if offline.
*
* @var string|null $profileId
*/
public $profileId = null;
/**
* The access token for the account or null if offline.
*
* @var string|null $accessToken
*/
public $accessToken = null;
/**
* Contructs an Account for "offline mode" usage.
* For online usage, use Account::online or Account::cliLogin.
* Okay, I lied, if you call Account::loginUsingProfiles you <b><i>might</i></b> be able to convert such an instance into one for "online mode" usage.
*
* @param string $username The in-game name.
*/
function __construct(string $username)
{
$this->username = $username;
}
/**
* Asks the user of the CLI application for a logged-in Account for "online mode" usage using \Asyncore\stdin.
*
* @return Account
*/
static function cliLogin(): Account
{
$profiles = Phpcraft::getProfiles();
stdin::init(null, false);
if(empty($profiles["authenticationDatabase"]))
{
$sel = 1;
}
else
{
echo "Choose a Mojang/Minecraft account to use:\n";
$i = 1;
foreach($profiles["authenticationDatabase"] as $account)
{
echo ($i++).") ".array_values($account["profiles"])[0]["displayName"]."\n";
}
echo "$i) Add an account\n";
do
{
echo "Your selection: ";
$sel = intval(stdin::getNextLine());
if($sel < 1)
{
$sel = 0;
}
else if($sel > count($profiles["authenticationDatabase"]) + 1)
{
$sel = 0;
}
}
while($sel == 0);
}
$account = null;
if($sel > count($profiles["authenticationDatabase"]))
{
do
{
echo "What's your Mojang account email address? (username if unmigrated) ";
$name = trim(stdin::getNextLine());
}
while(!$name);
do
{
if(Phpcraft::isWindows())
{
echo "What's your account password? (visible) ";
}
else
{
readline_callback_handler_install("What's your account password? (hidden) ", function($input)
{
});
}
$password = trim(stdin::getNextLine());
if(!Phpcraft::isWindows())
{
readline_callback_handler_remove();
echo "\n";
}
if(!$password)
{
continue;
}
echo "Attempting to log in...";
$account = Account::online($name, $password);
if($account)
{
echo " Success!\n";
break;
}
echo " Failed. Either the credentials were incorrect or the Mojang account doesn't own Minecraft.\n";
echo "Would you like to try to enter the password again? [Y/n] ";
if(trim(stdin::getNextLine()) == "n")
{
break;
}
}
while(true);
}
else
{
echo "Throwing access token at Mojang... ";
$account = new Account(array_values($profiles["authenticationDatabase"][array_keys($profiles["authenticationDatabase"])[$sel - 1]]["profiles"])[0]["displayName"]);
if($account->loginUsingProfiles())
{
echo "Success!\n";
}
else
{
echo "Failed.\n";
$account = null;
}
}
return $account ?? Account::cliLogin();
}
/**
* Creates a logged-in Account instance for "online mode" usage.
*
* @param string $name The Mojang account email address or in-game name if unmigrated.
* @param string $password The account's password.
* @return Account|null
*/
static function online(string $name, string $password): ?Account
{
$profiles = Phpcraft::getProfiles();
$res = Phpcraft::httpPOST("https://authserver.mojang.com/authenticate", [
"agent" => [
"name" => "Minecraft",
"version" => 1
],
"username" => $name,
"password" => $password,
"clientToken" => $profiles["clientToken"],
"requestUser" => true
]);
if($res && isset($res["selectedProfile"]))
{
$account = new Account($res["selectedProfile"]["name"]);
$account->profileId = $res["selectedProfile"]["id"];
$account->accessToken = $res["accessToken"];
$profiles["authenticationDatabase"][$res["user"]["id"]] = [
"accessToken" => $account->accessToken,
"profiles" => [
$account->profileId => [
"displayName" => $account->username
]
]
];
Phpcraft::saveProfiles($profiles);
return $account;
}
return null;
}
/**
* Attempts to turns an "offline mode" instance into an "online mode" instance using .minecraft/launcher_profiles.json.
*
* @return boolean Whether it was successful.
*/
function loginUsingProfiles(): bool
{
$i = Account::getAccountIdFromProfileName($this->username);
if($i === null)
{
return false;
}
$profiles = Phpcraft::getProfiles();
$this->accessToken = $profiles["authenticationDatabase"][$i]["accessToken"];
if(Phpcraft::httpPOST("https://authserver.mojang.com/validate", [
"accessToken" => $this->accessToken,
"clientToken" => $profiles["clientToken"]
])["status"] == "204")
{
$this->profileId = array_keys($profiles["authenticationDatabase"][$i]["profiles"])[0];
return true;
}
$res = $res = Phpcraft::httpPOST("https://authserver.mojang.com/refresh", [
"accessToken" => $this->accessToken,
"clientToken" => $profiles["clientToken"]
]);
if($res && isset($res["accessToken"]))
{
$this->accessToken = $res["accessToken"];
$this->profileId = array_keys($profiles["authenticationDatabase"][$i]["profiles"])[0];
$profiles["authenticationDatabase"][$i]["accessToken"] = $this->accessToken;
Phpcraft::saveProfiles($profiles);
return true;
}
unset($profiles["authenticationDatabase"][$i]);
Phpcraft::saveProfiles($profiles);
$this->accessToken = null;
return false;
}
/**
* @param string $profile_name
* @return string|null
*/
static function getAccountIdFromProfileName(string $profile_name): ?string
{
$profiles = Phpcraft::getProfiles();
foreach($profiles["authenticationDatabase"] as $account_id => $account)
{
foreach($account["profiles"] as $uuid => $data)
{
if($data["displayName"] == $profile_name)
{
return $account_id;
}
}
}
return null;
}
/**
* Returns true if the given username is valid.
*
* @param string $username
* @return bool
*/
static function validateUsername(string $username): bool
{
if(strlen($username) < 3 || strlen($username) > 16)
{
return false;
}
foreach(str_split($username) as $char)
{
if(!in_array($char, self::$allowed_username_characters))
{
return false;
}
}
return true;
}
/**
* Returns whether this account can be used to join servers in online mode.
*
* @return boolean
*/
function isOnline(): bool
{
return $this->profileId !== null && $this->accessToken !== null;
}
}
Account::$allowed_username_characters = [
"_",
"0",
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9"
];
foreach(range("a", "z") as $char)
{
array_push(Account::$allowed_username_characters, $char);
}
foreach(range("A", "Z") as $char)
{
array_push(Account::$allowed_username_characters, $char);
}