-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
Copy pathproject_util.go
170 lines (151 loc) · 4.96 KB
/
project_util.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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
// Copyright 2018 The Operator-SDK Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package projutil
import (
"fmt"
"os"
"os/exec"
"path/filepath"
"regexp"
"strings"
"github.com/operator-framework/operator-sdk/pkg/scaffold"
"github.com/operator-framework/operator-sdk/pkg/scaffold/ansible"
"github.com/operator-framework/operator-sdk/pkg/scaffold/helm"
log "github.com/sirupsen/logrus"
"github.com/spf13/cobra"
)
const (
GopathEnv = "GOPATH"
GoFlagsEnv = "GOFLAGS"
SrcDir = "src"
)
var mainFile = filepath.Join(scaffold.ManagerDir, scaffold.CmdFile)
// OperatorType - the type of operator
type OperatorType = string
const (
// OperatorTypeGo - golang type of operator.
OperatorTypeGo OperatorType = "go"
// OperatorTypeAnsible - ansible type of operator.
OperatorTypeAnsible OperatorType = "ansible"
// OperatorTypeHelm - helm type of operator.
OperatorTypeHelm OperatorType = "helm"
// OperatorTypeUnknown - unknown type of operator.
OperatorTypeUnknown OperatorType = "unknown"
)
// MustInProjectRoot checks if the current dir is the project root and returns the current repo's import path
// e.g github.com/example-inc/app-operator
func MustInProjectRoot() {
// if the current directory has the "./build/dockerfile" file, then it is safe to say
// we are at the project root.
_, err := os.Stat(filepath.Join(scaffold.BuildDir, scaffold.DockerfileFile))
if err != nil {
if os.IsNotExist(err) {
log.Fatal("Must run command in project root dir: project structure requires ./build/Dockerfile")
}
log.Fatalf("Error while checking if current directory is the project root: (%v)", err)
}
}
func CheckGoProjectCmd(cmd *cobra.Command) error {
t := GetOperatorType()
switch t {
case OperatorTypeGo:
default:
return fmt.Errorf("'%s' can only be run for Go operators; %s does not exist.", cmd.CommandPath(), mainFile)
}
return nil
}
func MustGetwd() string {
wd, err := os.Getwd()
if err != nil {
log.Fatalf("Failed to get working directory: (%v)", err)
}
return wd
}
// CheckAndGetProjectGoPkg checks if this project's repository path is rooted under $GOPATH and returns the current directory's import path
// e.g: "github.com/example-inc/app-operator"
func CheckAndGetProjectGoPkg() string {
gopath := MustSetGopath(MustGetGopath())
goSrc := filepath.Join(gopath, SrcDir)
wd := MustGetwd()
currPkg := strings.Replace(wd, goSrc+string(filepath.Separator), "", 1)
// strip any "/" prefix from the repo path.
return strings.TrimPrefix(currPkg, string(filepath.Separator))
}
// GetOperatorType returns type of operator is in cwd
// This function should be called after verifying the user is in project root
// e.g: "go", "ansible"
func GetOperatorType() OperatorType {
// Assuming that if main.go exists then this is a Go operator
if _, err := os.Stat(mainFile); err == nil {
return OperatorTypeGo
}
if stat, err := os.Stat(ansible.RolesDir); err == nil && stat.IsDir() {
return OperatorTypeAnsible
}
if stat, err := os.Stat(helm.HelmChartsDir); err == nil && stat.IsDir() {
return OperatorTypeHelm
}
return OperatorTypeUnknown
}
func IsOperatorGo() bool {
return GetOperatorType() == OperatorTypeGo
}
// MustGetGopath gets GOPATH and ensures it is set and non-empty. If GOPATH
// is not set or empty, MustGetGopath exits.
func MustGetGopath() string {
gopath, ok := os.LookupEnv(GopathEnv)
if !ok || len(gopath) == 0 {
log.Fatal("GOPATH env not set")
}
return gopath
}
// MustSetGopath sets GOPATH=currentGopath after processing a path list,
// if any, then returns the set path. If GOPATH cannot be set, MustSetGopath
// exits.
func MustSetGopath(currentGopath string) string {
var (
newGopath string
cwdInGopath bool
wd = MustGetwd()
)
for _, newGopath = range strings.Split(currentGopath, ":") {
if strings.HasPrefix(filepath.Dir(wd), newGopath) {
cwdInGopath = true
break
}
}
if !cwdInGopath {
log.Fatalf("Project not in $GOPATH")
}
if err := os.Setenv(GopathEnv, newGopath); err != nil {
log.Fatal(err)
}
return newGopath
}
func ExecCmd(cmd *exec.Cmd) error {
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
err := cmd.Run()
if err != nil {
return fmt.Errorf("failed to exec %#v: %v", cmd.Args, err)
}
return nil
}
var flagRe = regexp.MustCompile("(.* )?-v(.* )?")
// IsGoVerbose returns true if GOFLAGS contains "-v". This function is useful
// when deciding whether to make "go" command output verbose.
func IsGoVerbose() bool {
gf, ok := os.LookupEnv(GoFlagsEnv)
return ok && len(gf) != 0 && flagRe.MatchString(gf)
}