Files
cloudpods/pkg/compute/tasks/security_group_rule_delete_task.go
2024-02-01 20:44:44 +08:00

139 lines
3.7 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"
"database/sql"
"time"
"yunion.io/x/cloudmux/pkg/apis"
"yunion.io/x/cloudmux/pkg/cloudprovider"
"yunion.io/x/jsonutils"
"yunion.io/x/pkg/errors"
"yunion.io/x/onecloud/pkg/cloudcommon/db"
"yunion.io/x/onecloud/pkg/cloudcommon/db/taskman"
"yunion.io/x/onecloud/pkg/compute/models"
"yunion.io/x/onecloud/pkg/util/logclient"
)
type SecurityGroupRuleDeleteTask struct {
taskman.STask
}
func init() {
taskman.RegisterTask(SecurityGroupRuleDeleteTask{})
}
func (self *SecurityGroupRuleDeleteTask) taskFailed(ctx context.Context, secgroup *models.SSecurityGroup, err error) {
logclient.AddActionLogWithContext(ctx, secgroup, logclient.ACT_DELETE_SECURITY_GROUP_RULE, err, self.UserCred, false)
rule, _ := self.getRule()
if rule != nil {
rule.SetStatus(ctx, self.UserCred, apis.STATUS_CREATE_FAILED, "")
logclient.AddActionLogWithContext(ctx, rule, logclient.ACT_ALLOCATE, err, self.UserCred, false)
}
self.SetStageFailed(ctx, jsonutils.NewString(err.Error()))
}
func (self *SecurityGroupRuleDeleteTask) getRule() (*models.SSecurityGroupRule, error) {
ruleId, err := self.GetParams().GetString("rule_id")
if err != nil {
return nil, errors.Wrapf(err, "get rule_id")
}
return models.SecurityGroupRuleManager.FetchRuleById(ruleId)
}
func (self *SecurityGroupRuleDeleteTask) OnInit(ctx context.Context, obj db.IStandaloneModel, data jsonutils.JSONObject) {
secgroup := obj.(*models.SSecurityGroup)
if len(secgroup.ManagerId) == 0 {
self.taskComplete(ctx, secgroup, nil)
return
}
rule, err := self.getRule()
if err != nil {
if errors.Cause(err) == sql.ErrNoRows {
self.taskComplete(ctx, secgroup, nil)
return
}
self.taskFailed(ctx, secgroup, errors.Wrapf(err, "getRule"))
return
}
if len(rule.ExternalId) == 0 {
self.taskComplete(ctx, secgroup, nil)
return
}
iGroup, err := secgroup.GetISecurityGroup(ctx)
if err != nil {
self.taskFailed(ctx, secgroup, errors.Wrapf(err, "GetISecurityGroup"))
return
}
rules, err := iGroup.GetRules()
if err != nil {
self.taskFailed(ctx, secgroup, errors.Wrapf(err, "GetRules"))
return
}
for i := range rules {
if rules[i].GetGlobalId() == rule.ExternalId {
err = rules[i].Delete()
if err != nil {
self.taskFailed(ctx, secgroup, errors.Wrapf(err, "Delete"))
return
}
self.taskComplete(ctx, secgroup, iGroup)
return
}
}
self.taskComplete(ctx, secgroup, iGroup)
return
}
func (self *SecurityGroupRuleDeleteTask) taskComplete(ctx context.Context, secgroup *models.SSecurityGroup, iGroup cloudprovider.ICloudSecurityGroup) {
rule, _ := self.getRule()
if rule != nil {
rule.RealDelete(ctx, self.UserCred)
}
// wait rule deleted
if iGroup != nil && rule != nil && len(rule.ExternalId) > 0 {
cloudprovider.Wait(time.Second*5, time.Minute, func() (bool, error) {
iGroup.Refresh()
rules, err := iGroup.GetRules()
if err != nil {
return false, nil
}
for i := range rules {
if rules[i].GetGlobalId() == rule.ExternalId {
return false, nil
}
}
return true, nil
})
rules, err := iGroup.GetRules()
if err == nil {
secgroup.SyncRules(ctx, self.UserCred, rules)
}
}
self.SetStageComplete(ctx, nil)
}