This repository was archived by the owner on May 1, 2023. It is now read-only.
forked from lgtmco/lgtm
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathconfig.go
84 lines (74 loc) · 2.19 KB
/
config.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
package model
import (
"regexp"
"strings"
"github.com/BurntSushi/toml"
"github.com/ianschenck/envflag"
)
// Config represents a repo-specific configuration file.
type Config struct {
Approvals int `json:"approvals" toml:"approvals"`
Pattern string `json:"pattern" toml:"pattern"`
Teams []string `json:"team" toml:"teams"`
SelfApprovalOff bool `json:"self_approval_off" toml:"self_approval_off"`
IgnoreMaintainersFile bool `json:"ignore_maintainers_file" toml:"ignore_maintainers_file"`
// deprecated
Team string `json:"team" toml:"team"`
re *regexp.Regexp
}
var (
approvals = envflag.Int("LGTM_APPROVALS", 2, "")
pattern = envflag.String("LGTM_PATTERN", "(?i)LGTM", "")
teams = envflag.String("LGTM_TEAMS", "MAINTAINERS", "")
selfApprovalOff = envflag.Bool("LGTM_SELF_APPROVAL_OFF", false, "")
ignoreMaintainersFile = envflag.Bool("IGNORE_MAINTAINERS_FILE", false, "")
// deprecated
team = envflag.String("LGTM_TEAM", "", "")
)
// ParseConfig parses a projects .lgtm file
func ParseConfig(data []byte) (*Config, error) {
return ParseConfigStr(string(data))
}
// ParseConfigStr parses a projects .lgtm file in string format.
func ParseConfigStr(data string) (*Config, error) {
c := new(Config)
_, err := toml.Decode(data, c)
if err != nil {
return nil, err
}
if c.Approvals == 0 {
c.Approvals = *approvals
}
if len(c.Pattern) == 0 {
c.Pattern = *pattern
}
if len(c.Team) == 0 {
c.Team = *team
}
if len(c.Teams) == 0 {
if len(*teams) != 0 {
for _, t := range strings.Split(*teams, ",") {
c.Teams = append(c.Teams, strings.TrimSpace(t))
}
} else {
c.Teams = []string{c.Team}
}
}
if c.SelfApprovalOff == false {
c.SelfApprovalOff = *selfApprovalOff
}
if c.IgnoreMaintainersFile == false {
c.IgnoreMaintainersFile = *ignoreMaintainersFile
}
c.re, err = regexp.Compile(c.Pattern)
return c, err
}
// IsMatch returns true if the text matches the regular
// epxression pattern.
func (c *Config) IsMatch(text string) bool {
if c.re == nil {
// this should never happen
return false
}
return c.re.MatchString(text)
}