This repository was archived by the owner on May 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtracker.js
212 lines (180 loc) · 4.94 KB
/
tracker.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
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
let oldData;
let currentChart, trackedData, rawNames, rawTrackedData;
let staffList, communities = { };
const forumRegex = [ new RegExp(/<img src="\/img\/pays\//).source, new RegExp(/\.png".+? (\w+)<span class="nav-header-hashtag">/).source ];
const commuList = [ "xx", "gb", "fr", "br", "es", "tr", "pl", "hu", "ro", "sa", "vk", "nl", "id", "de", "ru", "cn", "ph", "lt", "jp", "fi", "il", "it", "cz", "hr", "bg", "lv", "ee" ];
const commuStr = "<td><button onclick=\"setCommunity('{0}')\"><img src=\"https://atelier801.com/img/pays/{0}.png\" alt=\"{0}\"></button></td>"
let canvas, chart_control, info, communities_table;
if (!String.format) {
String.format = function(format)
{
var args = Array.prototype.slice.call(arguments, 1);
return format.replace(/{(\d+)}/g, function(match, number)
{
return typeof args[number] != "undefined" ? args[number] : match;
});
};
}
function hexToRGBA(hex, alpha) {
let r = parseInt(hex.slice(1, 3), 16),
g = parseInt(hex.slice(3, 5), 16),
b = parseInt(hex.slice(5, 7), 16);
return "rgba(" + r + ", " + g + ", " + b + ", 0.5)";
}
function sortObjByScoreDesc(a, b) {
return b[1] - a[1];
}
function sortObjByScoreAsc(a, b) {
return sortObjByScoreDesc(b, a);
}
function sortObjByNameAsc(a, b) {
if (a > b) return 1;
if (a < b) return -1;
return 0;
}
function sortObjByNameDesc(a, b) {
return sortObjByNameAsc(b, a);
}
function getChartData()
{
return {
"type": "horizontalBar",
"data": {
"labels": [ ],
"datasets": [
{
"label": "Activity score",
"data": [ ],
"backgroundColor": hexToRGBA("#7289DA")
}
]
},
"options": {
"responsive": true,
"maintainAspectRatio": false,
"legend": {
"labels": {
"fontColor": "#AAAAAA"
}
},
"scales": {
"xAxes": [{
"ticks": {
"fontColor": "#7289DA"
}
}],
"yAxes": [{
"ticks": {
"fontColor": "#BABD2F",
"fontFamily": "Roboto"
}
}]
}
}
}
}
function createChart(data)
{
chart_control.style.height = (Math.max(data.length, 7) * (4/3)) + "em";
let chart = getChartData();
for (let nameData of data)
{
chart.data.labels.push(nameData[0]);
chart.data.datasets[0].data.push(nameData[1]);
}
let ctx = canvas.getContext("2d");
return new Chart(ctx, chart);
}
async function trackData()
{
let data = await fetch("https://discorddb.000webhostapp.com/get?k=&e=json&f=" + (oldData ? ("modTracker_until_09-" + oldData + "-2020") : "modTracker"));
data = await data.json();
return data;
}
function rebuildChart(data)
{
currentChart.destroy();
currentChart = createChart(data);
}
async function installCommunityMembers(commu)
{
if (communities[commu]) return;
if (!staffList)
{
staffList = await fetch("https://cors-anywhere.herokuapp.com/https://atelier801.com/staff-ajax?role=1");
staffList = await staffList.text();
}
let names = await [ ...staffList.matchAll(forumRegex[0] + commu + forumRegex[1]) ];
communities[commu] = { };
await names.map(data => communities[commu][data[1]] = true)
}
async function setCommunity(commu)
{
trackedData = rawTrackedData;
if (commu != '')
{
await installCommunityMembers(commu);
// Removes who is not from the specific community
trackedData = trackedData.filter((name) => !!communities[commu][name[0]]);
// Adds who has 0 score
for (let name in communities[commu])
if (!rawNames[name])
trackedData.push([ name, 0 ]);
}
rebuildChart(trackedData);
}
function sortData(f)
{
rebuildChart(trackedData.sort(f));
}
async function filterData(data)
{
let totalRegisters = 0, totalDays = 0;
let names = { };
for (let date in data)
{
totalDays++;
totalRegisters += data[date].length;
for (let registers of data[date])
{
registers = registers.split('#');
registers.pop();
for (let name of registers)
if (!names[name])
names[name] = 1;
else
names[name]++;
}
}
rawNames = names;
info.innerText = totalRegisters + " registers, " + totalDays + " days";
return rawTrackedData = trackedData = Object.keys(names).map((name) => [name, names[name]]);
}
function populateCommunityDropdown()
{
let index = 0;
communities_table.innerHTML = "<tr>" + commuList.map((commu) => String.format(commuStr, commu) + (++index % 4 == 0 ? "</tr><tr>" : '')).join('') + "</tr>";
}
function getElements()
{
canvas = document.getElementById("chart");
chart_control = document.getElementById("chart-control");
info = document.getElementById("info");
communities_table = document.getElementById("communities");
}
window.onload = async function()
{
try
{
oldData = document.location.search.match(/[?&]old(\d+)/)[1];
}
catch(_)
{
oldData = false;
}
await getElements();
let data = await trackData();
data = await filterData(data);
currentChart = createChart(data);
populateCommunityDropdown();
}