Adds test to skip empty lines

This commit is contained in:
Hyatt 2022-02-07 07:58:43 -06:00
parent 8eb34d25fb
commit f6aec750e6
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA
2 changed files with 16 additions and 0 deletions

View File

@ -3,6 +3,7 @@ package main
import (
"bufio"
"bytes"
"log"
"regexp"
"strings"
@ -25,6 +26,11 @@ func parseComplex(data []byte) []string {
continue
}
// skip lines with no characters and/or whitespace only
if regexp.MustCompile(`^(\s+)?$`).MatchString(line) {
continue
}
// split line by whitespace
lineItems := strings.Fields(line)
@ -32,6 +38,8 @@ func parseComplex(data []byte) []string {
// the second item is the domain, check if its valid and add it
if govalidator.IsDNSName(lineItems[1]) {
domains = append(domains, lineItems[1])
} else {
log.Printf("[TRACE] Domain is not valid: %s\n", lineItems[0])
}
}
}

View File

@ -3,6 +3,7 @@ package main
import (
"bufio"
"bytes"
"log"
"regexp"
"strings"
@ -25,6 +26,11 @@ func parseSimple(data []byte) []string {
continue
}
// skip lines with no characters and/or whitespace only
if regexp.MustCompile(`^(\s+)?$`).MatchString(line) {
continue
}
// split line by whitespace
lineItems := strings.Fields(line)
@ -32,6 +38,8 @@ func parseSimple(data []byte) []string {
// the second item is the domain, check if its valid and add it
if govalidator.IsDNSName(lineItems[0]) {
domains = append(domains, lineItems[0])
} else {
log.Printf("[TRACE] Domain is not valid: %s\n", lineItems[0])
}
}
}