spee.ch/public/assets/js/claimPublish.js

107 lines
3.7 KiB
JavaScript
Raw Normal View History

2017-06-22 04:45:56 +02:00
// define variables
var socket = io();
var uploader = new SocketIOFileUpload(socket);
var stagedFiles = null;
/* configure the submit button */
document.getElementById('publish-submit').addEventListener('click', function(event){
event.preventDefault();
2017-06-23 19:06:43 +02:00
var name = document.getElementById('publish-name').value;
2017-07-03 20:36:51 +02:00
var invalidCharacters = /[^A-Za-z0-9,-]/.exec(name);
2017-07-03 23:48:35 +02:00
// validate 'name' field
2017-06-23 19:06:43 +02:00
if (invalidCharacters) {
2017-07-03 20:36:51 +02:00
alert(invalidCharacters + ' is not allowed. A-Z, a-z, 0-9, and "-" only.');
2017-06-23 19:06:43 +02:00
return;
} else if (name.length < 1) {
alert("You must enter a name for your claim");
return;
}
2017-07-03 23:48:35 +02:00
// make sure only 1 file was selected
if (!stagedFiles) {
2017-06-23 19:06:43 +02:00
alert("Please select a file");
2017-07-03 23:48:35 +02:00
return;
} else if (stagedFiles.length > 1) {
alert("Only one file is allowed at a time");
return;
}
// make sure the content type is acceptable
switch (stagedFiles[0].type) {
case "image/png":
case "image/jpeg":
case "image/gif":
case "video/mp4":
break;
default:
alert("Only .png, .jpeg, .gif, and .mp4 files are currently supported");
return;
2017-06-22 04:45:56 +02:00
}
2017-07-03 23:48:35 +02:00
// make sure the name is available
var xhttp;
xhttp = new XMLHttpRequest();
xhttp.open('GET', '/api/isClaimAvailable/' + name, true);
xhttp.responseType = 'json';
xhttp.onreadystatechange = function() {
if (this.readyState == 4 ) {
if ( this.status == 200) {
if (this.response == true) {
uploader.submitFiles(stagedFiles);
} else {
alert("That name has already been claimed by spee.ch. Please choose a different name.");
}
2017-07-03 23:48:35 +02:00
} else {
console.log("request to check claim name failed with status:", this.status);
};
}
};
xhttp.send();
2017-06-22 04:45:56 +02:00
})
/* socketio-file-upload listeners */
2017-07-06 08:42:08 +02:00
uploader.maxFileSize = 5000000;
uploader.addEventListener("error", function(data){
if (data.code === 1) {
alert("Sorry, uploading is limitted to 5 megabytes.");
}
});
2017-06-22 04:45:56 +02:00
uploader.addEventListener('start', function(event){
var name = document.getElementById('publish-name').value;
var license = document.getElementById('publish-license').value;
var nsfw = document.getElementById('publish-nsfw').checked;
2017-06-22 04:45:56 +02:00
event.file.meta.name = name;
event.file.meta.license = license;
event.file.meta.nsfw = nsfw;
event.file.meta.type = stagedFiles[0].type;
// re-set the html in the publish area
document.getElementById('publish-active-area').innerHTML = '<div id="publish-status"></div><div id="progress-bar"></div>';
// start a progress animation
createProgressBar(document.getElementById('progress-bar'), 12);
2017-06-30 07:26:29 +02:00
// google analytics
ga('send', {
hitType: 'event',
eventCategory: 'publish',
eventAction: name
});
2017-06-22 04:45:56 +02:00
});
uploader.addEventListener('progress', function(event){
var percent = event.bytesLoaded / event.file.size * 100;
updatePublishStatus('File is ' + percent.toFixed(2) + '% loaded to the server');
});
/* socket.io message listeners */
socket.on('publish-status', function(msg){
updatePublishStatus(msg);
});
socket.on('publish-failure', function(msg){
2017-07-07 02:38:57 +02:00
document.getElementById('publish-active-area').innerHTML = '<p> --(✖╭╮✖)→ </p><p>' + JSON.stringify(msg) + '</p><strong>For help, post the above error text in the #speech channel on the <a href="https://lbry.slack.com/" target="_blank">lbry slack</a></strong>';
2017-06-22 04:45:56 +02:00
});
socket.on('publish-complete', function(msg){
var publishResults;
2017-07-07 03:03:29 +02:00
var showUrl = '/show/' + msg.name + '/' + msg.result.claim_id;
2017-06-22 04:45:56 +02:00
// build new publish area
2017-07-07 02:38:57 +02:00
publishResults = '<p>Your publish is complete! You are being redirected to it now.</p>';
publishResults += '<p><a target="_blank" href="' + showUrl + '">If you do not get redirected, click here.</a></p>';
2017-06-22 04:45:56 +02:00
// update publish area
document.getElementById('publish-active-area').innerHTML = publishResults;
2017-07-07 02:38:57 +02:00
window.location.href = showUrl;
2017-06-22 04:45:56 +02:00
});