Files
cloudpods/pkg/mcclient/modules/mod_buckets.go
2019-09-07 22:56:47 +08:00

84 lines
2.1 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 modules
import (
"fmt"
"io"
"net/http"
"strconv"
"github.com/pkg/errors"
api "yunion.io/x/onecloud/pkg/apis/compute"
"yunion.io/x/onecloud/pkg/mcclient"
"yunion.io/x/onecloud/pkg/mcclient/modulebase"
"yunion.io/x/onecloud/pkg/util/httputils"
)
type SBucketManager struct {
modulebase.ResourceManager
}
func (manager *SBucketManager) Upload(s *mcclient.ClientSession, bucketId string, key string, body io.Reader, contLength int64, contType string, storageClass string, acl string) error {
method := httputils.POST
path := fmt.Sprintf("/%s/%s/upload", manager.URLPath(), bucketId)
headers := http.Header{}
headers.Set(api.BUCKET_UPLOAD_OBJECT_KEY_HEADER, key)
if len(contType) > 0 {
headers.Set("Content-Type", contType)
}
if contLength > 0 {
headers.Set("Content-Length", strconv.FormatInt(contLength, 10))
}
if len(storageClass) > 0 {
headers.Set(api.BUCKET_UPLOAD_OBJECT_STORAGECLASS_HEADER, storageClass)
}
if len(acl) > 0 {
headers.Set(api.BUCKET_UPLOAD_OBJECT_ACL_HEADER, acl)
}
resp, err := modulebase.RawRequest(manager.ResourceManager, s, method, path, headers, body)
if err != nil {
return errors.Wrap(err, "rawRequest")
}
_, _, err = s.ParseJSONResponse(resp, err)
if err != nil {
return err
}
return nil
}
var (
Buckets SBucketManager
)
func init() {
Buckets = SBucketManager{
NewComputeManager("bucket", "buckets",
[]string{"ID", "Name", "Storage_Class",
"Status", "location", "acl",
"region", "manager_id",
},
[]string{}),
}
registerCompute(&Buckets)
}