-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathput.go
240 lines (196 loc) · 5.9 KB
/
put.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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
// Copyright © 2019 NAME HERE <EMAIL ADDRESS>
//
// 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 (
"encoding/json"
"fmt"
"io/ioutil"
"time"
"github.com/spf13/cobra"
)
// putCmd represents the put command
var putCmd = &cobra.Command{
Use: "put",
Short: "Write the local configuration data to Octopus",
Long: `
Use the put command to write the local
project configuration data into Octopus
Usage:
octopipe put
`,
Run: func(cmd *cobra.Command, args []string) {
// Start
start := time.Now()
if apiKey == "" || uri == "" {
logAndExitf("Octopus Api Key and Octopus Uri must be specified in environment variables with names OCTOPUS_API_KEY and OCTOPUS_URI")
}
var op octopipe
op.importOctopipeFile()
//Project
l := octopusLifecycles{}
g := octopusProjectGroups{}
getOctopusData(&l, uri+"/api/lifecycles/all")
getOctopusData(&g, uri+"/api/projectgroups/all")
lifecycle, err := getLifecycle(l, op.Project.Lifecycle, "")
if err != nil {
logAndExitf(err.Error())
}
projectGroup, err := getProjectGroup(g, op.Project.ProjectGroup, "")
if err != nil {
logAndExitf(err.Error())
}
p := &octopusProject{}
slug := getProjectSlug(op.Project.Name)
presp, status := doOctopusRequest(nil, uri+"/api/projects/"+slug, "GET")
json.Unmarshal(presp, &p)
tenancy := "Untenanted"
if op.Project.Tenanted != "" {
tenancy, err = verifyTenancyType(op.Project)
if err != nil {
logAndExitf(err.Error())
}
}
if status == 404 {
newp := &octopusProject{
Name: op.Project.Name,
Description: op.Project.Description,
TenantedDeploymentMode: tenancy,
LifecycleID: lifecycle.ID,
ProjectGroupID: projectGroup.ID,
}
postOctopusData(newp, uri+"/api/projects")
p = newp
} else {
p.Name = op.Project.Name
p.LifecycleID = lifecycle.ID
p.ProjectGroupID = projectGroup.ID
p.Description = op.Project.Description
p.TenantedDeploymentMode = tenancy
putOctopusData(p, uri+"/api/projects/"+p.ID)
fmt.Println("Put Project")
}
// Deployment process
d := octopusDeploymentProcess{}
getOctopusData(&d, uri+"/api/deploymentprocesses/"+p.DeploymentProcessID)
news := make([]octopusDeploymentStep, 0)
for _, s := range op.Process.Steps {
newa := make([]octopusDeploymentAction, 0)
taa, err := ioutil.ReadFile(s.File)
if err != nil {
logAndExitf("Error opening %s:\n%s", s.File, err.Error())
}
tap := make(map[string]string)
thistype, err := verifySyntaxType(s)
if err != nil {
logAndExitf(err.Error())
}
tap["Octopus.Action.Script.Syntax"] = thistype
tap["Octopus.Action.Script.ScriptSource"] = "Inline"
tap["Octopus.Action.Script.ScriptBody"] = string(taa)
tap["Octopus.Action.RunOnServer"] = "True"
ta := octopusDeploymentAction{
Name: s.Name,
ActionType: "Octopus.Script",
WorkerPoolID: "WorkerPools-1",
Properties: tap,
}
newa = append(newa, ta)
ts := octopusDeploymentStep{
Name: s.Name,
Actions: newa,
}
news = append(news, ts)
}
d.Steps = news
putOctopusData(d, uri+"/api/deploymentprocesses/"+p.DeploymentProcessID)
fmt.Println("Put Deployment Process")
// Variables
v := octopusVariableSet{}
getOctopusData(&v, uri+"/api/variables/"+p.VariableSetID)
ds := v.ScopeValues.makeScopeDataSet()
newv := []octopusVariable{}
for _, sv := range op.Variables {
if sv.ScopedValues != nil {
for _, svv := range sv.ScopedValues {
thistype, err := verifyVariableType(sv)
if err != nil {
logAndExitf(err.Error())
}
if len(svv) == 1 {
tv := octopusVariable{
Name: sv.Name,
Value: svv["value"],
Type: thistype,
Description: sv.Description,
}
newv = append(newv, tv)
} else {
scopes := make(map[string][]string)
for it, svt := range svv {
if it != "value" {
stype, err := verifyScopeType(it)
if err != nil {
logAndExitf(err.Error())
}
scopeIDs, _, err := v.ScopeValues.getScope(ds, svt, nil, stype)
if err != nil {
logAndExitf(err.Error())
}
scopes[it] = scopeIDs
}
}
tv := octopusVariable{
Name: sv.Name,
Value: svv["value"],
Scope: scopes,
Type: thistype,
Description: sv.Description,
}
newv = append(newv, tv)
}
}
}
thistype, err := verifyVariableType(sv)
if err != nil {
logAndExitf(err.Error())
}
if sv.Value != "" {
tv := octopusVariable{
Name: sv.Name,
Value: sv.Value,
Type: thistype,
Description: sv.Description,
}
newv = append(newv, tv)
}
}
v.Variables = newv
putOctopusData(v, uri+"/api/variables/"+p.VariableSetID)
fmt.Println("Put Variables")
// End
finish := time.Now()
elapsed := finish.Sub(start)
fmt.Printf("Put completed successfully in %gs\n", elapsed.Seconds())
},
}
func init() {
rootCmd.AddCommand(putCmd)
// Here you will define your flags and configuration settings.
// Cobra supports Persistent Flags which will work for this command
// and all subcommands, e.g.:
// putCmd.PersistentFlags().String("foo", "", "A help for foo")
// Cobra supports local flags which will only run when this command
// is called directly, e.g.:
// putCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
}