2018-09-20 16:03:33 +03:00
|
|
|
const url = require('url');
|
2017-12-14 23:25:51 +03:00
|
|
|
|
2018-09-20 16:03:33 +03:00
|
|
|
const _private = {};
|
2017-12-14 00:06:31 +03:00
|
|
|
|
2018-09-20 16:03:33 +03:00
|
|
|
_private.removeDoubleCharacters = (character, string) => {
|
|
|
|
const stringArray = string.split('');
|
2016-08-23 14:47:59 +03:00
|
|
|
|
2018-09-20 16:03:33 +03:00
|
|
|
return stringArray.reduce((newString, currentCharacter, index) => {
|
2016-08-23 14:47:59 +03:00
|
|
|
if (
|
|
|
|
currentCharacter === character &&
|
|
|
|
stringArray[index + 1] === character
|
|
|
|
) {
|
|
|
|
return newString;
|
|
|
|
}
|
|
|
|
|
2018-09-20 16:03:33 +03:00
|
|
|
return `${newString}${currentCharacter}`;
|
2016-08-23 14:47:59 +03:00
|
|
|
}, '');
|
2017-12-14 00:06:31 +03:00
|
|
|
};
|
2016-08-23 14:47:59 +03:00
|
|
|
|
2017-12-14 00:06:31 +03:00
|
|
|
module.exports.removeOpenRedirectFromUrl = function removeOpenRedirectFromUrl(urlString) {
|
2018-09-20 16:03:33 +03:00
|
|
|
const parsedUrl = url.parse(urlString);
|
2016-08-23 14:47:59 +03:00
|
|
|
|
|
|
|
return (
|
2017-11-01 16:44:54 +03:00
|
|
|
// http://
|
|
|
|
(parsedUrl.protocol ? parsedUrl.protocol + '//' : '') +
|
2016-08-23 14:47:59 +03:00
|
|
|
(parsedUrl.auth || '') +
|
|
|
|
(parsedUrl.host || '') +
|
2017-12-14 00:06:31 +03:00
|
|
|
_private.removeDoubleCharacters('/', parsedUrl.path) +
|
2016-08-23 14:47:59 +03:00
|
|
|
(parsedUrl.hash || '')
|
|
|
|
);
|
2017-12-14 00:06:31 +03:00
|
|
|
};
|
2017-12-14 23:25:51 +03:00
|
|
|
|
|
|
|
module.exports.checkFileExists = function checkFileExists(fileData) {
|
|
|
|
return !!(fileData.mimetype && fileData.path);
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports.checkFileIsValid = function checkFileIsValid(fileData, types, extensions) {
|
2018-08-30 19:30:36 +03:00
|
|
|
const type = fileData.mimetype;
|
2017-12-14 23:25:51 +03:00
|
|
|
|
2018-09-20 16:03:33 +03:00
|
|
|
if (types.includes(type) && extensions.includes(fileData.ext)) {
|
2017-12-14 23:25:51 +03:00
|
|
|
return true;
|
|
|
|
}
|
2018-09-20 16:03:33 +03:00
|
|
|
|
2017-12-14 23:25:51 +03:00
|
|
|
return false;
|
|
|
|
};
|