const FileSender = require('./fileSender'); const { notify, gcmCompliant } = require('./utils'); const $ = require('jquery'); require('jquery-circle-progress'); const Raven = window.Raven; $(document).ready(function() { gcmCompliant().catch(err => { $('#page-one').hide(); $('#unsupported-browser').show(); }); $('#file-upload').change(onUpload); $('body').on('dragover', allowDrop).on('drop', onUpload); // reset copy button const $copyBtn = $('#copy-btn'); $copyBtn.attr('disabled', false); $('#link').attr('disabled', false); $copyBtn.attr('data-l10n-id', 'copyUrlFormButton'); $('#upload-progress').hide(); $('#share-link').hide(); $('#upload-error').hide(); $('#unsupported-browser').hide(); $('#compliance-error').hide(); $('#page-one').show(); if (localStorage.length === 0) { toggleHeader(); } else { for (let i = 0; i < localStorage.length; i++) { const id = localStorage.key(i); //check if file exists before adding to list checkExistence(id, true); } } // copy link to clipboard $copyBtn.click(() => { const aux = document.createElement('input'); aux.setAttribute('value', $('#link').attr('value')); document.body.appendChild(aux); aux.select(); document.execCommand('copy'); document.body.removeChild(aux); //disable button for 3s $copyBtn.attr('disabled', true); $('#link').attr('disabled', true); $copyBtn.html(''); window.setTimeout(() => { $copyBtn.attr('disabled', false); $('#link').attr('disabled', false); $copyBtn.attr('data-l10n-id', 'copyUrlFormButton'); }, 3000); }); $('.upload-window').on('dragover', () => { $('.upload-window').addClass('ondrag'); }); $('.upload-window').on('dragleave', () => { $('.upload-window').removeClass('ondrag'); }); //initiate progress bar $('#ul-progress').circleProgress({ value: 0.0, startAngle: -Math.PI / 2, fill: '#3B9DFF', size: 158 }); //link back to homepage $('.send-new').attr('href', window.location); // on file upload by browse or drag & drop function onUpload(event) { event.preventDefault(); let file = ''; if (event.type === 'drop') { file = event.originalEvent.dataTransfer.files[0]; } else { file = event.target.files[0]; } const expiration = 24 * 60 * 60 * 1000; //will eventually come from a field const fileSender = new FileSender(file); $('#cancel-upload').click(() => { fileSender.cancel(); location.reload(); document.l10n.formatValue('uploadCancelNotification') .then(str => { console.log('here') notify(str); }) }); fileSender.on('progress', progress => { $('#page-one').hide(); $('#upload-error').hide(); $('#upload-progress').show(); //don't allow drag and drop when not on page-one $('body').off('drop', onUpload); const percent = progress[0] / progress[1]; // update progress bar $('#ul-progress').circleProgress('value', percent); $('#ul-progress').circleProgress().on('circle-animation-end', function() { $('.percent-number').html(`${Math.floor(percent * 100)}`); }); if (progress[1] < 1000000) { $('.progress-text').text( `${file.name} (${(progress[0] / 1000).toFixed(1)}KB of ${(progress[1] / 1000).toFixed(1)}KB)` ); } else if (progress[1] < 1000000000) { $('.progress-text').text( `${file.name} (${(progress[0] / 1000000).toFixed(1)}MB of ${(progress[1] / 1000000).toFixed(1)}MB)` ); } else { $('.progress-text').text( `${file.name} (${(progress[0] / 1000000).toFixed(1)}MB of ${(progress[1] / 1000000000).toFixed(1)}GB)` ); } }); fileSender.on('loading', isStillLoading => { // The file is loading into Firefox at this stage if (isStillLoading) { console.log('Processing'); } else { console.log('Finished processing'); } }); fileSender.on('hashing', isStillHashing => { // The file is being hashed if (isStillHashing) { console.log('Hashing'); } else { console.log('Finished hashing'); } }); fileSender.on('encrypting', isStillEncrypting => { // The file is being encrypted if (isStillEncrypting) { console.log('Encrypting'); } else { console.log('Finished encrypting'); } }); let t = ''; fileSender .upload() .then(info => { const fileData = { name: file.name, fileId: info.fileId, url: info.url, secretKey: info.secretKey, deleteToken: info.deleteToken, creationDate: new Date(), expiry: expiration }; localStorage.setItem(info.fileId, JSON.stringify(fileData)); $('#upload-filename').attr('data-l10n-id', 'uploadSuccessConfirmHeader'); t = window.setTimeout(() => { $('#page-one').hide(); $('#upload-progress').hide(); $('#upload-error').hide(); $('#share-link').show(); }, 2000); populateFileList(JSON.stringify(fileData)); document.l10n.formatValue('notifyUploadDone').then(str => { notify(str); }); }) .catch(err => { Raven.captureException(err); console.log(err); $('#page-one').hide(); $('#upload-progress').hide(); $('#upload-error').show(); window.clearTimeout(t); }); } function allowDrop(ev) { ev.preventDefault(); } function checkExistence(id, populate) { const xhr = new XMLHttpRequest(); xhr.onreadystatechange = () => { if (xhr.readyState === XMLHttpRequest.DONE) { if (xhr.status === 200) { if (populate) { populateFileList(localStorage.getItem(id)); } } else if (xhr.status === 404) { localStorage.removeItem(id); } } }; xhr.open('get', '/exists/' + id, true); xhr.send(); } //update file table with current files in localStorage function populateFileList(file) { try { file = JSON.parse(file); } catch (e) { return; } const row = document.createElement('tr'); const name = document.createElement('td'); const link = document.createElement('td'); const $copyIcon = $('', { src: '/resources/copy-16.svg', class: 'icon-copy', 'data-l10n-id': 'copyUrlHover'}); const expiry = document.createElement('td'); const del = document.createElement('td'); const $delIcon = $('', { src: '/resources/close-16.svg', class: 'icon-delete', 'data-l10n-id': 'deleteButtonHover' }); const popupDiv = document.createElement('div'); const $popupText = $('