forked from databricks/terraform-provider-databricks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontext.go
58 lines (52 loc) · 1.7 KB
/
context.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
package common
import (
"context"
"strings"
"github.com/databricks/databricks-sdk-go/useragent"
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
)
// AddContextToAllResources ...
func AddContextToAllResources(p *schema.Provider, prefix string) {
for k, r := range p.DataSourcesMap {
name := strings.ReplaceAll(k, prefix+"_", "")
wrap := op(r.ReadContext).addContext(ResourceName, name).addContext(IsData, "yes")
r.ReadContext = schema.ReadContextFunc(wrap)
}
for k, r := range p.ResourcesMap {
k = strings.ReplaceAll(k, prefix+"_", "")
addContextToResource(k, r)
}
}
// any of TF resource CRUD operation, that may need context enhancement
type op func(ctx context.Context, d *schema.ResourceData, m any) diag.Diagnostics
// wrap operation invokations with additional context
func (f op) addContext(k contextKey, v string) op {
return func(ctx context.Context, d *schema.ResourceData, m any) diag.Diagnostics {
switch k {
case ResourceName:
ctx = useragent.InContext(ctx, "resource", v)
case IsData:
ctx = useragent.InContext(ctx, "data", v)
}
ctx = context.WithValue(ctx, k, v)
return f(ctx, d, m)
}
}
func addContextToResource(name string, r *schema.Resource) {
addName := func(a op) func(ctx context.Context, d *schema.ResourceData, m any) diag.Diagnostics {
return a.addContext(ResourceName, name)
}
if r.CreateContext != nil {
r.CreateContext = addName(op(r.CreateContext))
}
if r.ReadContext != nil {
r.ReadContext = addName(op(r.ReadContext))
}
if r.UpdateContext != nil {
r.UpdateContext = addName(op(r.UpdateContext))
}
if r.DeleteContext != nil {
r.DeleteContext = addName(op(r.DeleteContext))
}
}