| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- // 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 baremetal
- import (
- "context"
- "fmt"
- "yunion.io/x/jsonutils"
- "yunion.io/x/log"
- "yunion.io/x/pkg/util/httputils"
- 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/compute/models"
- )
- type BaremetalDeleteTask struct {
- SBaremetalBaseTask
- }
- func init() {
- taskman.RegisterTask(BaremetalDeleteTask{})
- }
- func (self *BaremetalDeleteTask) OnInit(ctx context.Context, obj db.IStandaloneModel, body jsonutils.JSONObject) {
- baremetal := obj.(*models.SHost)
- baremetal.SetStatus(ctx, self.UserCred, api.BAREMETAL_DELETE, "")
- if !baremetal.IsBaremetalAgentReady() {
- self.OnDeleteBaremetalComplete(ctx, baremetal, nil)
- return
- }
- url := fmt.Sprintf("/baremetals/%s/delete", baremetal.Id)
- headers := self.GetTaskRequestHeader()
- self.SetStage("OnDeleteBaremetalComplete", nil)
- _, err := baremetal.BaremetalSyncRequest(ctx, "POST", url, headers, nil)
- if err != nil {
- if errVal, ok := err.(*httputils.JSONClientError); ok && errVal.Code == 404 {
- self.OnDeleteBaremetalComplete(ctx, baremetal, nil)
- return
- }
- log.Errorln(err.Error())
- self.OnFailure(ctx, baremetal, jsonutils.NewString(err.Error()))
- }
- }
- func (self *BaremetalDeleteTask) OnDeleteBaremetalComplete(ctx context.Context, baremetal *models.SHost, body jsonutils.JSONObject) {
- err := baremetal.RealDelete(ctx, self.UserCred)
- if err != nil {
- log.Errorf("RealDelete fail %s", err)
- self.OnFailure(ctx, baremetal, jsonutils.NewString(err.Error()))
- return
- }
- self.SetStageComplete(ctx, nil)
- }
- func (self *BaremetalDeleteTask) OnDeleteBaremetalCompleteFailed(ctx context.Context, baremetal *models.SHost, body jsonutils.JSONObject) {
- self.OnFailure(ctx, baremetal, body)
- }
- func (self *BaremetalDeleteTask) OnFailure(ctx context.Context, baremetal *models.SHost, body jsonutils.JSONObject) {
- baremetal.SetStatus(ctx, self.UserCred, api.BAREMETAL_DELETE_FAIL, body.String())
- self.SetStageFailed(ctx, body)
- }
|