2018-02-13 12:17:05 -05:00
|
|
|
import 'multer'
|
2017-10-24 13:41:09 -04:00
|
|
|
import * as validator from 'validator'
|
2017-09-07 09:27:35 -04:00
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
function exists (value: any) {
|
2016-07-31 14:58:43 -04:00
|
|
|
return value !== undefined && value !== null
|
|
|
|
}
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
function isArray (value: any) {
|
2016-07-31 14:58:43 -04:00
|
|
|
return Array.isArray(value)
|
|
|
|
}
|
|
|
|
|
2017-10-24 13:41:09 -04:00
|
|
|
function isDateValid (value: string) {
|
|
|
|
return exists(value) && validator.isISO8601(value)
|
|
|
|
}
|
|
|
|
|
|
|
|
function isIdValid (value: string) {
|
|
|
|
return exists(value) && validator.isInt('' + value)
|
|
|
|
}
|
|
|
|
|
|
|
|
function isUUIDValid (value: string) {
|
|
|
|
return exists(value) && validator.isUUID('' + value, 4)
|
|
|
|
}
|
|
|
|
|
|
|
|
function isIdOrUUIDValid (value: string) {
|
|
|
|
return isIdValid(value) || isUUIDValid(value)
|
|
|
|
}
|
|
|
|
|
2018-05-09 05:23:14 -04:00
|
|
|
function isBooleanValid (value: any) {
|
2018-01-03 04:12:36 -05:00
|
|
|
return typeof value === 'boolean' || (typeof value === 'string' && validator.isBoolean(value))
|
|
|
|
}
|
|
|
|
|
2018-05-09 05:23:14 -04:00
|
|
|
function toIntOrNull (value: string) {
|
|
|
|
if (value === 'null') return null
|
|
|
|
|
|
|
|
return validator.toInt(value)
|
|
|
|
}
|
|
|
|
|
2018-05-16 03:28:18 -04:00
|
|
|
function toValueOrNull (value: string) {
|
2018-05-09 05:23:14 -04:00
|
|
|
if (value === 'null') return null
|
|
|
|
|
|
|
|
return value
|
|
|
|
}
|
|
|
|
|
2018-02-13 12:17:05 -05:00
|
|
|
function isFileValid (
|
|
|
|
files: { [ fieldname: string ]: Express.Multer.File[] } | Express.Multer.File[],
|
|
|
|
mimeTypeRegex: string,
|
|
|
|
field: string,
|
|
|
|
optional = false
|
|
|
|
) {
|
|
|
|
// Should have files
|
|
|
|
if (!files) return optional
|
|
|
|
if (isArray(files)) return optional
|
|
|
|
|
|
|
|
// Should have a file
|
|
|
|
const fileArray = files[ field ]
|
|
|
|
if (!fileArray || fileArray.length === 0) {
|
|
|
|
return optional
|
|
|
|
}
|
|
|
|
|
|
|
|
// The file should exist
|
|
|
|
const file = fileArray[ 0 ]
|
|
|
|
if (!file || !file.originalname) return false
|
|
|
|
|
|
|
|
return new RegExp(`^${mimeTypeRegex}$`, 'i').test(file.mimetype)
|
|
|
|
}
|
|
|
|
|
2016-07-31 14:58:43 -04:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
export {
|
|
|
|
exists,
|
2017-10-24 13:41:09 -04:00
|
|
|
isArray,
|
|
|
|
isIdValid,
|
|
|
|
isUUIDValid,
|
|
|
|
isIdOrUUIDValid,
|
2018-01-03 04:12:36 -05:00
|
|
|
isDateValid,
|
2018-05-16 03:28:18 -04:00
|
|
|
toValueOrNull,
|
2018-02-13 12:17:05 -05:00
|
|
|
isBooleanValid,
|
2018-05-09 05:23:14 -04:00
|
|
|
toIntOrNull,
|
2018-02-13 12:17:05 -05:00
|
|
|
isFileValid
|
2017-05-15 16:22:03 -04:00
|
|
|
}
|