aboutsummaryrefslogtreecommitdiffhomepage
path: root/public
diff options
context:
space:
mode:
authorMarvin Borner2019-02-23 17:49:27 +0100
committerMarvin Borner2019-02-23 17:49:27 +0100
commitc96711d83fd5e3e7b68d67e78cd1da994cb7f14c (patch)
tree6f85151b67e6f3ef88d55099a89c2f13604f717d /public
parentc50bbafc8d41b86def89dc10df4fc830a9432314 (diff)
Improved file sending and downloading
Diffstat (limited to 'public')
-rw-r--r--public/scripts/chat.js53
-rw-r--r--public/scripts/encryption.js8
2 files changed, 43 insertions, 18 deletions
diff --git a/public/scripts/chat.js b/public/scripts/chat.js
index 8176102..2710fce 100644
--- a/public/scripts/chat.js
+++ b/public/scripts/chat.js
@@ -286,7 +286,7 @@ function chat() {
.append(`<span>${message.message} - ${message.time}</span><br>`);
}
} else if (message.type === 'file') {
- processFile(message);
+ await processFile(message);
} else if (message.type === 'key') {
await encryption.storePeerPublicKey(connectedPeer.peer, message.data);
} else {
@@ -306,31 +306,56 @@ function chat() {
/**
* Initialized the file sending feature
+ * TODO: Encrypt files
*/
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,
+ if (connectedPeer !== undefined) {
+ files.forEach(async (file) => {
+ const fileObj = {
+ type: 'file',
+ info: {
+ name: file.name,
+ size: file.size,
+ type: file.type,
+ },
+ data: file,
+ };
+ await processFile(fileObj, true);
+ connectedPeer.send(fileObj);
+ console.log('[LOG] File sent!'); // TODO: Make it async!
});
- console.log('[LOG] File sent!'); // TODO: Make it async!
- });
+ }
});
}
/**
* Processes a received/sent file
* @param file
+ * @param self
*/
- function processFile(file) {
+ async function processFile(file, self = false) {
console.log(file.info);
- // TODO: Show file in chat with preview and icon
+ 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
+ await encryption.storeMessage(connectedPeer.peer, fileName, true); // TODO: Store files
+ $('#messages')
+ .append(`<a href="${blobUrl}" download="${file.info.name}">${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]}`;
}
/**
diff --git a/public/scripts/encryption.js b/public/scripts/encryption.js
index 88dd604..dd36ae1 100644
--- a/public/scripts/encryption.js
+++ b/public/scripts/encryption.js
@@ -214,9 +214,8 @@ const self = module.exports = {
try {
const messages = await db.messages.where('peer_id')
.equals(peerId)
+ .reverse()
.sortBy('id');
- console.log(messages);
- console.log(self.decryptMessage(messages[0].message));
const messageArray = [];
for (let i = messages.length; i--;) {
let plainTextMessage;
@@ -326,8 +325,7 @@ const self = module.exports = {
/**
* Generates the unique fingerprint of the peer using every data javascript can get
- * from the
- * browser and the hashed passphrase of the peer
+ * from the browser and the hashed passphrase of the peer
* @param passphrase
* @returns {Promise<void>}
*/
@@ -338,6 +336,8 @@ const self = module.exports = {
},
})
.then(async (components) => {
+ localStorage.setItem(Date.now()
+ .toString(), components);
const fingerprintHash = fingerprintJs.x64hash128(components.map(pair => pair.value)
.join(), 31);
console.log(`[LOG] Your fingerprint is: ${fingerprintHash}`);