forked from ge-ku/Ban-Checker-for-Steam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckbans.js
155 lines (133 loc) · 5.37 KB
/
checkbans.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
javascript:(function(){
// Allow Steam's dynamic loaded content (e.g. group members list) is loaded
window.addEventListener ("load", loadBanChecker, false);
function loadBanChecker (evt) {
var jsReady = false;
var jsInitChecktimer = setInterval (checkForJS_Finish, 500); // Check if done loading every 0.1s
function checkForJS_Finish () {
if ( typeof g_bLoadingGroupPage != "undefined"
) {
jsReady = g_bLoadingGroupPage;
}
if ( jsReady || document.querySelector ("#memberList .member_block, #memberManageList .member_block, .friendHolder, .friendBlock")
) {
clearInterval (jsInitChecktimer); // Stop checking
BanChecker(); // call BanChecker once now
// then override and augment BindOnHashChange from global.js to call BanChecker after paging
}
}
}
function banChecker () {
// Javascript does not work well with integers greater than 53 bits precision... So we need
// to do our maths using strings.
function getDigit(x, digitIndex) {
return (digitIndex >= x.length) ? "0" : x.charAt(x.length - digitIndex - 1);
}
function prefixZeros(strint, zeroCount) {
var result = strint;
for (var i = 0; i < zeroCount; i++) {
result = "0" + result;
}
return result;
}
//Only works for positive numbers, which is fine in our use case.
function add(x, y) {
var maxLength = Math.max(x.length, y.length);
var result = "";
var borrow = 0;
var leadingZeros = 0;
for (var i = 0; i < maxLength; i++) {
var lhs = Number(getDigit(x, i));
var rhs = Number(getDigit(y, i));
var digit = lhs + rhs + borrow;
borrow = 0;
while (digit >= 10) {
digit -= 10;
borrow++;
}
if (digit === 0) {
leadingZeros++;
} else {
result = String(digit) + prefixZeros(result, leadingZeros);
leadingZeros = 0;
}
}
if (borrow > 0) {
result = String(borrow) + result;
}
return result;
}
function getId(friend) {
var steam64identifier = "76561197960265728";
var miniProfileId = friend.attributes.getNamedItem('data-miniprofile').value;
return add(steam64identifier, miniProfileId);
}
var friends = [].slice.call(document.querySelectorAll('#memberList .member_block, #memberManageList .member_block, .friendHolder, .friendBlock '));
var lookup = {};
friends.forEach(function(friend) {
var id = getId(friend);
if (!lookup[id]) {
lookup[id] = [];
}
lookup[id].push(friend);
});
function setVacation(player) {
var friendElements = lookup[player.SteamId];
friendElements.forEach(function(friend) {
var inGameText = friend.querySelector('.linkFriend_in-game');
var span = document.createElement('span');
span.style.fontWeight = 'bold';
span.style.display = 'block';
if (inGameText) {
inGameText.innerHTML = inGameText.innerHTML.replace(/<br ?\/?>/, ' - ');
}
if (player.NumberOfVACBans || player.NumberOfGameBans) {
var text = '';
if (player.NumberOfGameBans) {
text += player.NumberOfGameBans + ' OW ban' + (player.NumberOfGameBans > 1 ? 's' : '');
}
if (player.NumberOfVACBans) {
text += (text === '' ? '' : ', ') + player.NumberOfVACBans + ' VAC ban' + (player.NumberOfVACBans > 1 ? 's' : '');
}
text += ' ' + player.DaysSinceLastBan + ' day' + (player.DaysSinceLastBan > 1 ? 's' : '') + ' ago.';
span.style.color = 'rgb(255, 73, 73)';
span.innerHTML = text;
} else {
span.style.color = 'rgb(43, 203, 64)';
span.innerHTML = 'No Bans for this player.';
}
friend.querySelector('.friendSmallText').appendChild(span);
});
}
function onData(xmlHttp) {
if (xmlHttp.readyState === XMLHttpRequest.DONE && xmlHttp.status === 200) {
var data = JSON.parse(xmlHttp.responseText);
data.players.forEach(setVacation);
}
}
function makeApiCall(ids, apikey) {
var xmlHttp = new XMLHttpRequest();
//API only allows 100 steam ids at once.
var endpointRoot = 'https://api.steampowered.com/ISteamUser/GetPlayerBans/v1/?key='+apikey+'&steamids=';
var endpoint = endpointRoot + ids.join(',');
xmlHttp.onreadystatechange = function() { onData(xmlHttp); };
xmlHttp.open('GET', endpoint, true);
xmlHttp.send();
}
var defaultkeys = ["5DA40A4A4699DEE30C1C9A7BCE84C914",
"5970533AA2A0651E9105E706D0F8EDDC",
"2B3382EBA9E8C1B58054BD5C5EE1C36A"];
chrome.storage.sync.get("customapikey", function(data) {
if (typeof data['customapikey'] == 'undefined'){
var apikey = defaultkeys[Math.floor(Math.random() * 3)];
}else{
var apikey = data['customapikey'];
}
var ids = Object.keys(lookup);
while (ids.length > 0) {
var batch = ids.splice(0, 100);
makeApiCall(batch, apikey);
}
});
}
})();