mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-05-30 20:41:41 +08:00
134 lines
3.7 KiB
Go
134 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 nutanix
|
|
|
|
import (
|
|
"context"
|
|
|
|
"yunion.io/x/jsonutils"
|
|
"yunion.io/x/log"
|
|
"yunion.io/x/pkg/errors"
|
|
|
|
"yunion.io/x/onecloud/pkg/cloudprovider"
|
|
"yunion.io/x/onecloud/pkg/esxi/options"
|
|
"yunion.io/x/onecloud/pkg/mcclient"
|
|
"yunion.io/x/onecloud/pkg/mcclient/auth"
|
|
"yunion.io/x/onecloud/pkg/mcclient/modules"
|
|
"yunion.io/x/onecloud/pkg/multicloud"
|
|
"yunion.io/x/onecloud/pkg/util/qemuimg"
|
|
)
|
|
|
|
type SStoragecache struct {
|
|
multicloud.SResourceBase
|
|
multicloud.STagBase
|
|
|
|
storage *SStorage
|
|
region *SRegion
|
|
}
|
|
|
|
func (self *SStoragecache) GetName() string {
|
|
return self.storage.GetName()
|
|
}
|
|
|
|
func (self *SStoragecache) GetId() string {
|
|
return self.storage.GetId()
|
|
}
|
|
|
|
func (self *SStoragecache) GetGlobalId() string {
|
|
return self.storage.GetGlobalId()
|
|
}
|
|
|
|
func (self *SStoragecache) GetStatus() string {
|
|
return "available"
|
|
}
|
|
|
|
func (self *SStoragecache) GetICloudImages() ([]cloudprovider.ICloudImage, error) {
|
|
images, err := self.region.GetImages()
|
|
if err != nil {
|
|
return nil, errors.Wrapf(err, "GetImages")
|
|
}
|
|
ret := []cloudprovider.ICloudImage{}
|
|
for i := range images {
|
|
if images[i].StorageContainerUUID != self.storage.GetGlobalId() {
|
|
continue
|
|
}
|
|
images[i].cache = self
|
|
ret = append(ret, &images[i])
|
|
}
|
|
return ret, nil
|
|
}
|
|
|
|
func (self *SStoragecache) GetICustomizedCloudImages() ([]cloudprovider.ICloudImage, error) {
|
|
return nil, cloudprovider.ErrNotSupported
|
|
}
|
|
|
|
func (self *SStoragecache) GetIImageById(id string) (cloudprovider.ICloudImage, error) {
|
|
image, err := self.region.GetImage(id)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
image.cache = self
|
|
return image, nil
|
|
}
|
|
|
|
func (self *SStoragecache) GetPath() string {
|
|
return ""
|
|
}
|
|
|
|
func (self *SStoragecache) CreateIImage(snapshotId, imageName, osType, imageDesc string) (cloudprovider.ICloudImage, error) {
|
|
return nil, cloudprovider.ErrNotImplemented
|
|
}
|
|
|
|
func (self *SStoragecache) DownloadImage(userCred mcclient.TokenCredential, imageId string, extId string, path string) (jsonutils.JSONObject, error) {
|
|
return nil, cloudprovider.ErrNotImplemented
|
|
}
|
|
|
|
func (self *SStoragecache) UploadImage(ctx context.Context, userCred mcclient.TokenCredential, opts *cloudprovider.SImageCreateOption, isForce bool) (string, error) {
|
|
s := auth.GetAdminSession(ctx, options.Options.Region, "")
|
|
|
|
meta, reader, size, err := modules.Images.Download(s, opts.ImageId, string(qemuimg.QCOW2), false)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
log.Infof("meta data %s", meta)
|
|
image, err := self.region.CreateImage(self.storage.StorageContainerUUID, opts, size, reader)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
image.cache = self
|
|
return image.GetGlobalId(), nil
|
|
}
|
|
|
|
func (self *SRegion) GetIStoragecaches() ([]cloudprovider.ICloudStoragecache, error) {
|
|
storages, err := self.GetStorages()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
ret := []cloudprovider.ICloudStoragecache{}
|
|
for i := range storages {
|
|
cache := &SStoragecache{storage: &storages[i], region: self}
|
|
ret = append(ret, cache)
|
|
}
|
|
return ret, nil
|
|
}
|
|
|
|
func (self *SRegion) GetIStoragecacheById(id string) (cloudprovider.ICloudStoragecache, error) {
|
|
storage, err := self.GetStorage(id)
|
|
if err != nil {
|
|
return nil, errors.Wrapf(err, "GetStorage")
|
|
}
|
|
return &SStoragecache{region: self, storage: storage}, nil
|
|
}
|