| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443 |
- /*
- * MinIO Go Library for Amazon S3 Compatible Cloud Storage
- * Copyright 2015-2017 MinIO, Inc.
- *
- * 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 s3cli
- import (
- "bytes"
- "context"
- "encoding/xml"
- "fmt"
- "io/ioutil"
- "net/http"
- "net/url"
- "os"
- "strings"
- "github.com/minio/minio-go/v6/pkg/s3utils"
- )
- /// Bucket operations
- // MakeBucket creates a new bucket with bucketName.
- //
- // Location is an optional argument, by default all buckets are
- // created in US Standard Region.
- //
- // For Amazon S3 for more supported regions - http://docs.aws.amazon.com/general/latest/gr/rande.html
- // For Google Cloud Storage for more supported regions - https://cloud.google.com/storage/docs/bucket-locations
- func (c Client) MakeBucket(bucketName string, location string) (err error) {
- defer func() {
- // Save the location into cache on a successful makeBucket response.
- if err == nil {
- c.bucketLocCache.Set(bucketName, location)
- }
- }()
- // Validate the input arguments.
- if err := s3utils.CheckValidBucketNameStrict(bucketName); err != nil {
- return err
- }
- // If location is empty, treat is a default region 'us-east-1'.
- if location == "" {
- location = "us-east-1"
- // For custom region clients, default
- // to custom region instead not 'us-east-1'.
- if c.region != "" {
- location = c.region
- }
- }
- // PUT bucket request metadata.
- reqMetadata := requestMetadata{
- bucketName: bucketName,
- bucketLocation: location,
- }
- // If location is not 'us-east-1' create bucket location config.
- if location != "us-east-1" && location != "" {
- createBucketConfig := CreateBucketConfiguration{}
- createBucketConfig.Location = location
- var createBucketConfigBytes []byte
- createBucketConfigBytes, err = xml.Marshal(createBucketConfig)
- if err != nil {
- return err
- }
- reqMetadata.contentMD5Base64 = sumMD5Base64(createBucketConfigBytes)
- reqMetadata.contentSHA256Hex = sum256Hex(createBucketConfigBytes)
- reqMetadata.contentBody = bytes.NewReader(createBucketConfigBytes)
- reqMetadata.contentLength = int64(len(createBucketConfigBytes))
- }
- // Execute PUT to create a new bucket.
- resp, err := c.executeMethod(context.Background(), "PUT", reqMetadata)
- defer closeResponse(resp)
- if err != nil {
- return err
- }
- if resp != nil {
- if resp.StatusCode != http.StatusOK {
- return httpRespToErrorResponse(resp, bucketName, "")
- }
- }
- // Success.
- return nil
- }
- // SetBucketPolicy set the access permissions on an existing bucket.
- func (c Client) SetBucketPolicy(bucketName, policy string) error {
- // Input validation.
- if err := s3utils.CheckValidBucketName(bucketName); err != nil {
- return err
- }
- // If policy is empty then delete the bucket policy.
- if policy == "" {
- return c.removeBucketPolicy(bucketName)
- }
- // Save the updated policies.
- return c.putBucketPolicy(bucketName, policy)
- }
- // Saves a new bucket policy.
- func (c Client) putBucketPolicy(bucketName, policy string) error {
- // Input validation.
- if err := s3utils.CheckValidBucketName(bucketName); err != nil {
- return err
- }
- // Get resources properly escaped and lined up before
- // using them in http request.
- urlValues := make(url.Values)
- urlValues.Set("policy", "")
- // Content-length is mandatory for put policy request
- policyReader := strings.NewReader(policy)
- b, err := ioutil.ReadAll(policyReader)
- if err != nil {
- return err
- }
- reqMetadata := requestMetadata{
- bucketName: bucketName,
- queryValues: urlValues,
- contentBody: policyReader,
- contentLength: int64(len(b)),
- }
- // Execute PUT to upload a new bucket policy.
- resp, err := c.executeMethod(context.Background(), "PUT", reqMetadata)
- defer closeResponse(resp)
- if err != nil {
- return err
- }
- if resp != nil {
- if resp.StatusCode != http.StatusNoContent {
- return httpRespToErrorResponse(resp, bucketName, "")
- }
- }
- return nil
- }
- // Removes all policies on a bucket.
- func (c Client) removeBucketPolicy(bucketName string) error {
- // Input validation.
- if err := s3utils.CheckValidBucketName(bucketName); err != nil {
- return err
- }
- // Get resources properly escaped and lined up before
- // using them in http request.
- urlValues := make(url.Values)
- urlValues.Set("policy", "")
- // Execute DELETE on objectName.
- resp, err := c.executeMethod(context.Background(), "DELETE", requestMetadata{
- bucketName: bucketName,
- queryValues: urlValues,
- contentSHA256Hex: emptySHA256Hex,
- })
- defer closeResponse(resp)
- if err != nil {
- return err
- }
- return nil
- }
- // SetBucketLifecycle set the lifecycle on an existing bucket.
- func (c Client) SetBucketLifecycle(bucketName, lifecycle string) error {
- // Input validation.
- if err := s3utils.CheckValidBucketName(bucketName); err != nil {
- return err
- }
- // If lifecycle is empty then delete it.
- if lifecycle == "" {
- return c.removeBucketLifecycle(bucketName)
- }
- // Save the updated lifecycle.
- return c.putBucketLifecycle(bucketName, lifecycle)
- }
- // Saves a new bucket lifecycle.
- func (c Client) putBucketLifecycle(bucketName, lifecycle string) error {
- // Input validation.
- if err := s3utils.CheckValidBucketName(bucketName); err != nil {
- return err
- }
- // Get resources properly escaped and lined up before
- // using them in http request.
- urlValues := make(url.Values)
- urlValues.Set("lifecycle", "")
- // Content-length is mandatory for put lifecycle request
- lifecycleReader := strings.NewReader(lifecycle)
- b, err := ioutil.ReadAll(lifecycleReader)
- if err != nil {
- return err
- }
- reqMetadata := requestMetadata{
- bucketName: bucketName,
- queryValues: urlValues,
- contentBody: lifecycleReader,
- contentLength: int64(len(b)),
- contentMD5Base64: sumMD5Base64(b),
- }
- // Execute PUT to upload a new bucket lifecycle.
- resp, err := c.executeMethod(context.Background(), "PUT", reqMetadata)
- defer closeResponse(resp)
- if err != nil {
- return err
- }
- if resp != nil {
- if resp.StatusCode != http.StatusOK {
- return httpRespToErrorResponse(resp, bucketName, "")
- }
- }
- return nil
- }
- // Remove lifecycle from a bucket.
- func (c Client) removeBucketLifecycle(bucketName string) error {
- // Input validation.
- if err := s3utils.CheckValidBucketName(bucketName); err != nil {
- return err
- }
- // Get resources properly escaped and lined up before
- // using them in http request.
- urlValues := make(url.Values)
- urlValues.Set("lifecycle", "")
- // Execute DELETE on objectName.
- resp, err := c.executeMethod(context.Background(), "DELETE", requestMetadata{
- bucketName: bucketName,
- queryValues: urlValues,
- contentSHA256Hex: emptySHA256Hex,
- })
- defer closeResponse(resp)
- if err != nil {
- return err
- }
- return nil
- }
- // SetBucketNotification saves a new bucket notification.
- func (c Client) SetBucketNotification(bucketName string, bucketNotification BucketNotification) error {
- // Input validation.
- if err := s3utils.CheckValidBucketName(bucketName); err != nil {
- return err
- }
- // Get resources properly escaped and lined up before
- // using them in http request.
- urlValues := make(url.Values)
- urlValues.Set("notification", "")
- notifBytes, err := xml.Marshal(bucketNotification)
- if err != nil {
- return err
- }
- notifBuffer := bytes.NewReader(notifBytes)
- reqMetadata := requestMetadata{
- bucketName: bucketName,
- queryValues: urlValues,
- contentBody: notifBuffer,
- contentLength: int64(len(notifBytes)),
- contentMD5Base64: sumMD5Base64(notifBytes),
- contentSHA256Hex: sum256Hex(notifBytes),
- }
- // Execute PUT to upload a new bucket notification.
- resp, err := c.executeMethod(context.Background(), "PUT", reqMetadata)
- defer closeResponse(resp)
- if err != nil {
- return err
- }
- if resp != nil {
- if resp.StatusCode != http.StatusOK {
- return httpRespToErrorResponse(resp, bucketName, "")
- }
- }
- return nil
- }
- // RemoveAllBucketNotification - Remove bucket notification clears all previously specified config
- func (c Client) RemoveAllBucketNotification(bucketName string) error {
- return c.SetBucketNotification(bucketName, BucketNotification{})
- }
- // SetBucketPolicy set the access permissions on an existing bucket.
- func (c Client) SetBucketAcl(bucketName string, policy AccessControlPolicy) error {
- // Input validation.
- if err := s3utils.CheckValidBucketName(bucketName); err != nil {
- return err
- }
- // Save the updated policies.
- return c.putBucketAcl(bucketName, "", policy)
- }
- // SetBucketPolicy set the access permissions on an existing bucket.
- func (c Client) SetObjectAcl(bucketName string, objectName string, policy AccessControlPolicy) error {
- // Input validation.
- if err := s3utils.CheckValidBucketName(bucketName); err != nil {
- return err
- }
- if err := s3utils.CheckValidObjectName(objectName); err != nil {
- return err
- }
- // Save the updated policies.
- return c.putBucketAcl(bucketName, objectName, policy)
- }
- // Saves a new bucket acl.
- func (c Client) putBucketAcl(bucketName string, objectName string, acl AccessControlPolicy) error {
- // Input validation.
- // if err := s3utils.CheckValidBucketName(bucketName); err != nil {
- // return err
- // }
- // Get resources properly escaped and lined up before
- // using them in http request.
- urlValues := make(url.Values)
- urlValues.Set("acl", "")
- // Content-length is mandatory for put policy request
- aclBytes, err := xml.Marshal(acl)
- if err != nil {
- return err
- }
- aclReader := strings.NewReader(xml.Header + string(aclBytes))
- b, err := ioutil.ReadAll(aclReader)
- if err != nil {
- return err
- }
- reqMetadata := requestMetadata{
- bucketName: bucketName,
- objectName: objectName,
- queryValues: urlValues,
- contentBody: aclReader,
- contentLength: int64(len(b)),
- }
- if c.debug {
- fmt.Fprintf(os.Stderr, "%s", string(b))
- }
- // Execute PUT to upload a new bucket policy.
- resp, err := c.executeMethod(context.Background(), "PUT", reqMetadata)
- defer closeResponse(resp)
- if err != nil {
- return err
- }
- if resp != nil {
- if resp.StatusCode >= 400 {
- return httpRespToErrorResponse(resp, bucketName, "")
- }
- }
- return nil
- }
- // SetBucketLogging set the logging configuration on an existing bucket.
- func (c Client) SetBucketLogging(bucketName string, config BucketLoggingStatus) error {
- // Input validation.
- if err := s3utils.CheckValidBucketName(bucketName); err != nil {
- return err
- }
- // Save the updated policies.
- return c.putBucketLogging(bucketName, config)
- }
- // Saves a new bucket acl.
- func (c Client) putBucketLogging(bucketName string, config BucketLoggingStatus) error {
- // Input validation.
- if err := s3utils.CheckValidBucketName(bucketName); err != nil {
- return err
- }
- // Get resources properly escaped and lined up before
- // using them in http request.
- urlValues := make(url.Values)
- urlValues.Set("logging", "")
- // Content-length is mandatory for put policy request
- loggingBytes, err := xml.Marshal(config)
- if err != nil {
- return err
- }
- policyReader := strings.NewReader(xml.Header + string(loggingBytes))
- b, err := ioutil.ReadAll(policyReader)
- if err != nil {
- return err
- }
- if c.debug {
- fmt.Fprintf(os.Stderr, "%s", string(b))
- }
- reqMetadata := requestMetadata{
- bucketName: bucketName,
- queryValues: urlValues,
- contentBody: policyReader,
- contentLength: int64(len(b)),
- }
- // Execute PUT to upload a new bucket policy.
- resp, err := c.executeMethod(context.Background(), "PUT", reqMetadata)
- defer closeResponse(resp)
- if err != nil {
- return err
- }
- if resp != nil {
- if resp.StatusCode != http.StatusNoContent {
- return httpRespToErrorResponse(resp, bucketName, "")
- }
- }
- return nil
- }
|