// Copyright 2019 Yunion // // 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 ucloud import ( "fmt" "strings" "yunion.io/x/jsonutils" api "yunion.io/x/cloudmux/pkg/apis/compute" "yunion.io/x/cloudmux/pkg/cloudprovider" "yunion.io/x/cloudmux/pkg/multicloud" ) type SVPC struct { multicloud.SVpc UcloudTags region *SRegion iwires []cloudprovider.ICloudWire CreateTime int64 `json:"CreateTime"` Name string `json:"Name"` Network []string `json:"Network"` NetworkInfo []NetworkInfo `json:"NetworkInfo"` SubnetCount int `json:"SubnetCount"` Tag string `json:"Tag"` UpdateTime int64 `json:"UpdateTime"` VPCID string `json:"VPCId"` } type NetworkInfo struct { Network string `json:"Network"` SubnetCount int `json:"SubnetCount"` } func (self *SVPC) addWire(wire *SWire) { if self.iwires == nil { self.iwires = make([]cloudprovider.ICloudWire, 0) } self.iwires = append(self.iwires, wire) } func (self *SVPC) GetId() string { return self.VPCID } func (self *SVPC) GetName() string { if len(self.Name) > 0 { return self.Name } return self.VPCID } func (self *SVPC) GetGlobalId() string { return self.GetId() } func (self *SVPC) GetStatus() string { return api.VPC_STATUS_AVAILABLE } func (self *SVPC) Refresh() error { new, err := self.region.getVpc(self.GetId()) if err != nil { return err } return jsonutils.Update(self, new) } func (self *SVPC) IsEmulated() bool { return false } func (self *SVPC) GetRegion() cloudprovider.ICloudRegion { return self.region } func (self *SVPC) GetIsDefault() bool { return false } func (self *SVPC) GetCidrBlock() string { return strings.Join(self.Network, ",") } func (self *SVPC) GetIWires() ([]cloudprovider.ICloudWire, error) { if self.iwires == nil { err := self.fetchNetworks() if err != nil { return nil, err } } return self.iwires, nil } // 由于Ucloud 安全组和vpc没有直接关联,这里是返回同一个项目下的防火墙列表,会导致重复同步的问题。 // https://docs.ucloud.cn/api/unet-api/grant_firewall func (self *SVPC) GetISecurityGroups() ([]cloudprovider.ICloudSecurityGroup, error) { return []cloudprovider.ICloudSecurityGroup{}, nil } func (self *SVPC) GetIRouteTables() ([]cloudprovider.ICloudRouteTable, error) { rts := []cloudprovider.ICloudRouteTable{} return rts, nil } func (self *SVPC) GetIRouteTableById(routeTableId string) (cloudprovider.ICloudRouteTable, error) { return nil, cloudprovider.ErrNotSupported } func (self *SVPC) Delete() error { return self.region.DeleteVpc(self.GetId()) } func (self *SVPC) GetIWireById(wireId string) (cloudprovider.ICloudWire, error) { if self.iwires == nil { err := self.fetchNetworks() if err != nil { return nil, err } } for i := 0; i < len(self.iwires); i += 1 { if self.iwires[i].GetGlobalId() == wireId { return self.iwires[i], nil } } return nil, cloudprovider.ErrNotFound } func (self *SVPC) fetchNetworks() error { networks, err := self.region.GetNetworks(self.GetId()) if err != nil { return err } for i := 0; i < len(networks); i += 1 { wire := self.getWireByRegionId(self.region.GetId()) networks[i].wire = wire wire.addNetwork(&networks[i]) } return nil } func (self *SVPC) getWireByRegionId(regionId string) *SWire { if len(regionId) == 0 { return nil } for i := 0; i < len(self.iwires); i++ { wire := self.iwires[i].(*SWire) if wire.region.GetId() == regionId { return wire } } return nil } func (self *SRegion) getVpc(vpcId string) (*SVPC, error) { vpcs, err := self.GetVpcs(vpcId) if err != nil { return nil, err } if len(vpcs) == 1 { return &vpcs[0], nil } else if len(vpcs) == 0 { return nil, cloudprovider.ErrNotFound } else { return nil, fmt.Errorf("getVpc %s %d found", vpcId, len(vpcs)) } } // https://docs.ucloud.cn/api/vpc2.0-api/delete_vpc func (self *SRegion) DeleteVpc(vpcId string) error { params := NewUcloudParams() params.Set("VPCId", vpcId) return self.DoAction("DeleteVPC", params, nil) } // https://support.huaweicloud.com/api-vpc/zh-cn_topic_0020090625.html func (self *SRegion) GetVpcs(vpcId string) ([]SVPC, error) { vpcs := make([]SVPC, 0) params := NewUcloudParams() if len(vpcId) > 0 { params.Set("VPCIds.0", vpcId) } err := self.DoListAll("DescribeVPC", params, &vpcs) return vpcs, err } func (self *SRegion) GetNetworks(vpcId string) ([]SNetwork, error) { params := NewUcloudParams() if len(vpcId) > 0 { params.Set("VPCId", vpcId) } networks := make([]SNetwork, 0) err := self.DoAction("DescribeSubnet", params, &networks) return networks, err }