2015-12-14 05:15:00 -05:00
|
|
|
package dockerignore
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bufio"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ReadAll reads a .dockerignore file and returns the list of file patterns
|
|
|
|
// to ignore. Note this will trim whitespace from each line as well
|
|
|
|
// as use GO's "clean" func to get the shortest/cleanest path for each.
|
|
|
|
func ReadAll(reader io.ReadCloser) ([]string, error) {
|
|
|
|
if reader == nil {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
defer reader.Close()
|
|
|
|
scanner := bufio.NewScanner(reader)
|
|
|
|
var excludes []string
|
|
|
|
|
|
|
|
for scanner.Scan() {
|
2016-06-01 18:20:54 -04:00
|
|
|
// Lines starting with # (comments) are ignored before processing
|
|
|
|
pattern := scanner.Text()
|
|
|
|
if strings.HasPrefix(pattern, "#") {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
pattern = strings.TrimSpace(pattern)
|
2015-12-14 05:15:00 -05:00
|
|
|
if pattern == "" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
pattern = filepath.Clean(pattern)
|
2016-02-04 16:52:31 -05:00
|
|
|
pattern = filepath.ToSlash(pattern)
|
2015-12-14 05:15:00 -05:00
|
|
|
excludes = append(excludes, pattern)
|
|
|
|
}
|
|
|
|
if err := scanner.Err(); err != nil {
|
|
|
|
return nil, fmt.Errorf("Error reading .dockerignore: %v", err)
|
|
|
|
}
|
|
|
|
return excludes, nil
|
|
|
|
}
|