]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/forms/form-validators/host.validator.ts
Remove ng2 file upload module
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / forms / form-validators / host.validator.ts
CommitLineData
df98563e 1import { FormControl } from '@angular/forms'
49abbbbe 2
df98563e 3export function validateHost (c: FormControl) {
447fde27 4 // Thanks to http://stackoverflow.com/a/106223
ad4a8a1c 5 const HOST_REGEXP = new RegExp(
447fde27 6 '^(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\-]*[a-zA-Z0-9])\.)*([A-Za-z0-9]|[A-Za-z0-9][A-Za-z0-9\-]*[A-Za-z0-9])$'
df98563e 7 )
49abbbbe
C
8
9 return HOST_REGEXP.test(c.value) ? null : {
10 validateHost: {
11 valid: false
12 }
df98563e 13 }
49abbbbe 14}