2018-10-29 18:13:58 -04:00
|
|
|
const request = require('request');
|
|
|
|
const uuid = require('uuid/v1');
|
|
|
|
const api_url = "https://authserver.mojang.com";
|
|
|
|
|
2019-04-18 17:35:39 -04:00
|
|
|
module.exports.getAuth = function (username, password) {
|
2019-08-27 20:07:33 +02:00
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
if (!password) {
|
2018-11-29 21:41:07 -05:00
|
|
|
const user = {
|
|
|
|
access_token: uuid(),
|
|
|
|
client_token: uuid(),
|
|
|
|
uuid: uuid(),
|
|
|
|
name: username,
|
2019-02-08 16:59:27 -05:00
|
|
|
user_properties: JSON.stringify({})
|
2018-11-29 21:41:07 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
resolve(user);
|
2019-01-12 20:51:24 -05:00
|
|
|
return;
|
2018-11-29 21:41:07 -05:00
|
|
|
}
|
|
|
|
|
2018-10-29 18:13:58 -04:00
|
|
|
const requestObject = {
|
|
|
|
url: api_url + "/authenticate",
|
|
|
|
json: {
|
|
|
|
agent: {
|
|
|
|
name: "Minecraft",
|
|
|
|
version: 1
|
|
|
|
},
|
|
|
|
username: username,
|
|
|
|
password: password,
|
2019-08-12 12:34:28 -04:00
|
|
|
clientToken: uuid(),
|
2018-10-29 18:13:58 -04:00
|
|
|
requestUser: true
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-08-27 20:07:33 +02:00
|
|
|
request.post(requestObject, function (error, response, body) {
|
|
|
|
if (error) return reject(error);
|
|
|
|
if (!body || !body.selectedProfile) {
|
|
|
|
return reject("Validation error: " + response.statusMessage);
|
2018-10-29 18:13:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
const userProfile = {
|
|
|
|
access_token: body.accessToken,
|
2019-08-12 12:34:28 -04:00
|
|
|
client_token: body.clientToken,
|
2018-10-29 18:13:58 -04:00
|
|
|
uuid: body.selectedProfile.id,
|
|
|
|
name: body.selectedProfile.name,
|
2018-11-30 19:33:08 -05:00
|
|
|
selected_profile: body.selectedProfile,
|
2019-03-10 20:18:49 -04:00
|
|
|
user_properties: JSON.stringify(body.user.properties || {})
|
2018-10-29 18:13:58 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
resolve(userProfile);
|
|
|
|
});
|
|
|
|
});
|
2019-04-18 17:35:39 -04:00
|
|
|
};
|
2018-10-29 18:13:58 -04:00
|
|
|
|
2019-08-12 12:34:28 -04:00
|
|
|
module.exports.validate = function (access_token, client_token) {
|
2019-08-27 20:07:33 +02:00
|
|
|
return new Promise((resolve, reject) => {
|
2018-11-30 19:33:08 -05:00
|
|
|
const requestObject = {
|
|
|
|
url: api_url + "/validate",
|
|
|
|
json: {
|
2019-08-12 12:34:28 -04:00
|
|
|
"accessToken": access_token,
|
|
|
|
"clientToken": client_token
|
2018-11-30 19:33:08 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-08-27 20:07:33 +02:00
|
|
|
request.post(requestObject, async function (error, response, body) {
|
|
|
|
if (error) return reject(error);
|
2018-11-30 19:33:08 -05:00
|
|
|
|
2019-08-27 20:07:33 +02:00
|
|
|
if (!body) resolve(true);
|
|
|
|
else reject(body);
|
2018-11-30 19:33:08 -05:00
|
|
|
});
|
|
|
|
});
|
2019-04-18 17:35:39 -04:00
|
|
|
};
|
2018-11-30 19:33:08 -05:00
|
|
|
|
2019-04-18 17:35:39 -04:00
|
|
|
module.exports.refreshAuth = function (accessToken, clientToken, selectedProfile) {
|
2019-08-27 20:07:33 +02:00
|
|
|
return new Promise((resolve, reject) => {
|
2018-11-30 19:33:08 -05:00
|
|
|
const requestObject = {
|
|
|
|
url: api_url + "/refresh",
|
|
|
|
json: {
|
|
|
|
"accessToken": accessToken,
|
|
|
|
"clientToken": clientToken,
|
|
|
|
"selectedProfile": selectedProfile,
|
|
|
|
"requestUser": true
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-08-27 20:07:33 +02:00
|
|
|
request.post(requestObject, function (error, response, body) {
|
|
|
|
if (error) return reject(error);
|
|
|
|
if (!body || !body.selectedProfile) {
|
|
|
|
return reject("Validation error: " + response.statusMessage);
|
2018-11-30 19:33:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
const userProfile = {
|
|
|
|
access_token: body.accessToken,
|
|
|
|
client_token: uuid(),
|
|
|
|
uuid: body.selectedProfile.id,
|
|
|
|
name: body.selectedProfile.name,
|
2019-03-10 21:29:42 -04:00
|
|
|
user_properties: JSON.stringify(body.user.properties || {})
|
2018-11-30 19:33:08 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
resolve(userProfile);
|
|
|
|
});
|
|
|
|
});
|
2019-05-22 18:28:48 -04:00
|
|
|
};
|
|
|
|
|
2019-08-27 20:07:33 +02:00
|
|
|
module.exports.invalidate = function (accessToken, clientToken) {
|
|
|
|
return new Promise((resolve, reject) => {
|
2019-05-22 18:28:48 -04:00
|
|
|
const requestObject = {
|
|
|
|
url: api_url + "/invalidate",
|
|
|
|
json: {
|
|
|
|
"accessToken": accessToken,
|
|
|
|
"clientToken": clientToken
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-08-27 20:07:33 +02:00
|
|
|
request.post(requestObject, function (error, response, body) {
|
|
|
|
if (error) return reject(error);
|
2019-05-22 18:28:48 -04:00
|
|
|
|
2019-08-27 20:07:33 +02:00
|
|
|
if (!body) resolve(true);
|
|
|
|
else reject(body);
|
2019-05-22 18:28:48 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2019-08-27 20:07:33 +02:00
|
|
|
module.exports.signOut = function (username, password) {
|
|
|
|
return new Promise((resolve, reject) => {
|
2019-05-22 18:28:48 -04:00
|
|
|
const requestObject = {
|
2019-07-22 19:29:36 -04:00
|
|
|
url: api_url + "/signout",
|
2019-05-22 18:28:48 -04:00
|
|
|
json: {
|
|
|
|
"username": username,
|
|
|
|
"password": password
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-08-27 20:07:33 +02:00
|
|
|
request.post(requestObject, function (error, response, body) {
|
|
|
|
if (error) return reject(error);
|
2019-05-22 18:28:48 -04:00
|
|
|
|
2019-08-27 20:07:33 +02:00
|
|
|
if (!body) resolve(true);
|
|
|
|
else reject(body);
|
2019-05-22 18:28:48 -04:00
|
|
|
});
|
|
|
|
});
|
2019-08-27 20:07:33 +02:00
|
|
|
};
|