2018-02-13 12:17:05 -05:00
|
|
|
import 'multer'
|
2017-10-24 13:41:09 -04:00
|
|
|
import * as validator from 'validator'
|
2019-07-05 07:54:32 -04:00
|
|
|
import { sep } from 'path'
|
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
|
|
|
|
}
|
|
|
|
|
2019-07-05 07:54:32 -04:00
|
|
|
function isSafePath (p: string) {
|
|
|
|
return exists(p) &&
|
|
|
|
(p + '').split(sep).every(part => {
|
2019-07-05 09:28:49 -04:00
|
|
|
return [ '..' ].includes(part) === false
|
2019-07-05 07:54:32 -04:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
function isArray (value: any) {
|
2016-07-31 14:58:43 -04:00
|
|
|
return Array.isArray(value)
|
|
|
|
}
|
|
|
|
|
2019-01-08 05:26:41 -05:00
|
|
|
function isNotEmptyIntArray (value: any) {
|
|
|
|
return Array.isArray(value) && value.every(v => validator.isInt('' + v)) && value.length !== 0
|
2018-12-26 04:36:24 -05:00
|
|
|
}
|
|
|
|
|
2019-01-29 02:37:25 -05:00
|
|
|
function isArrayOf (value: any, validator: (value: any) => boolean) {
|
|
|
|
return isArray(value) && value.every(v => validator(v))
|
|
|
|
}
|
|
|
|
|
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) {
|
2019-07-25 10:23:44 -04:00
|
|
|
const v = toValueOrNull(value)
|
|
|
|
|
|
|
|
if (v === null || v === undefined) return v
|
|
|
|
if (typeof v === 'number') return v
|
|
|
|
|
2019-07-25 11:28:45 -04:00
|
|
|
return validator.toInt('' + v)
|
2019-07-25 10:23:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function toBooleanOrNull (value: any) {
|
|
|
|
const v = toValueOrNull(value)
|
|
|
|
|
|
|
|
if (v === null || v === undefined) return v
|
|
|
|
if (typeof v === 'boolean') return v
|
2018-05-09 05:23:14 -04:00
|
|
|
|
2019-07-25 11:28:45 -04:00
|
|
|
return validator.toBoolean('' + v)
|
2018-05-09 05:23:14 -04:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2019-03-07 11:06:00 -05:00
|
|
|
function toArray (value: any) {
|
2018-07-20 08:35:18 -04:00
|
|
|
if (value && isArray(value) === false) return [ value ]
|
|
|
|
|
|
|
|
return value
|
|
|
|
}
|
|
|
|
|
2019-03-07 11:06:00 -05:00
|
|
|
function toIntArray (value: any) {
|
|
|
|
if (!value) return []
|
|
|
|
if (isArray(value) === false) return [ validator.toInt(value) ]
|
|
|
|
|
|
|
|
return value.map(v => validator.toInt(v))
|
|
|
|
}
|
|
|
|
|
2018-02-13 12:17:05 -05:00
|
|
|
function isFileValid (
|
|
|
|
files: { [ fieldname: string ]: Express.Multer.File[] } | Express.Multer.File[],
|
|
|
|
mimeTypeRegex: string,
|
|
|
|
field: string,
|
2018-07-25 16:01:25 -04:00
|
|
|
maxSize: number | null,
|
2018-02-13 12:17:05 -05:00
|
|
|
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
|
|
|
|
|
2018-06-22 09:42:55 -04:00
|
|
|
// Check size
|
2018-07-25 16:01:25 -04:00
|
|
|
if ((maxSize !== null) && file.size > maxSize) return false
|
2018-06-22 09:42:55 -04:00
|
|
|
|
2018-02-13 12:17:05 -05:00
|
|
|
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,
|
2019-01-29 02:37:25 -05:00
|
|
|
isArrayOf,
|
2019-01-08 05:26:41 -05:00
|
|
|
isNotEmptyIntArray,
|
2017-10-24 13:41:09 -04:00
|
|
|
isArray,
|
|
|
|
isIdValid,
|
2019-07-05 07:54:32 -04:00
|
|
|
isSafePath,
|
2017-10-24 13:41:09 -04:00
|
|
|
isUUIDValid,
|
|
|
|
isIdOrUUIDValid,
|
2018-01-03 04:12:36 -05:00
|
|
|
isDateValid,
|
2018-05-16 03:28:18 -04:00
|
|
|
toValueOrNull,
|
2019-07-25 10:23:44 -04:00
|
|
|
toBooleanOrNull,
|
2018-02-13 12:17:05 -05:00
|
|
|
isBooleanValid,
|
2018-05-09 05:23:14 -04:00
|
|
|
toIntOrNull,
|
2018-07-20 08:35:18 -04:00
|
|
|
toArray,
|
2019-03-07 11:06:00 -05:00
|
|
|
toIntArray,
|
2018-02-13 12:17:05 -05:00
|
|
|
isFileValid
|
2017-05-15 16:22:03 -04:00
|
|
|
}
|