-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbranch.go
148 lines (128 loc) · 3.73 KB
/
branch.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
package glow
import (
"errors"
"fmt"
"regexp"
"strings"
l "github.com/meinto/glow/logging"
)
// Branch interface
type Branch interface {
CreationIsAllowedFrom(sourceBranch Branch) bool
CanBeClosed() bool
CanBePublished() bool
CloseBranches(availableBranches []Branch) []Branch
PublishBranch() Branch
BranchName() string
ShortBranchName() string
}
// Branch definition
type branch struct {
name string
}
const (
BRANCH_NAME_PREFIX = "refs/heads/"
FEATURE_BRANCH_PATTERN = `feature/[^/]+/.*`
FIX_BRANCH_PATTERN = `fix/[^/]+/.*`
HOTFIX_BRANCH_PATTERN = `hotfix/v.*`
RELEASE_BRANCH_PATTERN = `release/v.*`
)
// NewBranch creates a new branch definition
func NewBranch(name string) Branch {
l.Log().Debug(l.Fields{"name": name})
if !strings.HasPrefix(name, BRANCH_NAME_PREFIX) {
name = BRANCH_NAME_PREFIX + name
}
return NewBranchLoggingService(branch{name})
}
func BranchFromBranchName(name string) (b Branch, err error) {
l.Log().Debug(l.Fields{"name": name})
defer func() {
l.Log().
Debug(l.Fields{"branch": b}).
Error(err)
}()
matched, err := regexp.Match(FEATURE_BRANCH_PATTERN, []byte(name))
if matched && err == nil {
return FeatureFromBranch(name)
}
matched, err = regexp.Match(FIX_BRANCH_PATTERN, []byte(name))
if matched && err == nil {
return FixFromBranch(name)
}
matched, err = regexp.Match(HOTFIX_BRANCH_PATTERN, []byte(name))
if matched && err == nil {
return HotfixFromBranch(name)
}
matched, err = regexp.Match(RELEASE_BRANCH_PATTERN, []byte(name))
if matched && err == nil {
return ReleaseFromBranch(name)
}
return NewBranch(name), nil
}
// CreationIsAllowedFrom returns wheter branch is allowed to be created
// from given this source branch
func (b branch) CreationIsAllowedFrom(sourceBranch Branch) bool {
return false
}
// CanBeClosed checks if the branch name is a valid
func (b branch) CanBeClosed() bool {
return false
}
// CanBePublished checks if the branch can be published directly to production
func (b branch) CanBePublished() bool {
return false
}
// CloseBranches returns all branches which this branch have to be merged with
func (b branch) CloseBranches(availableBranches []Branch) []Branch {
return []Branch{}
}
// PublishBranch returns the publish branch if available
func (b branch) PublishBranch() Branch {
return nil
}
// BranchName is a getter for the branch name
func (b branch) BranchName() string {
return b.name
}
// ShortBranchName is a getter for the short version of the branch name
func (b branch) ShortBranchName() string {
return strings.TrimPrefix(b.name, BRANCH_NAME_PREFIX)
}
// AuthoredBranch definition
type AuthoredBranch interface {
Branch
}
type authoredBranch struct {
author string
featureName string
Branch
}
const (
AUTHORED_BRANCH_TYPE_FEATURE = "feature"
AUTHORED_BRANCH_TYPE_FIX = "fix"
)
// NewAuthoredBranch creates a new branch definition
func NewAuthoredBranch(branchType, author, featureName string) (AuthoredBranch, error) {
if branchType != AUTHORED_BRANCH_TYPE_FEATURE && branchType != AUTHORED_BRANCH_TYPE_FIX {
return nil, fmt.Errorf("branch type '%s' is not valid for an authored branch", branchType)
}
branchName := fmt.Sprintf("%s/%s/%s", branchType, author, featureName)
branch := NewBranch(branchName)
return authoredBranch{
author,
featureName,
branch,
}, nil
}
// AuthoredBranchFromBranchName extracts a feature definition from branch name
func AuthoredBranchFromBranchName(branchName string) (AuthoredBranch, error) {
parts := strings.Split(branchName, "/")
if len(parts) < 3 {
return authoredBranch{}, errors.New("invalid branch name " + branchName)
}
branchType := parts[len(parts)-3]
author := parts[len(parts)-2]
featureName := parts[len(parts)-1]
return NewAuthoredBranch(branchType, author, featureName)
}