-
Notifications
You must be signed in to change notification settings - Fork 377
/
nat.go
90 lines (78 loc) · 2.76 KB
/
nat.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
// Copyright (c) 2021 Terminus, Inc.
//
// This program is free software: you can use, redistribute, and/or modify
// it under the terms of the GNU Affero General Public License, version 3
// or later ("AGPL"), as published by the Free Software Foundation.
//
// This program is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
// FITNESS FOR A PARTICULAR PURPOSE.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
package nat
import (
"fmt"
"github.com/aliyun/alibaba-cloud-sdk-go/sdk/requests"
"github.com/aliyun/alibaba-cloud-sdk-go/services/vpc"
"github.com/sirupsen/logrus"
aliyun_resources "github.com/erda-project/erda/modules/cmp/impl/aliyun-resources"
)
func DescribeResource(ctx aliyun_resources.Context,
page aliyun_resources.PageOption, natGatewayId string) (*vpc.DescribeNatGatewaysResponse, error) {
client, err := vpc.NewClientWithAccessKey(ctx.Region, ctx.AccessKeyID, ctx.AccessSecret)
if err != nil {
logrus.Errorf("create vpc client error: %+v", err)
return nil, err
}
request := vpc.CreateDescribeNatGatewaysRequest()
request.Scheme = "https"
request.RegionId = ctx.Region
request.NatGatewayId = natGatewayId
response, err := client.DescribeNatGateways(request)
if err != nil {
logrus.Errorf("describe nat failed, error: %+v", err)
return nil, err
}
return response, nil
}
func DescribeSnatEntry(ctx aliyun_resources.Context,
page aliyun_resources.PageOption, snatTableId string) (*vpc.DescribeSnatTableEntriesResponse, error) {
client, err := vpc.NewClientWithAccessKey(ctx.Region, ctx.AccessKeyID, ctx.AccessSecret)
if err != nil {
logrus.Errorf("create vpc client error: %+v", err)
return nil, err
}
request := vpc.CreateDescribeSnatTableEntriesRequest()
request.Scheme = "https"
request.SnatTableId = snatTableId
request.PageSize = requests.NewInteger(*page.PageSize)
response, err := client.DescribeSnatTableEntries(request)
if err != nil {
logrus.Errorf("describe snat table failed, error: %+v", err)
return nil, err
}
return response, nil
}
func IsVswitchBoundSnat(ctx aliyun_resources.Context, snatTableId string, vswid string) (bool, error) {
if vswid == "" {
return false, nil
}
page := aliyun_resources.DefaultPageOption
rsp, err := DescribeSnatEntry(ctx, page, snatTableId)
if err != nil {
logrus.Errorf("describe snat entry failed, err:%v", err)
return false, err
}
if rsp == nil {
err := fmt.Errorf("describe snat entry failed, empty response")
logrus.Errorf(err.Error())
return false, err
}
for _, v := range rsp.SnatTableEntries.SnatTableEntry {
if v.SourceVSwitchId == vswid {
return true, nil
}
}
return false, nil
}