You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
1.9 KiB
79 lines
1.9 KiB
/*
|
|
* Copyright 2025 coze-dev Authors
|
|
*
|
|
* 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 main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"text/tabwriter"
|
|
|
|
"github.com/volcengine/volcengine-go-sdk/service/rocketmq"
|
|
)
|
|
|
|
func GetChosenZoneID() (string, error) {
|
|
zoneID := os.Getenv("VE_ZONE_ID")
|
|
if zoneID != "" {
|
|
return zoneID, nil
|
|
}
|
|
|
|
resp, err := listZoneInfos()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return chooseZone(resp), nil
|
|
}
|
|
|
|
func chooseZone(resp *rocketmq.DescribeAvailabilityZonesOutput) string {
|
|
fmt.Printf("Please choose a zone id in list: ")
|
|
var zoneId string
|
|
fmt.Scanln(&zoneId)
|
|
|
|
// zoneId := "cn-beijing-a"
|
|
var found bool
|
|
for _, zone := range resp.Zones {
|
|
if zoneId == s(zone.ZoneId) {
|
|
found = true
|
|
break
|
|
}
|
|
}
|
|
if !found {
|
|
fmt.Printf("Zone id %s does not exist, please choose again\n", zoneId)
|
|
return chooseZone(resp)
|
|
}
|
|
|
|
return zoneId
|
|
}
|
|
|
|
func listZoneInfos() (*rocketmq.DescribeAvailabilityZonesOutput, error) {
|
|
svc := rocketmq.New(sess)
|
|
|
|
resp, err := svc.DescribeAvailabilityZones(&rocketmq.DescribeAvailabilityZonesInput{})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
fmt.Printf("AvailabilityZones:\n")
|
|
w := tabwriter.NewWriter(os.Stdout, 0, 0, 4, ' ', 0)
|
|
fmt.Fprintln(w, "Zone\tZoneID\tStatus\tDescription")
|
|
for _, zone := range resp.Zones {
|
|
fmt.Fprintf(w, "%s\t%s\t%s\t%s\n", s(zone.ZoneName), s(zone.ZoneId), s(zone.ZoneStatus), s(zone.Description))
|
|
}
|
|
w.Flush()
|
|
|
|
return resp, nil
|
|
}
|
|
|