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
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
|
/*
* chat.js
* Copyright (c) 2019, Texx
* License: MIT
* See https://github.com/texxme/Texx/blob/master/LICENSE
*/
// general imports
const $ = jQuery = require('jquery');
require('jquery-ui-bundle');
const swal = require('sweetalert');
const xkcdPassword = require('xkcd-password');
const dragDrop = require('drag-drop');
const encryption = require('./encryption');
const wordList = require('./wordlist');
const pinInput = require('./input_pin');
// setup vars
const host = 'meta.marvinborner.de';
let peerId;
let currentPeerId; // defines the id of the current connected peer
const connectedPeers = [];
// setup generator
const generator = new xkcdPassword();
generator.initWithWordList(wordList);
/**
* Sets up encryption, user etc.
*/
(async () => {
// generate peerId
if (localStorage.getItem('peer_id') === null) {
peerId = await generator.generate()
.then(words => words.join('-'));
localStorage.setItem('peer_id', peerId);
} else {
peerId = localStorage.getItem('peer_id');
}
encryption.setupDatabase();
await evaluateKeyGeneration();
})();
/**
* Evaluates whether a key generation is needed and initializes regarding actions
* @returns {Promise<void>}
*/
async function evaluateKeyGeneration() {
if (localStorage.getItem('database') === 'success' && await encryption.isEncrypted()) {
pinInput.init(async (pin, tryCount) => {
try {
if (await encryption.getPublicKeyPeerId(await encryption.getPublicKey()) !== peerId
|| await encryption.getPublicKeyFingerprint(await encryption.getPublicKey())
!== await encryption.getPublicFingerprint()) {
throw 'Not verified!';
}
await encryption.generatePrivateFingerprint(pin);
await encryption.decryptPrivateKey(); // try decrypting
chat();
} catch (err) { // decrypting failed
if (tryCount === 3) {
encryption.reset();
console.error('Too many tries!');
pinInput.failure('This account got removed, the site will reload.');
setTimeout(() => location.reload(true), 1500);
} else if (err === 'Not verified!') {
console.error(err);
pinInput.failure(err);
} else {
console.error(err);
pinInput.failure(err.message);
}
}
});
} else {
pinInput.init(async (pin) => {
console.log('[LOG] No existing keys found! Generating...');
pinInput.generate();
await encryption.generatePrivateFingerprint(pin);
await encryption.generateKeys(peerId)
.then(() => chat());
});
}
}
/**
* Initializes chat functions
*/
function chat() {
// hide pin input and display chat
$('#enter_pin')
.hide();
$('#chat')
.fadeIn();
// init file sending support
initFileSending();
// start the peer
const peer = new Peer(peerId, {
host,
port: 8080,
path: '/api',
secure: true,
debug: 0,
});
// Peer events
peer.on('call', (call) => {
getMediaStream(stream => call.answer(stream));
call.on('stream', (stream) => {
const video = document.querySelector('audio');
video.srcObject = stream;
video.onloadedmetadata = () => {
video.play();
};
});
}); // TODO: Ask for call accept
peer.on('open', async (id) => {
await refreshContactList();
console.log('[LOG] Your ID is', id);
swal(
'Hello world!',
`Your ID is "${id}".\nYou can share this ID with your friends so they can chat with you!`,
'success',
);
});
peer.on('error', (err) => {
console.error(err);
if (err.type === 'network') {
swal('Connection to server lost!', '', 'error');
} else if (err.type === 'browser-incompatible') {
swal('Your server is not compatible!', 'Please update or use another browser!', 'error');
} else if (err.type === 'peer-unavailable') {
swal('Peer could not be found!', '', 'error');
} else if (err.type === 'unavailable-id') {
swal('Oh snap! Your ID isn\'t available!', '', 'error');
} else if (err.type === 'disconnected') {
swal('Not connected to the server!', 'Please reconnect using the anonymize button.', 'error');
} else {
swal('Unhandled Error!', `You just threw up this error: ${err.type}`, 'error');
}
});
// This event gets fired when the initiator wants to connect to the peer
peer.on('connection', async (conn) => {
/**
* Processes the connection after a declined/accepted connection request
* @param accepted
* @returns {Promise<void>}
*/
const processVerification = async (accepted) => {
if (accepted) {
currentPeerId = conn.peer;
connectedPeers[currentPeerId] = conn;
connectedPeers[currentPeerId].send({
type: 'state',
data: 'accepted',
});
console.log(`[LOG] Accepted connection request of ${currentPeerId}`);
connectedPeers[currentPeerId].on('data', async (data) => {
if (data.type === 'state' && data.data === 'received') {
console.log('[LOG] Connected to', currentPeerId);
if (await encryption.getPeerPublicKey(currentPeerId) === '') {
swal(
'New connection!',
`You have successfully connected to the user "${currentPeerId}"!`,
'success',
);
}
encryption.getMessages(
currentPeerId,
await encryption.getPeerPublicKey(currentPeerId),
)
.then(messages => messages.forEach(async (messageData) => {
await renderMessage(messageData);
}));
await setChatWindow();
transferKey(await encryption.getPublicKey());
} else if (data.type !== 'state') {
console.log('[LOG] Received new message!');
await renderMessage(data);
}
});
} else {
console.log(`[LOG] Declined connection request of ${conn.peer}`);
conn.send({
type: 'state',
data: 'declined',
});
// .then(() => conn.close()); TODO: Add promise for connection closing
}
};
if (await encryption.getPeerPublicKey(conn.peer) === '') {
// Asks if peer is unknown
console.log('[LOG] Connection request of unknown peer');
swal({
title: 'Connection request',
text: `The user "${conn.peer}" wants to connect to you.\nThis gets cancelled in 3 seconds.`,
timer: 3000,
icon: 'info',
buttons: true,
})
.then(accepted => processVerification(accepted));
} else {
// Peer is already known
console.log('[LOG] Connection request of known peer');
// emulate waiting time // TODO: Fix waiting time of known peer?
if (!(currentPeerId in connectedPeers)) {
setTimeout(async () => {
await processVerification(true);
}, 100);
}
}
});
/**
* Connects the initiator to a peer via his id
* @param id
* @returns {Promise<void>}
* TODO: Fix reconnecting after one-side page reload
*/
async function connect(id) {
// Only connect if not already connected
if (!(id in connectedPeers)) {
const connectionId = (await generator.generate()).join('-');
console.log('[LOG] Connecting to', id);
console.log('[LOG] Your connection ID is', connectionId);
const conn = peer.connect(id, { label: connectionId });
conn.on('data', async (data) => {
if (data.type === 'state' && data.data === 'accepted') {
currentPeerId = conn.peer;
connectedPeers[currentPeerId] = conn;
connectedPeers[currentPeerId].send({
type: 'state',
data: 'received',
});
console.log('[LOG] Connected to', currentPeerId);
if (await encryption.getPeerPublicKey(currentPeerId) === '') {
swal(`Successfully connected to "${currentPeerId}"!`, '', 'success');
}
await setChatWindow();
transferKey(await encryption.getPublicKey());
encryption.getMessages(
currentPeerId,
await encryption.getPeerPublicKey(currentPeerId),
)
.then(messages => messages.forEach(async (messageData) => {
await renderMessage(messageData);
}));
// override for persistence
conn.off();
connectedPeers[currentPeerId].on('data', async (message) => {
console.log('[LOG] Received new message!');
await renderMessage(message, false, arguments[0]);
});
connectedPeers[currentPeerId].on('close', async () => {
await refreshContactList();
swal('Disconnected!', `The connection to "${currentPeerId}" has been closed!`, 'error');
});
} else if (data.type === 'state') {
swal('Declined!', `The user "${conn.peer}" has declined your connection request.`, 'error');
conn.close();
} else if (data.type === 'key') {
await renderMessage(data);
}
});
} else {
currentPeerId = id;
await setChatWindow();
}
}
/**
* Sends a message to the peer with which you're currently connected
* @param message
* @returns {Promise<void>}
*/
async function sendMessage(message) {
try {
console.log(`[LOG] Sending message '${message}' to ${currentPeerId}`);
connectedPeers[currentPeerId].send({
type: 'text',
data: await encryption.encrypt(
message,
await encryption.getPeerPublicKey(currentPeerId),
),
});
await renderMessage(message, true);
} catch (err) {
console.error(err);
swal('Not connected!', 'You aren\'t connected to another peer right now.', 'error');
}
}
/**
* Transfers the (public) key to the currently connected peer
* @param key
*/
function transferKey(key) {
console.log(`[LOG] Transferring key to ${currentPeerId}`);
connectedPeers[currentPeerId].send({
type: 'key',
data: key,
});
}
/**
* Displays the correct chat window
*/
async function setChatWindow() {
$('#message_window_wrapper > *')
.hide();
if ($(`#message_window_wrapper div[id=${currentPeerId}]`).length === 0) {
$('#message_window_wrapper')
.append(`<div id="${currentPeerId}"></div>`);
await refreshContactList();
} else {
$(`#message_window_wrapper div[id=${currentPeerId}]`)
.fadeIn();
await refreshContactList();
}
}
/**
* Renders and processes the incoming messages
* @param message
* @param self
* @param targetId
*/
async function renderMessage(message, self = false, targetId = currentPeerId) {
const chatWindow = $(`#message_window_wrapper div[id=${targetId}]`);
if (self) {
chatWindow
.append(`<span style="color: green">${sanitizeText(message)}</span><br>`);
await encryption.storeMessage(targetId, message, true);
} else if (message.type === 'text') {
await encryption.storeMessage(targetId, message.data);
await encryption.decrypt(
message.data,
await encryption.getPeerPublicKey(targetId),
)
.then(plaintext => chatWindow
.append(`<span>${sanitizeText(plaintext)}</span><br>`));
} else if (message.type === 'decrypted') {
if (message.self) {
chatWindow
.append(`<span style="color: green">${sanitizeText(message.message)} - ${message.time}</span><br>`);
} else {
chatWindow
.append(`<span>${sanitizeText(message.message)} - ${message.time}</span><br>`);
}
} else if (message.type === 'file') {
await processFile(message, targetId);
} else if (message.type === 'key') {
encryption.storePeerPublicKey(targetId, message.data)
.then(() => refreshContactList());
} else {
console.error('Received unsupported message!');
}
}
/**
* Sends a message of the text input field
* @returns {Promise<void>}
*/
async function sendMessageFromInput() {
const messageInput = $('#message');
if (messageInput.val()
.replace(/\s/g, '') !== '') {
await sendMessage(messageInput.val());
}
messageInput.val('');
}
/**
* Initialized the file sending feature
* TODO: Encrypt files
*/
function initFileSending() {
dragDrop('body', (files) => {
if (connectedPeers[currentPeerId] !== undefined) {
files.forEach(async (file) => {
const fileObj = {
type: 'file',
info: {
name: file.name,
size: file.size,
type: file.type,
},
data: file,
};
await processFile(fileObj);
connectedPeers[currentPeerId].send(fileObj);
console.log('[LOG] File sent!'); // TODO: Make it async!
});
}
});
}
/**
* Processes a received/sent file
* @param file
* @param targetId
*/
async function processFile(file, targetId = currentPeerId) {
const blob = new Blob([file.data], { type: file.info.type });
const blobUrl = URL.createObjectURL(blob);
const fileName = `${file.info.name} (${formatBytes(file.info.size)})`;
// REMEMBER: Use 'self' instead of 'true' when encrypting files! => TODO: Fix 'self' in files
// TODO: Store files
await encryption.storeMessage(targetId, fileName, true);
$(`#message_window_wrapper div[id=${targetId}]`)
.append(`<a href="${blobUrl}" download="${sanitizeText(file.info.name)}">${sanitizeText(fileName)}</a><br>`);
// TODO: Show file preview
}
/**
* Formats bytes to a human readable string
* @param bytes
* @returns {string}
*/
function formatBytes(bytes) {
if (bytes === 0) return '0 Bytes';
const sizes = ['Bytes', 'KiB', 'MiB', 'GiB', 'TiB', 'PiB', 'EiB', 'ZiB', 'YiB'];
const i = Math.floor(Math.log(bytes) / Math.log(1024));
return `${parseFloat((bytes / (1024 ** i)).toFixed(2))} ${sizes[i]}`;
}
/**
* Sanitizes a given string to prevent html/sql/... injection
* @param text
* @returns {string}
*/
function sanitizeText(text) {
return text.replace(/</g, '<')
.replace(/>/g, '>');
}
/**
* Shows warning modal and deletes account
*/
function deleteAccount() {
swal({
title: 'Are you sure?',
text: 'Once deleted, you will not be able to recover any messages or connections!',
icon: 'warning',
buttons: true,
dangerMode: true,
})
.then((willDelete) => {
if (willDelete) {
encryption.reset();
swal('Successfully deleted your data.', '', 'success')
.then(() => location.reload(true));
}
});
}
/**
* Refreshes the contact list at the left side of the chat
* @returns {Promise<void>}
*/
async function refreshContactList() {
try {
(await encryption.getStoredPeers()).forEach((peerObj) => {
if (!$(`[data-peer="${peerObj.peer_id}"]`).length) { // Contact isn't already there
$('#contact_list')
.append(`
<column>
<button
class="button action-button is-big is-outlined is-white tooltip"
data-peer="${peerObj.peer_id}"
data-tooltip="${peerObj.peer_id.split('-').map(text => text[0]).join('')}">
<i class="fas fa-user"></i>
</button>
</column>
`);
$(`[data-peer="${peerObj.peer_id}"]`)
.off('click')
.on('click', () => connect(peerObj.peer_id));
}
});
$('[data-peer]')
.removeClass('is-success');
if (connectedPeers[currentPeerId] !== undefined) {
$(`[data-peer="${currentPeerId}"]`)
.addClass('is-success');
}
} catch (err) {
console.error(err);
}
console.log('[LOG] Refreshed contact list');
}
/**
* Shows modal for adding a contact
* TODO: Fix selecting from dropdown on enter
*/
function addContact() {
let idComplete = false;
const observer = new MutationObserver(() => {
$('#contact_id_input')
.on('keydown', (event) => {
if (event.keyCode === $.ui.keyCode.TAB) {
event.preventDefault();
} else if (!idComplete && event.keyCode === $.ui.keyCode.ENTER) {
event.preventDefault();
}
})
.autocomplete({
minLength: 1,
source(request, response) {
response($.ui.autocomplete.filter(
wordList, request.term.split(/-\s*/)
.pop(),
));
},
focus() {
return false;
},
select(event, ui) {
const words = this.value.split(/-\s*/);
words.pop();
if (words.length !== 3) {
words.push(ui.item.value);
words.push('');
this.value = words.join('-');
} else {
this.value = `${words.join('-')}-${ui.item.value}`;
idComplete = true;
}
return false;
},
});
});
observer.observe($('body')
.get(0), {
attributes: true,
childList: true,
subtree: true,
});
swal('Add a contact', {
buttons: true,
content: {
element: 'input',
attributes: {
id: 'contact_id_input',
placeholder: 'Contact ID',
},
},
})
.then((contactId) => {
observer.disconnect();
if (contactId.match(/^([a-zA-Z]*-[a-zA-Z]*)+$/)) {
connect(contactId)
.then(() => swal({
title: 'Connecting...',
icon: 'info',
text: ' ',
buttons: false,
closeOnClickOutside: false,
closeOnEsc: false,
}));
} else {
swal('Invalid ID!', '', 'error');
}
});
}
/**
* Click events
*/
$(document)
.ready(() => {
$('#send_message')
.on('click', async () => sendMessageFromInput());
$('#message')
.on('keydown', async (e) => {
if (e.key === 'Enter') await sendMessageFromInput();
});
// FABs
$('#add_contact')
.on('click', () => addContact());
$('#logout')
.on('click', () => {
if (currentPeerId in connectedPeers) connectedPeers[currentPeerId].close();
location.reload(true);
});
$('#delete')
.on('click', () => deleteAccount());
$('#anonymize')
.on('click', () => {
if (peer.disconnected) {
swal('Reconnected to broker server!', 'You can now connect to new peers again.', 'success')
.then(() => peer.reconnect());
} else {
peer.disconnect();
swal('Disconnected from broker server!', 'You will still be able to send and receive messages.', 'success');
}
});
$('#call')
.on('click', () => getMediaStream((stream) => {
peer.call(currentPeerId, stream); // TODO: Encrypt call
}));
});
}
/**
* Gets a video and audio stream
* @param callback
*/
function getMediaStream(callback) {
navigator.mediaDevices.getUserMedia({
audio: true,
video: false, // REMEMBER: Activate video stream
})
.then(stream => callback(stream))
.catch(err => console.error(err.message));
}
window.$ = $;
|