-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathreceiver.js
More file actions
55 lines (43 loc) · 1.44 KB
/
receiver.js
File metadata and controls
55 lines (43 loc) · 1.44 KB
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
document.addEventListener("DOMContentLoaded", (event) => {
const peer = new Peer("receiver", {
host: "localhost",
port: 9000,
path: "/",
});
peer.on('connection', conn => {
conn.on('data', data => {
if (data.filetype.includes('image')) {
const bytes = new Uint8Array(data.file);
const img = document.createElement('img');
img.src = 'data:image/png;base64,' + encode(bytes);
document.querySelector('div').prepend(img);
}
});
});
});
const encode = input => {
const keyStr = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';
let output = '';
let chr1, chr2, chr3, enc1, enc2, enc3, enc4;
let i = 0;
while (i < input.length) {
chr1 = input[i++]
chr2 = i < input.length ? input[i++] : Number.NaN // Not sure if the index
chr3 = i < input.length ? input[i++] : Number.NaN // checks are needed here
enc1 = chr1 >> 2;
enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);
enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);
enc4 = chr3 & 63;
if (isNaN(chr2)) {
enc3 = enc4 = 64;
} else if (isNaN(chr3)) {
enc4 = 64;
}
output +=
keyStr.charAt(enc1) +
keyStr.charAt(enc2) +
keyStr.charAt(enc3) +
keyStr.charAt(enc4);
}
return output;
}