2017-07-28 23:39:39 +02:00
|
|
|
|
|
|
|
|
|
|
|
// validation function which checks the proposed file's type, size, and name
|
|
|
|
function validateFile(file) {
|
|
|
|
if (!file) {
|
|
|
|
throw new Error('no file provided');
|
|
|
|
}
|
2017-07-28 23:54:02 +02:00
|
|
|
if (/'/.test(file.name)) {
|
|
|
|
throw new Error('apostrophes are not allowed in the file name');
|
|
|
|
}
|
2017-07-28 23:39:39 +02:00
|
|
|
// validate size and type
|
|
|
|
switch (file.type) {
|
|
|
|
case 'image/jpeg':
|
|
|
|
case 'image/jpg':
|
|
|
|
case 'image/png':
|
|
|
|
case 'image/gif':
|
2017-07-31 19:24:17 +02:00
|
|
|
if (file.size > 50000000){
|
|
|
|
throw new Error('Sorry, images are limited to 50 megabytes.');
|
2017-07-28 23:39:39 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'video/mp4':
|
|
|
|
if (file.size > 50000000){
|
|
|
|
throw new Error('Sorry, videos are limited to 50 megabytes.');
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
throw new Error(file.type + ' is not a supported file type. Only, .jpeg, .png, .gif, and .mp4 files are currently supported.')
|
|
|
|
}
|
|
|
|
}
|
2017-09-19 21:54:23 +02:00
|
|
|
// validation function that checks to make sure the claim name is valid
|
|
|
|
function validateClaimName (name) {
|
|
|
|
// ensure a name was entered
|
|
|
|
if (name.length < 1) {
|
2017-09-20 20:36:20 +02:00
|
|
|
throw new NameError("You must enter a name for your url");
|
2017-09-19 21:54:23 +02:00
|
|
|
}
|
|
|
|
// validate the characters in the 'name' field
|
|
|
|
const invalidCharacters = /[^A-Za-z0-9,-]/g.exec(name);
|
|
|
|
if (invalidCharacters) {
|
2017-09-20 20:36:20 +02:00
|
|
|
throw new NameError('"' + invalidCharacters + '" characters are not allowed in the url.');
|
2017-09-19 21:54:23 +02:00
|
|
|
}
|
2017-09-19 17:47:24 +02:00
|
|
|
}
|
|
|
|
|
2017-09-20 03:50:25 +02:00
|
|
|
function validateChannelName (name) {
|
|
|
|
name = name.substring(name.indexOf('@') + 1);
|
|
|
|
console.log(name);
|
|
|
|
// ensure a name was entered
|
|
|
|
if (name.length < 1) {
|
2017-09-20 18:49:05 +02:00
|
|
|
throw new ChannelNameError("You must enter a name for your channel");
|
2017-09-20 03:50:25 +02:00
|
|
|
}
|
|
|
|
// validate the characters in the 'name' field
|
|
|
|
const invalidCharacters = /[^A-Za-z0-9,-,@]/g.exec(name);
|
|
|
|
if (invalidCharacters) {
|
2017-09-20 18:49:05 +02:00
|
|
|
throw new ChannelNameError('"' + invalidCharacters + '" characters are not allowed in the channel name.');
|
2017-09-20 03:50:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function validatePassword (password) {
|
|
|
|
if (password.length < 1) {
|
2017-09-20 19:14:00 +02:00
|
|
|
throw new ChannelPasswordError("You must enter a password for you channel");
|
2017-09-20 03:50:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-19 21:54:23 +02:00
|
|
|
function cleanseClaimName(name) {
|
|
|
|
name = name.replace(/\s+/g, '-'); // replace spaces with dashes
|
|
|
|
name = name.replace(/[^A-Za-z0-9-]/g, ''); // remove all characters that are not A-Z, a-z, 0-9, or '-'
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
|
|
|
// validation functions to check claim & channel name eligibility as the inputs change
|
|
|
|
|
|
|
|
function isNameAvailable (name, apiUrl) {
|
2017-09-19 17:47:24 +02:00
|
|
|
return new Promise(function(resolve, reject) {
|
|
|
|
// make sure the claim name is still available
|
|
|
|
var xhttp;
|
|
|
|
xhttp = new XMLHttpRequest();
|
2017-09-19 21:54:23 +02:00
|
|
|
xhttp.open('GET', apiUrl + name, true);
|
2017-09-19 17:47:24 +02:00
|
|
|
xhttp.responseType = 'json';
|
|
|
|
xhttp.onreadystatechange = function() {
|
|
|
|
if (this.readyState == 4 ) {
|
|
|
|
if ( this.status == 200) {
|
|
|
|
if (this.response == true) {
|
|
|
|
resolve();
|
|
|
|
} else {
|
2017-09-20 20:36:20 +02:00
|
|
|
reject( new NameError("That name has already been claimed by someone else."));
|
2017-09-19 17:47:24 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
reject("request to check claim name failed with status:" + this.status);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
xhttp.send();
|
|
|
|
});
|
2017-07-28 23:39:39 +02:00
|
|
|
}
|
2017-09-19 17:47:24 +02:00
|
|
|
|
2017-09-19 21:54:23 +02:00
|
|
|
function showError(errorDisplay, errorMsg) {
|
|
|
|
errorDisplay.hidden = false;
|
|
|
|
errorDisplay.innerText = errorMsg;
|
2017-07-28 23:39:39 +02:00
|
|
|
}
|
|
|
|
|
2017-09-19 21:54:23 +02:00
|
|
|
function hideError(errorDisplay) {
|
|
|
|
errorDisplay.hidden = true;
|
|
|
|
errorDisplay.innerText = '';
|
2017-07-28 23:39:39 +02:00
|
|
|
}
|
2017-09-19 21:54:23 +02:00
|
|
|
|
|
|
|
function showSuccess (successElement) {
|
|
|
|
successElement.hidden = false;
|
|
|
|
successElement.innerHTML = "✔";
|
2017-07-28 23:39:39 +02:00
|
|
|
}
|
2017-09-19 17:47:24 +02:00
|
|
|
|
2017-09-19 21:54:23 +02:00
|
|
|
function hideSuccess (successElement) {
|
|
|
|
successElement.hidden = true;
|
|
|
|
successElement.innerHTML = "";
|
|
|
|
}
|
2017-09-19 17:47:24 +02:00
|
|
|
|
2017-09-20 03:50:25 +02:00
|
|
|
function checkAvailability(name, successDisplayElement, errorDisplayElement, validateName, isNameAvailable, apiUrl) {
|
2017-09-19 17:47:24 +02:00
|
|
|
try {
|
2017-09-19 21:54:23 +02:00
|
|
|
// check to make sure the characters are valid
|
2017-09-20 03:50:25 +02:00
|
|
|
validateName(name);
|
2017-09-19 17:47:24 +02:00
|
|
|
// check to make sure it is available
|
2017-09-19 21:54:23 +02:00
|
|
|
isNameAvailable(name, apiUrl)
|
2017-09-19 17:47:24 +02:00
|
|
|
.then(function() {
|
2017-09-19 21:54:23 +02:00
|
|
|
hideError(errorDisplayElement);
|
|
|
|
showSuccess(successDisplayElement)
|
2017-09-19 17:47:24 +02:00
|
|
|
})
|
|
|
|
.catch(function(error) {
|
2017-09-19 21:54:23 +02:00
|
|
|
hideSuccess(successDisplayElement);
|
|
|
|
showError(errorDisplayElement, error.message);
|
2017-09-19 17:47:24 +02:00
|
|
|
});
|
|
|
|
} catch (error) {
|
2017-09-19 21:54:23 +02:00
|
|
|
hideSuccess(successDisplayElement);
|
|
|
|
showError(errorDisplayElement, error.message);
|
2017-09-19 17:47:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-19 21:54:23 +02:00
|
|
|
function checkClaimName(name){
|
2017-09-20 00:39:54 +02:00
|
|
|
const successDisplayElement = document.getElementById('input-success-claim-name');
|
|
|
|
const errorDisplayElement = document.getElementById('input-error-claim-name');
|
2017-09-20 03:50:25 +02:00
|
|
|
checkAvailability(name, successDisplayElement, errorDisplayElement, validateClaimName, isNameAvailable, '/api/isClaimAvailable/');
|
2017-09-19 21:54:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function checkChannelName(name){
|
2017-09-20 00:39:54 +02:00
|
|
|
const successDisplayElement = document.getElementById('input-success-channel-name');
|
|
|
|
const errorDisplayElement = document.getElementById('input-error-channel-name');
|
2017-09-20 03:50:25 +02:00
|
|
|
name = `@${name}`;
|
|
|
|
checkAvailability(name, successDisplayElement, errorDisplayElement, validateChannelName, isNameAvailable, '/api/isChannelAvailable/');
|
2017-09-19 21:54:23 +02:00
|
|
|
}
|
|
|
|
|
2017-07-28 23:39:39 +02:00
|
|
|
// validation function which checks all aspects of the publish submission
|
2017-09-20 18:49:05 +02:00
|
|
|
function validateFilePublishSubmission(stagedFiles, claimName, channelName){
|
2017-08-03 19:44:19 +02:00
|
|
|
return new Promise(function (resolve, reject) {
|
2017-09-20 00:39:54 +02:00
|
|
|
// 1. make sure only 1 file was selected
|
2017-07-28 23:39:39 +02:00
|
|
|
if (!stagedFiles) {
|
2017-09-20 18:49:05 +02:00
|
|
|
return reject(new FileError("Please select a file"));
|
2017-07-28 23:39:39 +02:00
|
|
|
} else if (stagedFiles.length > 1) {
|
2017-09-20 18:49:05 +02:00
|
|
|
return reject(new FileError("Only one file is allowed at a time"));
|
2017-07-28 23:39:39 +02:00
|
|
|
}
|
2017-09-20 00:39:54 +02:00
|
|
|
// 2. validate the file's name, type, and size
|
2017-07-28 23:39:39 +02:00
|
|
|
try {
|
|
|
|
validateFile(stagedFiles[0]);
|
|
|
|
} catch (error) {
|
2017-09-20 18:49:05 +02:00
|
|
|
return reject(error);
|
2017-07-28 23:39:39 +02:00
|
|
|
}
|
2017-09-20 00:39:54 +02:00
|
|
|
// 3. validate that a channel was chosen
|
|
|
|
if (channelName === 'new') {
|
2017-09-20 18:49:05 +02:00
|
|
|
return reject(new ChannelNameError("Please select a valid channel"));
|
2017-09-20 00:39:54 +02:00
|
|
|
};
|
|
|
|
// 4. validate the claim name
|
2017-07-28 23:39:39 +02:00
|
|
|
try {
|
2017-09-20 18:49:05 +02:00
|
|
|
validateClaimName(claimName);
|
2017-07-28 23:39:39 +02:00
|
|
|
} catch (error) {
|
2017-09-20 18:49:05 +02:00
|
|
|
return reject(error);
|
2017-07-28 23:39:39 +02:00
|
|
|
}
|
2017-09-20 18:49:05 +02:00
|
|
|
// if all validation passes, check availability of the name
|
|
|
|
isNameAvailable(claimName, '/api/isClaimAvailable/')
|
2017-09-20 19:14:00 +02:00
|
|
|
.then(() => {
|
2017-07-28 23:39:39 +02:00
|
|
|
resolve();
|
|
|
|
})
|
2017-09-20 19:14:00 +02:00
|
|
|
.catch(error => {
|
2017-07-28 23:39:39 +02:00
|
|
|
reject(error);
|
|
|
|
});
|
|
|
|
});
|
2017-09-20 18:49:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// validation function which checks all aspects of the publish submission
|
|
|
|
function validateNewChannelSubmission(channelName, password){
|
|
|
|
return new Promise(function (resolve, reject) {
|
|
|
|
// 1. validate name
|
|
|
|
try {
|
|
|
|
validateChannelName(channelName);
|
|
|
|
} catch (error) {
|
|
|
|
return reject(error);
|
|
|
|
}
|
|
|
|
// 2. validate password
|
|
|
|
try {
|
|
|
|
validatePassword(password);
|
|
|
|
} catch (error) {
|
|
|
|
return reject(error);
|
|
|
|
}
|
|
|
|
// 3. if all validation passes, check availability of the name
|
|
|
|
isNameAvailable(channelName, '/api/isChannelAvailable/') // validate the availability
|
2017-09-20 19:14:00 +02:00
|
|
|
.then(() => {
|
|
|
|
console.log('channel is avaliable');
|
2017-09-20 18:49:05 +02:00
|
|
|
resolve();
|
|
|
|
})
|
2017-09-20 19:14:00 +02:00
|
|
|
.catch( error => {
|
|
|
|
console.log('error: channel is not avaliable');
|
2017-09-20 18:49:05 +02:00
|
|
|
reject(error);
|
|
|
|
});
|
|
|
|
});
|
2017-09-20 03:50:25 +02:00
|
|
|
}
|