-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
98 lines (98 loc) · 2.85 KB
/
index.js
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
const fetch = require("node-fetch")
module.exports = class{
constructor(token) {
this.token = token
}
async getUUid(name){
const res = await fetch(`https://api.mojang.com/users/profiles/minecraft/${name}`)
if(!res.ok)return null;
return (await res.json()).id
}
async getHistory(name){
if(!name)return null;
const uuid = await this.getUUid(name)
if(!uuid)return null;
const data = await this.getFriendByUUid(uuid)
if(!data)return null;
return data
}
async getInfo(name){
if(!name)return null;
const uuid = await this.getUUid(name)
if(!uuid)return null;
const data = await this.getInfoByUUid(uuid)
if(!data)return null;
return data
}
async getFriend(name){
if(!name)return null;
const uuid = await this.getUUid(name)
if(!uuid)return null;
const data = await this.getFriendByUUid(uuid)
if(!data)return null;
return data
}
async getStatus(name){
if(!name)return null;
const uuid = await this.getUUid(name)
if(!uuid)return null;
const data = await this.getStatusByUUid(uuid)
if(!data)return null;
return data
}
async getGuild(name){
if(!name)return null;
const uuid = await this.getUUid(name)
if(!uuid)return null;
const data = await this.getGuildByUUid(uuid)
if(!data)return null;
return data
}
async getData(name){
if(!name)return null;
const uuid = await this.getUUid(name)
if(!uuid)return null;
const data = await this.getDataByUUid(uuid)
if(!data)return null;
return data
}
async getInfo2(name){
const data = await this.getInfo(name)
if(!data)return null;
return data.properties.map(a=>a.value = JSON.parse(new Buffer.from(a.value,"base64").toString()))
}
async getHistoryByUUid(uuid){
const res = await fetch(`https://api.mojang.com/user/profiles/${uuid}/names`)
if(!res.ok)return null;
return (await res.json())
}
async getInfoByUUid(uuid){
const res = await fetch(`https://sessionserver.mojang.com/session/minecraft/profile/${uuid}`)
if(!res.ok)return null;
return (await res.json())
}
async getFriendByUUid(uuid){
if(!uuid)return null;
const data = (await (await fetch(`https://api.hypixel.net/friends?uuid=${uuid}&key=${this.token}`)).json());
if(data.success)return data.records;
return null;
}
async getStatusByUUid(uuid){
if(!uuid)return null;
const data = (await (await fetch(`https://api.hypixel.net/status?uuid=${uuid}&key=${this.token}`)).json());
if(data.success)return data.session;
return null;
}
async getGuildByUUid(uuid){
if(!uuid)return null;
const data = (await (await fetch(`https://api.hypixel.net/guild?player=${uuid}&key=${this.token}`)).json());
if(data.success)return data.guild;
return null;
}
async getDataByUUid(uuid){
if(!uuid)return null;
const data = (await (await fetch(`https://api.hypixel.net/player?uuid=${uuid}&key=${this.token}`)).json());
if(data.success)return data.player;
return null;
}
}