1
0
Fork 0
peertube/server/helpers/custom-validators/servers.ts

44 lines
1.2 KiB
TypeScript
Raw Normal View History

2017-06-05 15:53:49 -04:00
import * as validator from 'validator'
2019-07-25 10:23:44 -04:00
import { exists, isArray } from './misc'
2017-08-25 12:36:49 -04:00
import { isTestInstance } from '../core-utils'
import { CONSTRAINTS_FIELDS } from '../../initializers/constants'
2016-12-28 09:49:23 -05:00
2017-06-10 16:15:25 -04:00
function isHostValid (host: string) {
2017-08-25 12:36:49 -04:00
const isURLOptions = {
require_host: true,
require_tld: true
}
// We validate 'localhost', so we don't have the top level domain
if (isTestInstance()) {
isURLOptions.require_tld = false
}
return exists(host) && validator.isURL(host, isURLOptions) && host.split('://').length === 1
}
2017-06-10 16:15:25 -04:00
function isEachUniqueHostValid (hosts: string[]) {
2017-05-15 16:22:03 -04:00
return isArray(hosts) &&
hosts.length !== 0 &&
2017-07-11 11:04:57 -04:00
hosts.every(host => {
2016-12-28 09:49:23 -05:00
return isHostValid(host) && hosts.indexOf(host) === hosts.lastIndexOf(host)
})
}
2019-01-09 09:14:29 -05:00
function isValidContactBody (value: any) {
return exists(value) && validator.isLength(value, CONSTRAINTS_FIELDS.CONTACT_FORM.BODY)
}
function isValidContactFromName (value: any) {
return exists(value) && validator.isLength(value, CONSTRAINTS_FIELDS.CONTACT_FORM.FROM_NAME)
}
// ---------------------------------------------------------------------------
2017-05-15 16:22:03 -04:00
export {
2019-01-09 09:14:29 -05:00
isValidContactBody,
isValidContactFromName,
2017-05-15 16:22:03 -04:00
isEachUniqueHostValid,
isHostValid
}