add new missing field checks

This commit is contained in:
Max Baumann 2020-10-21 16:31:13 +02:00
parent 7b818154dd
commit 967715ab3b
No known key found for this signature in database
GPG key ID: 82EEA14C1523D1BB

View file

@ -257,10 +257,21 @@ module.exports = async function postSkipSegments(req, res) {
}];
}
//check if all correct inputs are here and the length is 1 second or more
if (videoID == undefined || userID == undefined || segments == undefined || segments.length < 1) {
const invalidFields = [];
if (typeof videoID !== 'string') {
invalidFields.push('videoID');
}
if (typeof userID !== 'string') {
invalidFields.push('userID');
}
if (!Array.isArray(segments) || segments.length < 1) {
invalidFields.push('segments');
}
if (invalidFields.length !== 0) {
// invalid request
res.status(400).send("Parameters are not valid");
const fields = invalidFields.reduce((p, c, i) => p + (i !== 0 ? ', ' : '') + c, '');
res.status(400).send(`No valid ${fields} field(s) provided`);
return;
}