Files
cloudpods/pkg/compute/tasks/natsentry_create_task.go
Rain 07dc073b14 Bugfix: add the operation log of natgateway; display correctly multiple
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.
2019-10-22 15:20:13 +08:00

122 lines
4.0 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"
"fmt"
"time"
"yunion.io/x/jsonutils"
"yunion.io/x/log"
"yunion.io/x/pkg/errors"
api "yunion.io/x/onecloud/pkg/apis/compute"
"yunion.io/x/onecloud/pkg/cloudcommon/db"
"yunion.io/x/onecloud/pkg/cloudcommon/db/taskman"
"yunion.io/x/onecloud/pkg/cloudprovider"
"yunion.io/x/onecloud/pkg/compute/models"
"yunion.io/x/onecloud/pkg/util/logclient"
)
type SNatSEntryCreateTask struct {
taskman.STask
}
func init() {
taskman.RegisterTask(SNatSEntryCreateTask{})
}
func (self *SNatSEntryCreateTask) TaskFailed(ctx context.Context, snatEntry models.INatHelper, err error) {
snatEntry.SetStatus(self.UserCred, api.NAT_STATUS_FAILED, err.Error())
db.OpsLog.LogEvent(snatEntry, db.ACT_ALLOCATE_FAIL, err.Error(), self.UserCred)
natgateway, err := snatEntry.GetNatgateway()
if err == nil {
logclient.AddActionLogWithStartable(self, natgateway, logclient.ACT_NAT_CREATE_SNAT, nil, self.UserCred, false)
} else {
logclient.AddActionLogWithStartable(self, snatEntry, logclient.ACT_ALLOCATE, nil, self.UserCred, false)
}
self.SetStageFailed(ctx, err.Error())
}
func (self *SNatSEntryCreateTask) OnInit(ctx context.Context, obj db.IStandaloneModel, body jsonutils.JSONObject) {
snatEntry := obj.(*models.SNatSEntry)
NatToBindIPStage(ctx, self, snatEntry)
}
func (self *SNatSEntryCreateTask) OnBindIPCompleteFailed(ctx context.Context, snatEntry *models.SNatSEntry,
reason jsonutils.JSONObject) {
self.TaskFailed(ctx, snatEntry, fmt.Errorf(reason.String()))
}
func (self *SNatSEntryCreateTask) OnBindIPComplete(ctx context.Context, snatEntry *models.SNatSEntry,
body jsonutils.JSONObject) {
cloudNatGateway, err := snatEntry.GetINatGateway()
if err != nil {
self.TaskFailed(ctx, snatEntry, errors.Wrap(err, "Get NatGateway failed"))
return
}
externalIPID, err := self.Params.GetString("eip_external_id")
// construct a DNat RUle
snatRule := cloudprovider.SNatSRule{
ExternalIP: snatEntry.IP,
ExternalIPID: externalIPID,
}
if self.Params.Contains("network_ext_id") {
extID, _ := self.Params.GetString("network_ext_id")
snatRule.NetworkID = extID
} else {
snatRule.SourceCIDR = snatEntry.SourceCIDR
}
extSnat, err := cloudNatGateway.CreateINatSEntry(snatRule)
if err != nil {
// create nat failed in cloud
if self.Params.Contains("need_bind") {
err1 := CreateINatFailedRollback(ctx, self, snatEntry)
if err1 != nil {
eip_id, _ := self.Params.GetString("eip_id")
log.Errorf("roll back after failing to create snat in cloud so that eip %s need to sync with cloud", eip_id)
}
}
self.TaskFailed(ctx, snatEntry, errors.Wrapf(err, "Create SNat Entry '%s' failed", snatEntry.ExternalId))
return
}
err = cloudprovider.WaitStatus(extSnat, api.NAT_STAUTS_AVAILABLE, 10*time.Second, 300*time.Second)
if err != nil {
self.TaskFailed(ctx, snatEntry, err)
return
}
err = db.SetExternalId(snatEntry, self.UserCred, extSnat.GetGlobalId())
if err != nil {
self.TaskFailed(ctx, snatEntry, errors.Wrap(err, "set external id failed"))
return
}
snatEntry.SetStatus(self.UserCred, api.NAT_STAUTS_AVAILABLE, "")
db.OpsLog.LogEvent(snatEntry, db.ACT_ALLOCATE, snatEntry.GetShortDesc(ctx), self.UserCred)
natgateway, err := snatEntry.GetNatgateway()
if err == nil {
logclient.AddActionLogWithStartable(self, natgateway, logclient.ACT_NAT_CREATE_SNAT, nil, self.UserCred, true)
} else {
logclient.AddActionLogWithStartable(self, snatEntry, logclient.ACT_ALLOCATE, nil, self.UserCred, true)
}
self.SetStageComplete(ctx, nil)
}