forked from Yuzuki616/AWS-Panel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaga.go
114 lines (108 loc) · 3.32 KB
/
aga.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
package aws
import (
"github.com/aws/aws-sdk-go/aws"
aga "github.com/aws/aws-sdk-go/service/globalaccelerator"
"time"
)
type AgaInfo struct {
Name *string
Status *string
Arn string
Ip []*aga.IpSet
Protocol *string
Port []*aga.PortOverride
}
func (a *Aws) CreateAga(Name string, Region string, InstanceId string) (*AgaInfo, error) {
svc := aga.New(a.Sess)
IdempotencyToken := time.Unix(time.Now().Unix(), 0).Format("2006-01-02_15:04:05")
createAccRt, createAccErr := svc.CreateAccelerator(&aga.CreateAcceleratorInput{
Name: aws.String(Name),
Enabled: aws.Bool(false),
IdempotencyToken: aws.String(IdempotencyToken),
})
if createAccErr != nil {
return nil, createAccErr
}
createLiRt, createLiErr := svc.CreateListener(&aga.CreateListenerInput{
AcceleratorArn: createAccRt.Accelerator.AcceleratorArn,
PortRanges: []*aga.PortRange{
{
FromPort: aws.Int64(1),
ToPort: aws.Int64(65535),
},
},
Protocol: aws.String("TCP"),
})
if createLiErr != nil {
return nil, createLiErr
}
createEndRt, createEndErr := svc.CreateEndpointGroup(&aga.CreateEndpointGroupInput{
EndpointGroupRegion: aws.String(Region),
IdempotencyToken: aws.String(IdempotencyToken),
ListenerArn: createLiRt.Listener.ListenerArn,
HealthCheckPort: aws.Int64(22),
EndpointConfigurations: []*aga.EndpointConfiguration{
{
EndpointId: aws.String(InstanceId),
},
},
})
if createEndErr != nil {
return nil, createEndErr
}
return &AgaInfo{
Name: createAccRt.Accelerator.Name,
Status: createAccRt.Accelerator.Status,
Arn: *createAccRt.Accelerator.AcceleratorArn,
Ip: createAccRt.Accelerator.IpSets,
Protocol: createLiRt.Listener.Protocol,
Port: createEndRt.EndpointGroup.PortOverrides,
}, nil
}
func (a *Aws) ListAga() ([]*aga.Accelerator, error) {
svc := aga.New(a.Sess)
rt, err := svc.ListAccelerators(&aga.ListAcceleratorsInput{})
if err != nil {
return nil, err
}
return rt.Accelerators, err
}
/* func (p *Aws) GetAgaInfo(AcceleratorArn string) (*AgaInfo, error) {
svc := aga.New(p.Sess)
accRt, accErr := svc.DescribeAccelerator(&aga.DescribeAcceleratorInput{AcceleratorArn: aws.String(AcceleratorArn)})
if accErr != nil {
return nil, accErr
}
liRt, liErr := svc.ListListeners(&aga.ListListenersInput{AcceleratorArn: accRt.Accelerator.AcceleratorArn})
if liErr != nil {
return nil, liErr
}
endRt, endErr := svc.ListEndpointGroups(&aga.ListEndpointGroupsInput{ListenerArn: liRt.Listeners[0].ListenerArn})
if endErr != nil {
return nil, endErr
}
return &AgaInfo{
Username: accRt.Accelerator.Username,
Status: accRt.Accelerator.Status,
Arn: AcceleratorArn + "_" +
*liRt.Listeners[0].ListenerArn + "_" + *endRt.EndpointGroups[0].EndpointGroupArn,
Ip: accRt.Accelerator.IpSets,
Protocol: liRt.Listeners[0].Protocol,
Port: endRt.EndpointGroups[0].PortOverrides,
}, nil
}*/
func (a *Aws) DeleteAga(AcceleratorArn string) error {
svc := aga.New(a.Sess)
_, updateErr := svc.UpdateAccelerator(&aga.UpdateAcceleratorInput{
AcceleratorArn: aws.String(AcceleratorArn),
Enabled: aws.Bool(false),
})
if updateErr != nil {
return updateErr
}
_, deleteErr := svc.DeleteAccelerator(&aga.DeleteAcceleratorInput{AcceleratorArn: aws.String(AcceleratorArn)})
if deleteErr != nil {
return deleteErr
}
return nil
}