-
-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathio.go
64 lines (50 loc) · 1.83 KB
/
io.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package io
import (
"bufio"
"os"
"strings"
"github.com/gruntwork-io/git-xargs/types"
"github.com/gruntwork-io/git-xargs/util"
"github.com/gruntwork-io/go-commons/logging"
"github.com/sirupsen/logrus"
)
// ProcessAllowedRepos accepts a path to the flat file in which the user has defined their explicitly allowed repos.
// It expects repos to be defined one per line in the following format: `gruntwork-io/cloud-nuke` with optional commas.
// Stray single and double quotes are also handled and stripped out if they are encountered, and spacing is irrelevant.
func ProcessAllowedRepos(filepath string) ([]*types.AllowedRepo, error) {
logger := logging.GetLogger("git-xargs")
var allowedRepos []*types.AllowedRepo
filepath = strings.TrimSpace(strings.Trim(filepath, "\n"))
file, err := os.Open(filepath)
if err != nil {
logger.WithFields(logrus.Fields{
"Error": err,
"Filepath": filepath,
}).Debug("Could not open")
return allowedRepos, err
}
// By wrapping the file.Close in a deferred anonymous function, we are able to avoid a nasty edge-case where
// an actual closeErr would not be checked or handled properly in the more common `defer file.Close()`
defer func() {
closeErr := file.Close()
if closeErr != nil {
logger.WithFields(logrus.Fields{
"Error": closeErr,
}).Debug("Error closing allowed repos file")
}
}()
// Read through the file line by line, extracting the repo organization and name by splitting on the / char
scanner := bufio.NewScanner(file)
for scanner.Scan() {
allowedRepo := util.ConvertStringToAllowedRepo(scanner.Text())
if allowedRepo != nil {
allowedRepos = append(allowedRepos, allowedRepo)
}
}
if err := scanner.Err(); err != nil {
logger.WithFields(logrus.Fields{
"Error": err,
}).Debug("Error parsing line from allowed repos file")
}
return allowedRepos, nil
}