-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi.js
125 lines (119 loc) · 3.66 KB
/
api.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
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
apiKey = config.API_KEY;
function getPlayers() {
$.ajax({
type: 'GET',
url: 'https://api.dc01.gamelockerapp.com/shards/global/players',
dataType: 'json',
headers: {
Authorization: apiKey,
Accept: 'application/vnd.api+json'
},
success: function(json, status) {
console.log(json);
},
error: function(jqXHR, status) {
console.log('Error: ' + status);
}
});
}
function getPlayerById() {
let input = document.getElementById('input');
let playerId = input.value;
$.ajax({
type: 'GET',
url: 'https://api.dc01.gamelockerapp.com/shards/na/players/' + playerId,
dataType: 'json',
headers: {
Authorization: apiKey,
Accept: 'application/vnd.api+json'
},
success: function(json, status) {
console.log(json);
},
error: function(jqXHR, status) {
console.log('Error: No Player Id was given.');
}
});
}
function getListOfMatches() {
$.ajax({
type: 'GET',
url: 'https://api.dc01.gamelockerapp.com/shards/global/matches?sort=createdAt&page[limit]=5&filter[createdAt-end]',
dataType: 'json',
headers: {
Authorization: apiKey,
Accept: 'application/vnd.api+json'
},
success: function(json, status) {
console.log(json);
},
error: function(jqXHR, status) {
console.log('Error: ' + status);
}
});
}
function getListOfMatchIds() {
$.ajax({
type: 'GET',
url: 'https://api.dc01.gamelockerapp.com/shards/global/matches',
dataType: 'json',
headers: {
Authorization: apiKey,
Accept: 'application/vnd.api+json'
},
success: function(json, status) {
for (let i = 0; i < json.data.length; i++) {
console.log(json.data[i].id);
}
},
error: function(jqXHR, status) {
console.log('Error: ' + status);
}
});
}
function getMatchDataById() {
let input = document.getElementById('input');
let matchId = input.value;
let participants = new Array();
$.ajax({
type: 'GET',
url: 'https://api.dc01.gamelockerapp.com/shards/global/matches/' + matchId,
dataType: 'json',
headers: {
Authorization: apiKey,
Accept: 'application/vnd.api+json'
},
success: function(json, status) {
let counter = 0;
let inavlidMatch = false;
sessionStorage.mapName = getMapNameByID(json.data.attributes.stats.mapID);
for (let i = 0; i < json.included.length; i++) {
if (json.included[i].type == 'participant'){
if(json.included[i].attributes.stats.abilityUses==undefined){
invalidMatch = true;
break;
} else {
participants[counter] = json.included[i].attributes;
counter++;
}
}
}
participants.sort(function(a, b) {
return a.side - b.side;
});
if(participants.length>0){
console.log(participants);
storeStats(participants);
window.location.href = 'stats.html';
} else alert('Invalid Match');
},
error: function(jqXHR, status) {
console.log('Error: No Match ID was given.');
}
});
clearMatchIdInput();
}
function clearMatchIdInput() {
let input = document.getElementById('input');
input.value = '';
}