aboutsummaryrefslogtreecommitdiffhomepage
path: root/public/scripts/chat.js
blob: e81bd44847a6d8a90833b8d47bed9711045553b2 (plain) (blame)
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
const $ = require('jquery');
const encryption = require('./2_encryption');
const nanoid = require('nanoid');

let connectedPeers = []; // TODO: Save new peers in array
let connectedPeer;
const peerId = nanoid();

// setup encryption
(async () => {
    if (localStorage.getItem('database') === 'success' && encryption.setupConn() && await encryption.check()) {
        // TODO: Ask for passphrase
        chat();
    } else {
        console.log('[LOG] No existing keys found! Generating...');
        encryption.setup();
        (async () => await encryption.generate(peerId, 'supersecure').then(() => chat()))()
    }
})();

function chat() {
    const peer = new Peer(peerId, {host: '127.0.0.1', port: 4242, path: '/', debug: 0});

    // Peer events
    peer.on('open', id => console.log('[LOG] Your ID is', id));
    peer.on('error', err => console.error(err));
    peer.on('connection', conn => {
        connectedPeer = conn;
        console.log('[LOG] Connected with', connectedPeer.peer);
        connectedPeer.on('open', async () => await encryption.getPublic().then(res => transferKey(res)));
        connectedPeer.on('data', async message => await receivedMessage(message));
    });

    /**
     * Connects to a peer via his id
     * @param id
     */
    function connect(id) {
        const connectionId = nanoid();
        console.log('[LOG] Connecting to', id);
        console.log('[LOG] Your connection ID is', connectionId);
        connectedPeer = peer.connect(id, {label: connectionId, reliable: true});
        console.log('[LOG] Connected with', connectedPeer.peer);
        connectedPeer.on('open', async () => await encryption.getPublic().then(res => transferKey(res)));
        connectedPeer.on('data', async message => await receivedMessage(message))
    }

    /**
     * Sends a message to the peer with which you're currently connected
     * @param message
     * @returns {Promise<void>}
     */
    async function sendMessage(message) {
        console.log(`[LOG] Sending message ${message} to ${connectedPeer.peer}`);
        await encryption.get(connectedPeer.peer).then(async peerKey => {
            await encryption.encrypt(message, peerKey).then(async encrypted => {
                connectedPeer.send({type: 'text', data: encrypted});
                await receivedMessage(message, true);
            })
        })
    }

    /**
     * Transfers the (public) key to the currently connected peer
     * @param key
     */
    function transferKey(key) {
        console.log(`[LOG] Transferring key to ${connectedPeer.peer}`);
        connectedPeer.send({type: 'key', data: key});
    }

    /**
     * Renders and processes the incoming messages
     * @param message
     * @param self
     */
    async function receivedMessage(message, self = false) {
        if (self) {
            $('#messages').append(`<span style="color: green">${message}</span><br>`);
        } else {
            if (message.type === 'text') {
                // TODO: Cleanup async method calls
                await encryption.get(connectedPeer.peer).then(async peerKey => {
                    await encryption.getPrivate().then(async privateKey => {
                        await encryption.decrypt(message.data, peerKey, privateKey, 'supersecure')
                            .then(plaintext => $('#messages').append(`${plaintext}<br>`));
                    })
                })
            } else if (message.type === 'key') {
                await encryption.store(connectedPeer.peer, message.data)
            }
        }
    }

    /**
     * Events after load
     */
    $(document).ready(() => {
        $('#add_peer_id').on('click', () => connect($('#peer_id').val()));
        $('#send_message').on('click', async () => await sendMessage($('#message').val()));

        $('[toggle-contact-modal]').on('click', () => $('#add_contact_modal').toggleClass('is-active'))
    });
}

//encryption.test(); // TESTING IF ENCRYPTION WORKS