Skip to content
This repository has been archived by the owner on May 22, 2021. It is now read-only.

Commit

Permalink
removing unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
dnarcese committed Jun 23, 2017
1 parent aa8c1af commit 6ee2df5
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 45 deletions.
27 changes: 0 additions & 27 deletions frontend/src/upload.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,33 +94,6 @@ $(document).ready(function() {
ev.preventDefault();
};

//load previous uploads
function checkUploads(file) {
return new Promise((resolve, reject) => {
const xhr = new XMLHttpRequest();
xhr.responseType = 'json';
xhr.onreadystatechange = () => {
if (xhr.readyState == 4 && xhr.status == 200) {
resolve(xhr.response);
} else if (xhr.readyState == 4 && xhr.status == 404) {
reject('error code: ' + xhr.status);
}
};
xhr.onerror = () => {
reject('There was a network error.');
};
xhr.open('get', '/file/' + id, true);
xhr.send();
}).then(
response => {
populateFileList(response, url);
},
error => {
console.log(error);
}
);
}

//update file table with current files in localStorage
function populateFileList(file) {
file = JSON.parse(file);
Expand Down
18 changes: 0 additions & 18 deletions server/portal_server.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,24 +50,6 @@ app.get('/exists/:id', (req, res) => {
}).catch(err => res.sendStatus(404));
});

app.get('/file/:id', (req, res) => {
let id = req.params.id;
storage.filename(id).then(filename => {
storage
.length(id)
.then(contentLength => {
res.json({
name: filename,
filesize: bytes(contentLength),
fileId: id
});
})
.catch(() => {
console.log('error retrieving id ' + id);
});
});
});

app.get('/download/:id', (req, res) => {
const id = req.params.id;
storage.filename(id).then(filename => {
Expand Down

0 comments on commit 6ee2df5

Please sign in to comment.