From 169c123c1589aeb4a38a123600c692fdecba4d90 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 23 Feb 2019 00:06:32 +0100 Subject: Added file sharing --- public/scripts/chat.js | 47 ++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 42 insertions(+), 5 deletions(-) (limited to 'public') diff --git a/public/scripts/chat.js b/public/scripts/chat.js index 0e301e5..ef3eaef 100644 --- a/public/scripts/chat.js +++ b/public/scripts/chat.js @@ -8,8 +8,10 @@ // general imports const $ = jQuery = require('jquery'); require('jquery-ui-bundle'); +const util = require('util'); 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'); @@ -94,6 +96,9 @@ function chat() { $('#chat') .fadeIn(); + // init file sending support + initFileSending(); + // start the peer const peer = new Peer(peerId, { host, @@ -172,8 +177,8 @@ function chat() { conn.send({ type: 'state', data: 'declined', - }) - .then(() => conn.close()); + }); + // .then(() => conn.close()); TODO: Add promise for connection closing } }); }); @@ -267,6 +272,8 @@ function chat() { ) .then(plaintext => $('#messages') .append(`${plaintext}
`)); + } else if (message.type === 'file') { + processFile(message); } else if (message.type === 'key') { await encryption.storePeerPublicKey(connectedPeer.peer, message.data); } @@ -274,11 +281,41 @@ function chat() { /** * Sends a message of the text input field - * @returns {Promise} + * @returns {Promise} */ async function sendMessageFromInput() { const messageInput = $('#message'); - return await sendMessage(messageInput.val()) & messageInput.val(''); + await sendMessage(messageInput.val()); + messageInput.val(''); + } + + /** + * Initialized the file sending feature + */ + function initFileSending() { + dragDrop('body', (files) => { + files.forEach(async (file) => { + connectedPeer.send({ + type: 'file', + info: { + name: file.name, + size: file.size, + type: file.type, + }, + data: file, + }); + console.log('[LOG] File sent!'); // TODO: Make it async! + }); + }); + } + + /** + * Processes a received/sent file + * @param file + */ + function processFile(file) { + console.log(file.info); + // TODO: Show file in chat with preview and icon } /** @@ -384,7 +421,7 @@ function chat() { $(document) .ready(() => { $('#send_message') - .on('click', async () => await sendMessageFromInput()); + .on('click', async () => sendMessageFromInput()); $('#message') .on('keydown', async (e) => { if (e.key === 'Enter') await sendMessageFromInput(); -- cgit v1.2.3