forked from aliyun/terraform-provider-alicloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data_source_alicloud_mns_topic.go
110 lines (95 loc) · 2.5 KB
/
data_source_alicloud_mns_topic.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
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 dataSourceAlicloudMNSTopics() *schema.Resource {
return &schema.Resource{
Read: dataSourceAlicloudMNSTopicRead,
Schema: map[string]*schema.Schema{
"name_prefix": {
Type: schema.TypeString,
Optional: true,
},
"output_file": {
Type: schema.TypeString,
Optional: true,
},
// Computed values
"topics": {
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,
},
"maximum_message_size": {
Type: schema.TypeInt,
Computed: true,
},
"logging_enabled": {
Type: schema.TypeBool,
Computed: true,
},
},
},
},
},
}
}
func dataSourceAlicloudMNSTopicRead(d *schema.ResourceData, meta interface{}) error {
client := meta.(*connectivity.AliyunClient)
var namePrefix string
if v, ok := d.GetOk("name_prefix"); ok {
namePrefix = v.(string)
}
var topicAttr []ali_mns.TopicAttribute
for {
var nextMaker string
raw, err := client.WithMnsTopicManager(func(topicManager ali_mns.AliTopicManager) (interface{}, error) {
return topicManager.ListTopicDetail(nextMaker, 1000, namePrefix)
})
if err != nil {
return fmt.Errorf("Get topicDetails error: %#v", err)
}
topicDetails, _ := raw.(ali_mns.TopicDetails)
for _, attr := range topicDetails.Attrs {
topicAttr = append(topicAttr, attr)
}
nextMaker = topicDetails.NextMarker
if nextMaker == "" {
break
}
}
return mnsTopicDescription(d, topicAttr)
}
func mnsTopicDescription(d *schema.ResourceData, topicAttr []ali_mns.TopicAttribute) error {
var ids []string
var s []map[string]interface{}
for _, item := range topicAttr {
mapping := map[string]interface{}{
"id": item.TopicName,
"name": item.TopicName,
"maximum_message_size": item.MaxMessageSize,
"logging_enabled": item.LoggingEnabled,
}
ids = append(ids, item.TopicName)
s = append(s, mapping)
}
d.SetId(dataResourceIdHash(ids))
if err := d.Set("topics", s); err != nil {
return err
}
if output, ok := d.GetOk("output_file"); ok && output.(string) != "" {
writeToFile(output.(string), s)
}
return nil
}