forked from PlaceNL2022/Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
placenlbot.user.js
453 lines (418 loc) · 12.8 KB
/
placenlbot.user.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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
// ==UserScript==
// @name PlaceTUD Bot
// @namespace https://github.com/PlaceTUD/Soldat
// @version 23
// @description Der PlaceTUD Bot für die koolsten Kids der TU Darmstadt!
// @author Meine liebsten Nerds vom tud_geekhub
// @match https://www.reddit.com/r/place/*
// @match https://new.reddit.com/r/place/*
// @connect reddit.com
// @connect placetud.yanick.gay
// @icon https://www.google.com/s2/favicons?sz=64&domain=reddit.com
// @require https://cdn.jsdelivr.net/npm/toastify-js
// @resource TOASTIFY_CSS https://cdn.jsdelivr.net/npm/toastify-js/src/toastify.min.css
// @updateURL https://github.com/PlaceTUD/Soldat/raw/master/placetudsoldat.user.js
// @downloadURL https://github.com/PlaceTUD/Soldat/raw/master/placetudsoldat.user.js
// @grant GM_getResourceText
// @grant GM_addStyle
// @grant GM.xmlHttpRequest
// ==/UserScript==
// Sorry for the messy code, hurry and clean does not always go together
//GITHUB IS NOT UPDATING U BULLY
var socket;
var order = undefined;
var accessToken;
var currentOrderCanvas = document.createElement("canvas");
var currentOrderCtx = currentOrderCanvas.getContext("2d");
var currentPlaceCanvas = document.createElement("canvas");
// Global constants
const DEFAULT_TOAST_DURATION_MS = 10000;
const COLOR_MAPPINGS = {
"#6D001A": 0,
"#BE0039": 1,
"#FF4500": 2,
"#FFA800": 3,
"#FFD635": 4,
"#FFF8B8": 5,
"#00A368": 6,
"#00CC78": 7,
"#7EED56": 8,
"#00756F": 9,
"#009EAA": 10,
"#00CCC0": 11,
"#2450A4": 12,
"#3690EA": 13,
"#51E9F4": 14,
"#493AC1": 15,
"#6A5CFF": 16,
"#94B3FF": 17,
"#811E9F": 18,
"#B44AC0": 19,
"#E4ABFF": 20,
"#DE107F": 21,
"#FF3881": 22,
"#FF99AA": 23,
"#6D482F": 24,
"#9C6926": 25,
"#FFB470": 26,
"#000000": 27,
"#515252": 28,
"#898D90": 29,
"#D4D7D9": 30,
"#FFFFFF": 31,
};
let getRealWork = (rgbaOrder) => {
let order = [];
for (var i = 0; i < 4000000; i++) {
if (rgbaOrder[i * 4 + 3] !== 0) {
order.push(i);
}
}
return order;
};
let getPendingWork = (work, rgbaOrder, rgbaCanvas) => {
let pendingWork = [];
for (const i of work) {
if (rgbaOrderToHex(i, rgbaOrder) !== rgbaOrderToHex(i, rgbaCanvas)) {
pendingWork.push(i);
}
}
return pendingWork;
};
(async function () {
GM_addStyle(GM_getResourceText("TOASTIFY_CSS"));
currentOrderCanvas.width = 2000;
currentOrderCanvas.height = 2000;
currentOrderCanvas.style.display = 'none';
currentOrderCanvas = document.body.appendChild(currentOrderCanvas);
currentPlaceCanvas.width = 2000;
currentPlaceCanvas.height = 2000;
currentPlaceCanvas.style.display = 'none';
currentPlaceCanvas = document.body.appendChild(currentPlaceCanvas);
Toastify({
text: "Getting access token...",
duration: DEFAULT_TOAST_DURATION_MS,
}).showToast();
accessToken = await getAccessToken();
Toastify({
text: "Got access token!",
duration: DEFAULT_TOAST_DURATION_MS,
}).showToast();
connectSocket();
attemptPlace();
setInterval(() => {
if (socket) socket.send(JSON.stringify({ type: "ping" }));
}, 5000);
setInterval(async () => {
accessToken = await getAccessToken();
}, 30 * 60 * 1000);
})();
function connectSocket() {
Toastify({
text: "Connecting with PlaceTUD server...",
duration: DEFAULT_TOAST_DURATION_MS,
}).showToast();
socket = new WebSocket("wss://placetud.yanick.gay/api/ws");
socket.onopen = function () {
Toastify({
text: "Connected with PlaceTUD server!",
duration: DEFAULT_TOAST_DURATION_MS,
}).showToast();
socket.send(JSON.stringify({ type: "getmap" }));
socket.send(JSON.stringify({ type: "brand", brand: "userscriptV21" }));
};
socket.onmessage = async function (message) {
var data;
try {
data = JSON.parse(message.data);
} catch (e) {
return;
}
switch (data.type.toLowerCase()) {
case "map":
Toastify({
text: `New map loaded (reason: ${
data.reason ? data.reason : "connected to server"
})...`,
duration: DEFAULT_TOAST_DURATION_MS,
}).showToast();
currentOrderCtx = await getCanvasFromUrl(
`https://placetud.yanick.gay/maps/${data.data}`,
currentOrderCanvas,
0,
0,
true
);
order = getRealWork(
currentOrderCtx.getImageData(0, 0, 2000, 2000).data
);
Toastify({
text: `New map loaded, ${order.length} pixels in total`,
duration: DEFAULT_TOAST_DURATION_MS,
}).showToast();
break;
case "toast":
Toastify({
text: `Breaking news: ${data.message}`,
duration: data.duration || DEFAULT_TOAST_DURATION_MS,
style: data.style || {},
}).showToast();
break;
default:
break;
}
};
socket.onclose = function (e) {
Toastify({
text: `Connection lost with PlaceTUD Server: ${e.reason}`,
duration: DEFAULT_TOAST_DURATION_MS,
}).showToast();
console.error("Socket error: ", e.reason);
socket.close();
setTimeout(connectSocket, 1000);
};
}
async function attemptPlace() {
if (order === undefined) {
setTimeout(attemptPlace, 2000);
return;
}
var ctx;
try {
ctx = await getCanvasFromUrl(
await getCurrentImageUrl("0"),
currentPlaceCanvas,
0,
0,
false
);
ctx = await getCanvasFromUrl(
await getCurrentImageUrl("1"),
currentPlaceCanvas,
1000,
0,
false
);
ctx = await getCanvasFromUrl(
await getCurrentImageUrl("2"),
currentPlaceCanvas,
0,
1000,
false
);
ctx = await getCanvasFromUrl(
await getCurrentImageUrl("3"),
currentPlaceCanvas,
1000,
1000,
false
);
} catch (e) {
console.warn("Error loading map: ", e);
Toastify({
text: "Error loading map. Trying again in 10 seconds",
duration: 10000, // NOT CHANING TO 10000 AS THIS IS OWN TOAST
}).showToast();
setTimeout(attemptPlace, 10000);
return;
}
const rgbaOrder = currentOrderCtx.getImageData(0, 0, 2000, 2000).data;
const rgbaCanvas = ctx.getImageData(0, 0, 2000, 2000).data;
const work = getPendingWork(order, rgbaOrder, rgbaCanvas);
if (work.length === 0) {
Toastify({
text: `All pixels are placed correctly! Trying again in 30 sec...`,
duration: 30000,
}).showToast();
setTimeout(attemptPlace, 30000); // probeer opnieuw in 30sec.
return;
}
const percentComplete = 100 - Math.ceil((work.length * 100) / order.length);
const workRemaining = work.length;
const idx = Math.floor(Math.random() * work.length);
const i = work[idx];
const x = i % 2000;
const y = Math.floor(i / 2000);
const hex = rgbaOrderToHex(i, rgbaOrder);
Toastify({
text: `Pixel try to place on ${x}, ${y}... (${percentComplete}% completed, ${workRemaining} pixels remaining)`,
duration: DEFAULT_TOAST_DURATION_MS,
}).showToast();
const res = await place(x, y, COLOR_MAPPINGS[hex]);
const data = await res.json();
try {
if (data.errors) {
const error = data.errors[0];
const nextPixel = error.extensions.nextAvailablePixelTs + 3000;
const nextPixelDate = new Date(nextPixel);
const delay = nextPixelDate.getTime() - Date.now();
Toastify({
text: `Pixel placed too quickly! Next pixel is set to ${nextPixelDate.toLocaleTimeString()}.`,
duration: delay,
}).showToast();
setTimeout(attemptPlace, delay);
} else {
const nextPixel =
data.data.act.data[0].data.nextAvailablePixelTimestamp + 3000;
const nextPixelDate = new Date(nextPixel);
const delay = nextPixelDate.getTime() - Date.now();
Toastify({
text: `Pixel placed on ${x}, ${y}! Next pixel is set to ${nextPixelDate.toLocaleTimeString()}.`,
duration: delay,
}).showToast();
setTimeout(attemptPlace, delay);
}
} catch (e) {
console.warn("Error reading response", e);
Toastify({
text: `Error reading response: ${e}.`,
duration: DEFAULT_TOAST_DURATION_MS,
}).showToast();
setTimeout(attemptPlace, 10000);
}
}
function place(x, y, color) {
socket.send(JSON.stringify({ type: "placepixel", x, y, color }));
return fetch("https://gql-realtime-2.reddit.com/query", {
method: "POST",
body: JSON.stringify({
operationName: "setPixel",
variables: {
input: {
actionName: "r/replace:set_pixel",
PixelMessageData: {
coordinate: {
x: x % 1000,
y: y % 1000,
},
colorIndex: color,
canvasIndex: getCanvas(x, y),
},
},
},
query:
"mutation setPixel($input: ActInput!) {\n act(input: $input) {\n data {\n ... on BasicMessage {\n id\n data {\n ... on GetUserCooldownResponseMessageData {\n nextAvailablePixelTimestamp\n __typename\n }\n ... on SetPixelResponseMessageData {\n timestamp\n __typename\n }\n __typename\n }\n __typename\n }\n __typename\n }\n __typename\n }\n}\n",
}),
headers: {
origin: "https://hot-potato.reddit.com",
referer: "https://hot-potato.reddit.com/",
"apollographql-client-name": "mona-lisa",
Authorization: `Bearer ${accessToken}`,
"Content-Type": "application/json",
},
});
}
async function getAccessToken() {
const usingOldReddit = window.location.href.includes("new.reddit.com");
const url = usingOldReddit
? "https://new.reddit.com/r/place/"
: "https://www.reddit.com/r/place/";
const response = await fetch(url);
const responseText = await response.text();
// TODO: ew
return responseText.split('"accessToken":"')[1].split('"')[0];
}
async function getCurrentImageUrl(id = "0") {
return new Promise((resolve, reject) => {
const ws = new WebSocket(
"wss://gql-realtime-2.reddit.com/query",
"graphql-ws"
);
ws.onopen = () => {
ws.send(
JSON.stringify({
type: "connection_init",
payload: {
Authorization: `Bearer ${accessToken}`,
},
})
);
ws.send(
JSON.stringify({
id: "1",
type: "start",
payload: {
variables: {
input: {
channel: {
teamOwner: "AFD2022",
category: "CANVAS",
tag: id,
},
},
},
extensions: {},
operationName: "replace",
query:
"subscription replace($input: SubscribeInput!) {\n subscribe(input: $input) {\n id\n ... on BasicMessage {\n data {\n __typename\n ... on FullFrameMessageData {\n __typename\n name\n timestamp\n }\n }\n __typename\n }\n __typename\n }\n}",
},
})
);
};
ws.onmessage = (message) => {
const { data } = message;
const parsed = JSON.parse(data);
// TODO: ew
if (
!parsed.payload ||
!parsed.payload.data ||
!parsed.payload.data.subscribe ||
!parsed.payload.data.subscribe.data
)
return;
ws.close();
resolve(
parsed.payload.data.subscribe.data.name +
`?noCache=${Date.now() * Math.random()}`
);
};
ws.onerror = reject;
});
}
function getCanvas(x, y) {
if (x <= 999) {
return y <= 999 ? 0 : 2;
} else {
return y <= 999 ? 1 : 3;
}
}
function getCanvasFromUrl(url, canvas, x = 0, y = 0, clearCanvas = false) {
return new Promise((resolve, reject) => {
let loadImage = (ctx) => {
GM.xmlHttpRequest({
method: "GET",
url: url,
responseType: "blob",
onload: function (response) {
var urlCreator = window.URL || window.webkitURL;
var imageUrl = urlCreator.createObjectURL(this.response);
var img = new Image();
img.onload = () => {
if (clearCanvas) {
ctx.clearRect(0, 0, canvas.width, canvas.height);
}
ctx.drawImage(img, x, y);
resolve(ctx);
};
img.onerror = () => {
Toastify({
text: "Fout bij ophalen map. Opnieuw proberen in 3 sec...",
duration: 3000,
}).showToast();
setTimeout(() => loadImage(ctx), 3000);
};
img.src = imageUrl;
},
});
};
loadImage(canvas.getContext("2d"));
});
}
function rgbToHex(r, g, b) {
return (
"#" +
((1 << 24) + (r << 16) + (g << 8) + b).toString(16).slice(1).toUpperCase()
);
}
let rgbaOrderToHex = (i, rgbaOrder) =>
rgbToHex(rgbaOrder[i * 4], rgbaOrder[i * 4 + 1], rgbaOrder[i * 4 + 2]);