-
Notifications
You must be signed in to change notification settings - Fork 11
/
errands.go
160 lines (136 loc) · 5.06 KB
/
errands.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
/*
Copyright 2017, 2018 Ankyra
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 cmd
import (
"fmt"
corestate "github.com/ankyra/escape-core/state"
"github.com/ankyra/escape/controllers"
"github.com/spf13/cobra"
)
var readLocalErrands bool
var errandsCmd = &cobra.Command{
Use: "errands",
Short: "List and run errands",
PreRunE: NoExtraArgsPreRunE,
RunE: func(cmd *cobra.Command, args []string) error {
cmd.UsageFunc()(cmd)
return nil
},
}
func ListLocalErrands(state, environment, escapePlanLocation string) error {
if err := ProcessFlagsForContextAndLoadEscapePlan(); err != nil {
return err
}
return controllers.ErrandsController{}.List(context).Print(jsonFlag)
}
func ListDeployedErrands(state, environment, deployment string) error {
if err := ProcessFlagsForContext(); err != nil {
return err
}
deplState, exists := context.GetEnvironmentState().Deployments[deployment]
if !exists {
return fmt.Errorf("The deployment '%s' could not be found in environment '%s'", deployment, environment)
}
releaseId := deplState.GetReleaseId("deploy")
if err := context.InitReleaseMetadataByReleaseId(releaseId); err != nil {
return err
}
return controllers.ErrandsController{}.List(context).Print(jsonFlag)
}
func ListErrands(cmd *cobra.Command, args []string) error {
if readLocalErrands {
return ListLocalErrands(state, environment, escapePlanLocation)
}
if len(deployment) == 0 {
cmd.UsageFunc()(cmd)
return nil
}
return ListDeployedErrands(state, environment, deployment)
}
var errandsListCmd = &cobra.Command{
Use: "list",
Short: "List errands",
PreRunE: NoExtraArgsPreRunE,
RunE: ListErrands,
}
var errand string
var errandsRunCmd = &cobra.Command{
Use: "run <errand>",
Short: "Run an errand",
RunE: func(cmd *cobra.Command, args []string) error {
if environment == "" {
return fmt.Errorf("Missing 'environment'")
}
if len(args) != 1 {
cmd.UsageFunc()(cmd)
return nil
}
if deployment == "" && !readLocalErrands {
return fmt.Errorf("Missing deployment name")
}
if err := LoadState(); err != nil {
return err
}
context.SetRootDeploymentName(deployment)
parsedExtraVars, err := ParseExtraVars(extraVars)
if err != nil {
return err
}
errand := args[0]
if readLocalErrands {
return RunLocalErrand(deployment, errand, parsedExtraVars)
}
return RunDeployedErrand(deployment, errand, parsedExtraVars)
},
}
func RunDeployedErrand(deployment, errand string, parsedExtraVars map[string]interface{}) error {
deplState := context.GetEnvironmentState().Deployments[deployment]
if deplState == nil {
return fmt.Errorf("The deployment '%s' could not be found in environment '%s'.", deployment, context.GetEnvironmentState().Name)
}
if deplState.GetStageOrCreateNew("deploy").Status.Code != corestate.OK {
return fmt.Errorf("'%s' has not been deployed in the environment '%s'.", deployment, context.GetEnvironmentState().Name)
}
releaseId := deplState.GetReleaseId("deploy")
if err := context.InitReleaseMetadataByReleaseId(releaseId); err != nil {
return err
}
return controllers.ErrandsController{}.RunRemoteErrand(context, errand, parsedExtraVars)
}
func RunLocalErrand(deployment, errand string, parsedExtraVars map[string]interface{}) error {
if err := ProcessFlagsForContextAndLoadEscapePlan(); err != nil {
return err
}
if deployment == "" {
deployment = context.GetRootDeploymentName()
}
deplState := context.GetEnvironmentState().Deployments[deployment]
if deplState == nil {
return fmt.Errorf("The deployment '%s' could not be found in environment '%s'.", deployment, context.GetEnvironmentState().Name)
}
if deplState.GetStageOrCreateNew("deploy").Status.Code != corestate.OK {
return fmt.Errorf("'%s' has not been deployed in the environment '%s'. Use 'escape run deploy' to deploy it.", deployment, context.GetEnvironmentState().Name)
}
return controllers.ErrandsController{}.Run(context, errand, parsedExtraVars)
}
func init() {
RootCmd.AddCommand(errandsCmd)
errandsCmd.AddCommand(errandsListCmd)
errandsCmd.AddCommand(errandsRunCmd)
setPlanAndStateFlags(errandsListCmd)
errandsListCmd.Flags().BoolVarP(&readLocalErrands, "local", "", false, "Read errands from Escape plan instead of deployment")
errandsListCmd.PersistentFlags().BoolVarP(&jsonFlag, "json", "", false, "Output profile in JSON format")
setPlanAndStateFlags(errandsRunCmd)
errandsRunCmd.Flags().StringArrayVarP(&extraVars, "extra-vars", "v", []string{}, "Extra variables (format: key=value, key=@value.txt, @values.json)")
errandsRunCmd.Flags().BoolVarP(&readLocalErrands, "local", "", false, "Read errands from Escape plan instead of deployment")
}