-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathresource_git_repository.go
317 lines (259 loc) · 12.4 KB
/
resource_git_repository.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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
// © Broadcom. All Rights Reserved.
// The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries.
// SPDX-License-Identifier: MPL-2.0
package gitrepository
import (
"context"
"log"
"strings"
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/pkg/errors"
"github.com/vmware/terraform-provider-tanzu-mission-control/internal/authctx"
clienterrors "github.com/vmware/terraform-provider-tanzu-mission-control/internal/client/errors"
"github.com/vmware/terraform-provider-tanzu-mission-control/internal/helper"
gitrepositoryclustermodel "github.com/vmware/terraform-provider-tanzu-mission-control/internal/models/gitrepository/cluster"
gitrepositoryclustergroupmodel "github.com/vmware/terraform-provider-tanzu-mission-control/internal/models/gitrepository/clustergroup"
objectmetamodel "github.com/vmware/terraform-provider-tanzu-mission-control/internal/models/objectmeta"
"github.com/vmware/terraform-provider-tanzu-mission-control/internal/resources/common"
commonscope "github.com/vmware/terraform-provider-tanzu-mission-control/internal/resources/common/scope"
"github.com/vmware/terraform-provider-tanzu-mission-control/internal/resources/gitrepository/scope"
"github.com/vmware/terraform-provider-tanzu-mission-control/internal/resources/gitrepository/spec"
"github.com/vmware/terraform-provider-tanzu-mission-control/internal/resources/gitrepository/status"
)
func ResourceGitRepository() *schema.Resource {
return &schema.Resource{
Schema: getGitRepositorySchema(false),
CreateContext: resourceGitRepositoryCreate,
ReadContext: dataSourceGitRepositoryRead,
UpdateContext: resourceGitRepositoryInPlaceUpdate,
DeleteContext: resourceGitRepositoryDelete,
CustomizeDiff: schema.CustomizeDiffFunc(commonscope.ValidateScope([]string{commonscope.ClusterKey, commonscope.ClusterGroupKey})),
}
}
func getGitRepositorySchema(isDataSource bool) map[string]*schema.Schema {
var gitRepositorySchema = map[string]*schema.Schema{
nameKey: {
Type: schema.TypeString,
Description: "Name of the Repository.",
Required: true,
ForceNew: true,
},
namespaceNameKey: {
Type: schema.TypeString,
Description: "Name of Namespace.",
Required: true,
ForceNew: true,
},
commonscope.ScopeKey: scope.ScopeSchema,
common.MetaKey: common.Meta,
statusKey: status.StatusSchema,
}
innerMap := map[string]*schema.Schema{
spec.SpecKey: spec.SpecSchema,
}
for key, value := range innerMap {
if isDataSource {
gitRepositorySchema[key] = helper.UpdateDataSourceSchema(value)
} else {
gitRepositorySchema[key] = value
}
}
return gitRepositorySchema
}
func resourceGitRepositoryCreate(ctx context.Context, d *schema.ResourceData, m interface{}) (diags diag.Diagnostics) {
config := m.(authctx.TanzuContext)
gitRepositoryName, ok := d.Get(nameKey).(string)
if !ok {
return diag.Errorf("Unable to read git repository name")
}
gitRepositoryNamespaceName, ok := d.Get(namespaceNameKey).(string)
if !ok {
return diag.Errorf("Unable to read git repository namespace name")
}
scopedFullnameData := scope.ConstructScope(d, gitRepositoryName, gitRepositoryNamespaceName)
if scopedFullnameData == nil {
return diag.Errorf("Unable to create Tanzu Mission Control git repository entry; Scope full name is empty")
}
var (
UID string
meta = common.ConstructMeta(d)
)
err := enableContinuousDelivery(&config, scopedFullnameData, meta)
if err != nil {
return diag.FromErr(errors.Wrapf(err, "Unable to create Tanzu Mission Control git repository entry, name : %s", gitRepositoryName))
}
switch scopedFullnameData.Scope {
case commonscope.ClusterScope:
if scopedFullnameData.FullnameCluster != nil {
gitRepositoryReq := &gitrepositoryclustermodel.VmwareTanzuManageV1alpha1ClusterNamespaceFluxcdGitrepositoryGitRepositoryRequest{
GitRepository: &gitrepositoryclustermodel.VmwareTanzuManageV1alpha1ClusterNamespaceFluxcdGitrepositoryGitRepository{
FullName: scopedFullnameData.FullnameCluster,
Meta: meta,
Spec: spec.ConstructSpecForClusterScope(d),
},
}
gitRepositoryResponse, err := config.TMCConnection.ClusterGitRepositoryResourceService.VmwareTanzuManageV1alpha1ClusterFluxcdGitrepositoryResourceServiceCreate(gitRepositoryReq)
if err != nil {
return diag.FromErr(errors.Wrapf(err, "Unable to create Tanzu Mission Control cluster git repository entry, name : %s", gitRepositoryName))
}
UID = gitRepositoryResponse.GitRepository.Meta.UID
}
case commonscope.ClusterGroupScope:
if scopedFullnameData.FullnameClusterGroup != nil {
gitRepositoryReq := &gitrepositoryclustergroupmodel.VmwareTanzuManageV1alpha1ClustergroupNamespaceFluxcdGitrepositoryGitRepositoryRequest{
GitRepository: &gitrepositoryclustergroupmodel.VmwareTanzuManageV1alpha1ClustergroupNamespaceFluxcdGitrepositoryGitRepository{
FullName: scopedFullnameData.FullnameClusterGroup,
Meta: meta,
Spec: spec.ConstructSpecForClusterGroupScope(d),
},
}
gitRepositoryResponse, err := config.TMCConnection.ClusterGroupGitRepositoryResourceService.VmwareTanzuManageV1alpha1ClustergroupFluxcdGitrepositoryResourceServiceCreate(gitRepositoryReq)
if err != nil {
return diag.FromErr(errors.Wrapf(err, "Unable to create Tanzu Mission Control cluster group git repository entry, name : %s", gitRepositoryName))
}
UID = gitRepositoryResponse.GitRepository.Meta.UID
}
case commonscope.UnknownScope:
return diag.Errorf("no valid scope type block found: minimum one valid scope type block is required among: %v. Please check the schema.", strings.Join(scope.ScopesAllowed[:], `, `))
}
// always run
d.SetId(UID)
return dataSourceGitRepositoryRead(ctx, d, m)
}
func resourceGitRepositoryDelete(ctx context.Context, d *schema.ResourceData, m interface{}) (diags diag.Diagnostics) {
config := m.(authctx.TanzuContext)
gitRepositoryName, ok := d.Get(nameKey).(string)
if !ok {
return diag.Errorf("Unable to read git repository name")
}
gitRepositoryNamespaceName, ok := d.Get(namespaceNameKey).(string)
if !ok {
return diag.Errorf("Unable to read git repository namespace name")
}
scopedFullnameData := scope.ConstructScope(d, gitRepositoryName, gitRepositoryNamespaceName)
if scopedFullnameData == nil {
return diag.Errorf("Unable to delete Tanzu Mission Control git repository entry; Scope full name is empty")
}
switch scopedFullnameData.Scope {
case commonscope.ClusterScope:
if scopedFullnameData.FullnameCluster != nil {
err := config.TMCConnection.ClusterGitRepositoryResourceService.VmwareTanzuManageV1alpha1ClusterFluxcdGitrepositoryResourceServiceDelete(scopedFullnameData.FullnameCluster)
if err != nil && !clienterrors.IsNotFoundError(err) {
return diag.FromErr(errors.Wrapf(err, "Unable to delete Tanzu Mission Control cluster git repository entry, name : %s", gitRepositoryName))
}
}
case commonscope.ClusterGroupScope:
if scopedFullnameData.FullnameClusterGroup != nil {
err := config.TMCConnection.ClusterGroupGitRepositoryResourceService.VmwareTanzuManageV1alpha1ClustergroupFluxcdGitrepositoryResourceServiceDelete(scopedFullnameData.FullnameClusterGroup)
if err != nil && !clienterrors.IsNotFoundError(err) {
return diag.FromErr(errors.Wrapf(err, "Unable to delete Tanzu Mission Control cluster group git repository entry, name : %s", gitRepositoryName))
}
}
case commonscope.UnknownScope:
return diag.Errorf("no valid scope type block found: minimum one valid scope type block is required among: %v. Please check the schema.", strings.Join(scope.ScopesAllowed[:], `, `))
}
// d.SetId("") is automatically called assuming delete returns no errors, but
// it is added here for explicitness.
d.SetId("")
return diags
}
func resourceGitRepositoryInPlaceUpdate(ctx context.Context, d *schema.ResourceData, m interface{}) (diags diag.Diagnostics) {
config := m.(authctx.TanzuContext)
gitRepositoryName, ok := d.Get(nameKey).(string)
if !ok {
return diag.Errorf("Unable to read git repository name")
}
gitRepositoryNamespaceName, ok := d.Get(namespaceNameKey).(string)
if !ok {
return diag.Errorf("Unable to read git repository namespace name")
}
scopedFullnameData := scope.ConstructScope(d, gitRepositoryName, gitRepositoryNamespaceName)
if scopedFullnameData == nil {
return diag.Errorf("Unable to update Tanzu Mission Control git repository entry; Scope full name is empty")
}
gitRepositoryDataFromServer, err := retrieveGitRepositoryDataFromServer(config, scopedFullnameData, d)
if err != nil {
return diag.FromErr(err)
}
var updateAvailable bool
if updateCheckForMeta(d, gitRepositoryDataFromServer.meta) {
updateAvailable = true
}
if updateCheckForSpec(d, gitRepositoryDataFromServer.atomicSpec, scopedFullnameData.Scope) {
updateAvailable = true
}
if !updateAvailable {
log.Printf("[INFO] git repository update is not required")
return diags
}
switch scopedFullnameData.Scope {
case commonscope.ClusterScope:
if scopedFullnameData.FullnameCluster != nil {
gitRepositoryReq := &gitrepositoryclustermodel.VmwareTanzuManageV1alpha1ClusterNamespaceFluxcdGitrepositoryGitRepositoryRequest{
GitRepository: &gitrepositoryclustermodel.VmwareTanzuManageV1alpha1ClusterNamespaceFluxcdGitrepositoryGitRepository{
FullName: scopedFullnameData.FullnameCluster,
Meta: gitRepositoryDataFromServer.meta,
Spec: gitRepositoryDataFromServer.atomicSpec,
},
}
_, err = config.TMCConnection.ClusterGitRepositoryResourceService.VmwareTanzuManageV1alpha1ClusterFluxcdGitrepositoryResourceServiceUpdate(gitRepositoryReq)
if err != nil {
return diag.FromErr(errors.Wrapf(err, "Unable to update Tanzu Mission Control cluster git repository entry, name : %s", gitRepositoryName))
}
}
case commonscope.ClusterGroupScope:
if scopedFullnameData.FullnameClusterGroup != nil {
gitRepositoryReq := &gitrepositoryclustergroupmodel.VmwareTanzuManageV1alpha1ClustergroupNamespaceFluxcdGitrepositoryGitRepositoryRequest{
GitRepository: &gitrepositoryclustergroupmodel.VmwareTanzuManageV1alpha1ClustergroupNamespaceFluxcdGitrepositoryGitRepository{
FullName: scopedFullnameData.FullnameClusterGroup,
Meta: gitRepositoryDataFromServer.meta,
Spec: &gitrepositoryclustergroupmodel.VmwareTanzuManageV1alpha1ClustergroupNamespaceFluxcdGitrepositorySpec{
AtomicSpec: gitRepositoryDataFromServer.atomicSpec,
},
},
}
_, err = config.TMCConnection.ClusterGroupGitRepositoryResourceService.VmwareTanzuManageV1alpha1ClustergroupFluxcdGitrepositoryResourceServiceUpdate(gitRepositoryReq)
if err != nil {
return diag.FromErr(errors.Wrapf(err, "Unable to update Tanzu Mission Control cluster group git repository entry, name : %s", gitRepositoryName))
}
}
case commonscope.UnknownScope:
return diag.Errorf("no valid scope type block found: minimum one valid scope type block is required among: %v. Please check the schema.", strings.Join(scope.ScopesAllowed[:], `, `))
}
log.Printf("[INFO] git repository update successful")
return dataSourceGitRepositoryRead(ctx, d, m)
}
func updateCheckForMeta(d *schema.ResourceData, meta *objectmetamodel.VmwareTanzuCoreV1alpha1ObjectMeta) bool {
if !common.HasMetaChanged(d) {
return false
}
objectMeta := common.ConstructMeta(d)
if value, ok := meta.Labels[common.CreatorLabelKey]; ok {
objectMeta.Labels[common.CreatorLabelKey] = value
}
meta.Labels = objectMeta.Labels
meta.Description = objectMeta.Description
log.Printf("[INFO] updating git repository meta data")
return true
}
func updateCheckForSpec(d *schema.ResourceData, atomicSpec *gitrepositoryclustermodel.VmwareTanzuManageV1alpha1ClusterNamespaceFluxcdGitrepositorySpec, scope commonscope.Scope) bool {
if !spec.HasSpecChanged(d) {
return false
}
var gitRepositorySpec *gitrepositoryclustermodel.VmwareTanzuManageV1alpha1ClusterNamespaceFluxcdGitrepositorySpec
switch scope {
case commonscope.ClusterScope:
gitRepositorySpec = spec.ConstructSpecForClusterScope(d)
case commonscope.ClusterGroupScope:
clusterGroupScopeSpec := spec.ConstructSpecForClusterGroupScope(d)
gitRepositorySpec = clusterGroupScopeSpec.AtomicSpec
}
atomicSpec.GitImplementation = gitRepositorySpec.GitImplementation
atomicSpec.Interval = gitRepositorySpec.Interval
atomicSpec.Ref = gitRepositorySpec.Ref
atomicSpec.SecretRef = gitRepositorySpec.SecretRef
atomicSpec.URL = gitRepositorySpec.URL
log.Printf("[INFO] updating git repository spec")
return true
}