mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-05-12 17:14:27 +08:00
94 lines
3.3 KiB
Go
94 lines
3.3 KiB
Go
// 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 regiondrivers
|
|
|
|
import (
|
|
"context"
|
|
"database/sql"
|
|
"strings"
|
|
|
|
"yunion.io/x/sqlchemy"
|
|
|
|
api "yunion.io/x/onecloud/pkg/apis/compute"
|
|
"yunion.io/x/onecloud/pkg/compute/models"
|
|
"yunion.io/x/onecloud/pkg/httperrors"
|
|
"yunion.io/x/onecloud/pkg/mcclient"
|
|
)
|
|
|
|
type SZStackRegionDriver struct {
|
|
SManagedVirtualizationRegionDriver
|
|
}
|
|
|
|
func init() {
|
|
driver := SZStackRegionDriver{}
|
|
models.RegisterRegionDriver(&driver)
|
|
}
|
|
|
|
func (self *SZStackRegionDriver) GetProvider() string {
|
|
return api.CLOUD_PROVIDER_ZSTACK
|
|
}
|
|
|
|
func (self *SZStackRegionDriver) ValidateCreateEipData(ctx context.Context, userCred mcclient.TokenCredential, input *api.SElasticipCreateInput) error {
|
|
if len(input.NetworkId) == 0 {
|
|
return httperrors.NewMissingParameterError("network_id")
|
|
}
|
|
_network, err := models.NetworkManager.FetchByIdOrName(userCred, input.NetworkId)
|
|
if err != nil {
|
|
if err == sql.ErrNoRows {
|
|
return httperrors.NewResourceNotFoundError2("network", input.NetworkId)
|
|
}
|
|
return httperrors.NewGeneralError(err)
|
|
}
|
|
network := _network.(*models.SNetwork)
|
|
input.NetworkId = network.Id
|
|
|
|
vpc, _ := network.GetVpc()
|
|
if vpc == nil {
|
|
return httperrors.NewInputParameterError("failed to found vpc for network %s(%s)", network.Name, network.Id)
|
|
}
|
|
input.ManagerId = vpc.ManagerId
|
|
region, err := vpc.GetRegion()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if region.Id != input.CloudregionId {
|
|
return httperrors.NewUnsupportOperationError("network %s(%s) does not belong to %s", network.Name, network.Id, self.GetProvider())
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (self *SZStackRegionDriver) ValidateCreateSecurityGroupInput(ctx context.Context, userCred mcclient.TokenCredential, input *api.SSecgroupCreateInput) (*api.SSecgroupCreateInput, error) {
|
|
for i := range input.Rules {
|
|
rule := input.Rules[i]
|
|
if len(rule.Ports) > 0 && strings.Contains(input.Rules[i].Ports, ",") {
|
|
return nil, httperrors.NewInputParameterError("invalid ports %s", input.Rules[i].Ports)
|
|
}
|
|
}
|
|
return self.SManagedVirtualizationRegionDriver.ValidateCreateSecurityGroupInput(ctx, userCred, input)
|
|
}
|
|
|
|
func (self *SZStackRegionDriver) ValidateUpdateSecurityGroupRuleInput(ctx context.Context, userCred mcclient.TokenCredential, input *api.SSecgroupRuleUpdateInput) (*api.SSecgroupRuleUpdateInput, error) {
|
|
if input.Ports != nil && strings.Contains(*input.Ports, ",") {
|
|
return nil, httperrors.NewInputParameterError("invalid ports %s", *input.Ports)
|
|
}
|
|
return self.SManagedVirtualizationRegionDriver.ValidateUpdateSecurityGroupRuleInput(ctx, userCred, input)
|
|
}
|
|
|
|
func (self *SZStackRegionDriver) GetSecurityGroupFilter(vpc *models.SVpc) (func(q *sqlchemy.SQuery) *sqlchemy.SQuery, error) {
|
|
return func(q *sqlchemy.SQuery) *sqlchemy.SQuery {
|
|
return q.Equals("cloudregion_id", vpc.CloudregionId)
|
|
}, nil
|
|
}
|