mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-06-23 07:05:31 +08:00
eip of snat rule in huawei cloud; bind ip to natgateway automatically when creating nat rule in aliyun cloud and try to unbind when deleting; fill or unfill the fields AssociateType, AssociateId when creating or deleting nat rule in huawei cloud; add SNatEntry and SNatEntryManager which has common field and function of SNat and DNat.
64 lines
1.9 KiB
Go
64 lines
1.9 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 tasks
|
|
|
|
import (
|
|
"context"
|
|
|
|
"yunion.io/x/pkg/errors"
|
|
|
|
api "yunion.io/x/onecloud/pkg/apis/compute"
|
|
"yunion.io/x/onecloud/pkg/cloudcommon/db/taskman"
|
|
"yunion.io/x/onecloud/pkg/compute/models"
|
|
)
|
|
|
|
type iTask interface {
|
|
taskman.ITask
|
|
TaskFailed(ctx context.Context, nat models.INatHelper, err error)
|
|
}
|
|
|
|
func NatToBindIPStage(ctx context.Context, task iTask, nat models.INatHelper) {
|
|
nat.SetStatus(task.GetUserCred(), api.NAT_STATUS_ALLOCATE, "")
|
|
natgateway, err := nat.GetNatgateway()
|
|
if err != nil {
|
|
task.TaskFailed(ctx, nat, errors.Wrap(err, "fetch natgateway failed"))
|
|
return
|
|
}
|
|
task.SetStage("OnBindIPComplete", nil)
|
|
if !task.GetParams().Contains("need_bind") {
|
|
task.ScheduleRun(nil)
|
|
return
|
|
}
|
|
|
|
eipId, _ := task.GetParams().GetString("eip_id")
|
|
if err := natgateway.GetRegion().GetDriver().RequestBindIPToNatgateway(ctx, task, natgateway, eipId); err != nil {
|
|
task.TaskFailed(ctx, nat, err)
|
|
return
|
|
}
|
|
}
|
|
|
|
func CreateINatFailedRollback(ctx context.Context, task iTask, nat models.INatHelper) error {
|
|
natgateway, err := nat.GetNatgateway()
|
|
if err != nil {
|
|
return errors.Wrap(err, "fetch natgateway failed")
|
|
}
|
|
eipId, _ := task.GetParams().GetString("eip_id")
|
|
err = natgateway.GetRegion().GetDriver().BindIPToNatgatewayRollback(ctx, eipId)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|