forked from aliyun/terraform-provider-alicloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data_source_alicloud_mns_topic_subscription.go
130 lines (115 loc) · 3.36 KB
/
data_source_alicloud_mns_topic_subscription.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
package alicloud
import (
"fmt"
"github.com/dxh031/ali_mns"
"github.com/hashicorp/terraform/helper/schema"
"github.com/terraform-providers/terraform-provider-alicloud/alicloud/connectivity"
)
func dataSourceAlicloudMNSTopicSubscriptions() *schema.Resource {
return &schema.Resource{
Read: dataSourceAlicloudMNSTopicSubscriptionRead,
Schema: map[string]*schema.Schema{
"topic_name": {
Type: schema.TypeString,
Required: true,
},
"name_prefix": {
Type: schema.TypeString,
Optional: true,
},
"output_file": {
Type: schema.TypeString,
Optional: true,
},
// Computed values
"subscriptions": {
Type: schema.TypeList,
Computed: true,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"id": {
Type: schema.TypeString,
Computed: true,
},
"name": {
Type: schema.TypeString,
Computed: true,
},
"topic_name": {
Type: schema.TypeString,
Computed: true,
},
"endpoint": {
Type: schema.TypeString,
Computed: true,
},
"filter_tag": {
Type: schema.TypeString,
Computed: true,
},
"notify_strategy": {
Type: schema.TypeString,
Computed: true,
},
"notify_content_format": {
Type: schema.TypeString,
Computed: true,
},
},
},
},
},
}
}
func dataSourceAlicloudMNSTopicSubscriptionRead(d *schema.ResourceData, meta interface{}) error {
client := meta.(*connectivity.AliyunClient)
topicName := d.Get("topic_name").(string)
var namePrefix string
if v, ok := d.GetOk("name_prefix"); ok {
namePrefix = v.(string)
}
var subscriptionAttr []ali_mns.SubscriptionAttribute
for {
var nextMaker string
raw, err := client.WithMnsSubscriptionManagerByTopicName(topicName, func(subscriptionManager ali_mns.AliMNSTopic) (interface{}, error) {
return subscriptionManager.ListSubscriptionDetailByTopic(nextMaker, 1000, namePrefix)
})
if err != nil {
return fmt.Errorf("Getting alicoudMNSSubscription error: %#v", err)
}
subscriptionDetails, _ := raw.(ali_mns.SubscriptionDetails)
for _, attr := range subscriptionDetails.Attrs {
subscriptionAttr = append(subscriptionAttr, attr)
}
nextMaker = subscriptionDetails.NextMarker
if nextMaker == "" {
break
}
}
return mnsTopicSubcriptionDescription(d, subscriptionAttr)
}
func mnsTopicSubcriptionDescription(d *schema.ResourceData, topicAttr []ali_mns.SubscriptionAttribute) error {
var ids []string
var s []map[string]interface{}
for _, item := range topicAttr {
mapping := map[string]interface{}{
"id": fmt.Sprintf("%s%s%s", item.TopicName, COLON_SEPARATED, item.SubscriptionName),
"name": item.SubscriptionName,
"topic_name": item.TopicName,
"endpoint": item.Endpoint,
"filter_tag": item.FilterTag,
"notify_strategy": item.NotifyStrategy,
"notify_content_format": item.NotifyContentFormat,
}
ids = append(ids, fmt.Sprintf("%s%s%s", item.TopicName, COLON_SEPARATED, item.SubscriptionName))
s = append(s, mapping)
}
d.SetId(dataResourceIdHash(ids))
if err := d.Set("subscriptions", s); err != nil {
return err
}
if output, ok := d.GetOk("output_file"); ok && output.(string) != "" {
writeToFile(output.(string), s)
}
return nil
}