2021-04-18 15:41:13 -04:00
|
|
|
// Copyright (c) 2015-2021 MinIO, Inc.
|
|
|
|
//
|
|
|
|
// This file is part of MinIO Object Storage stack
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2020-06-12 23:04:01 -04:00
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
2022-05-07 21:39:40 -04:00
|
|
|
"encoding/base64"
|
2020-06-12 23:04:01 -04:00
|
|
|
"encoding/xml"
|
|
|
|
"io"
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
humanize "github.com/dustin/go-humanize"
|
|
|
|
"github.com/gorilla/mux"
|
2022-05-07 21:39:40 -04:00
|
|
|
"github.com/minio/madmin-go"
|
2021-06-01 17:59:40 -04:00
|
|
|
"github.com/minio/minio/internal/bucket/versioning"
|
|
|
|
"github.com/minio/minio/internal/logger"
|
2021-05-30 00:16:42 -04:00
|
|
|
"github.com/minio/pkg/bucket/policy"
|
2020-06-12 23:04:01 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
bucketVersioningConfig = "versioning.xml"
|
|
|
|
|
|
|
|
// Maximum size of bucket versioning configuration payload sent to the PutBucketVersioningHandler.
|
|
|
|
maxBucketVersioningConfigSize = 1 * humanize.MiByte
|
|
|
|
)
|
|
|
|
|
|
|
|
// PutBucketVersioningHandler - PUT Bucket Versioning.
|
|
|
|
// ----------
|
|
|
|
func (api objectAPIHandlers) PutBucketVersioningHandler(w http.ResponseWriter, r *http.Request) {
|
|
|
|
ctx := newContext(r, w, "PutBucketVersioning")
|
|
|
|
|
2021-01-26 16:21:51 -05:00
|
|
|
defer logger.AuditLog(ctx, w, r, mustGetClaimsFromToken(r))
|
2020-06-12 23:04:01 -04:00
|
|
|
|
|
|
|
vars := mux.Vars(r)
|
|
|
|
bucket := vars["bucket"]
|
|
|
|
|
|
|
|
objectAPI := api.ObjectAPI()
|
|
|
|
if objectAPI == nil {
|
2021-06-17 23:27:04 -04:00
|
|
|
writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrServerNotInitialized), r.URL)
|
2020-06-12 23:04:01 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if s3Error := checkRequestAuthType(ctx, r, policy.PutBucketVersioningAction, bucket, ""); s3Error != ErrNone {
|
2021-06-17 23:27:04 -04:00
|
|
|
writeErrorResponse(ctx, w, errorCodes.ToAPIErr(s3Error), r.URL)
|
2020-06-12 23:04:01 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
v, err := versioning.ParseConfig(io.LimitReader(r.Body, maxBucketVersioningConfigSize))
|
|
|
|
if err != nil {
|
2021-06-17 23:27:04 -04:00
|
|
|
writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
|
2020-06-12 23:04:01 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-05-07 21:39:40 -04:00
|
|
|
if globalSiteReplicationSys.isEnabled() && !v.Enabled() {
|
2021-12-15 13:37:08 -05:00
|
|
|
writeErrorResponse(ctx, w, APIError{
|
|
|
|
Code: "InvalidBucketState",
|
2022-05-11 16:44:16 -04:00
|
|
|
Description: "Cluster replication is enabled on this site, versioning cannot be suspended on bucket.",
|
|
|
|
HTTPStatusCode: http.StatusBadRequest,
|
2021-12-15 13:37:08 -05:00
|
|
|
}, r.URL)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-05-06 22:05:28 -04:00
|
|
|
if rcfg, _ := globalBucketObjectLockSys.Get(bucket); rcfg.LockEnabled && (v.Suspended() || v.PrefixesExcluded()) {
|
2020-06-28 11:15:15 -04:00
|
|
|
writeErrorResponse(ctx, w, APIError{
|
|
|
|
Code: "InvalidBucketState",
|
2022-05-11 16:44:16 -04:00
|
|
|
Description: "An Object Lock configuration is present on this bucket, versioning cannot be suspended.",
|
|
|
|
HTTPStatusCode: http.StatusBadRequest,
|
2021-06-17 23:27:04 -04:00
|
|
|
}, r.URL)
|
2020-06-28 11:15:15 -04:00
|
|
|
return
|
|
|
|
}
|
2020-09-30 16:36:37 -04:00
|
|
|
if _, err := getReplicationConfig(ctx, bucket); err == nil && v.Suspended() {
|
|
|
|
writeErrorResponse(ctx, w, APIError{
|
|
|
|
Code: "InvalidBucketState",
|
2022-05-11 16:44:16 -04:00
|
|
|
Description: "A replication configuration is present on this bucket, bucket wide versioning cannot be suspended.",
|
|
|
|
HTTPStatusCode: http.StatusBadRequest,
|
2021-06-17 23:27:04 -04:00
|
|
|
}, r.URL)
|
2020-09-30 16:36:37 -04:00
|
|
|
return
|
|
|
|
}
|
2020-06-28 11:15:15 -04:00
|
|
|
|
2020-06-12 23:04:01 -04:00
|
|
|
configData, err := xml.Marshal(v)
|
|
|
|
if err != nil {
|
2021-06-17 23:27:04 -04:00
|
|
|
writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
|
2020-06-12 23:04:01 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-06-28 21:09:20 -04:00
|
|
|
updatedAt, err := globalBucketMetadataSys.Update(ctx, bucket, bucketVersioningConfig, configData)
|
|
|
|
if err != nil {
|
2021-06-17 23:27:04 -04:00
|
|
|
writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
|
2020-06-12 23:04:01 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-05-07 21:39:40 -04:00
|
|
|
// Call site replication hook.
|
|
|
|
//
|
|
|
|
// We encode the xml bytes as base64 to ensure there are no encoding
|
|
|
|
// errors.
|
|
|
|
cfgStr := base64.StdEncoding.EncodeToString(configData)
|
|
|
|
if err = globalSiteReplicationSys.BucketMetaHook(ctx, madmin.SRBucketMeta{
|
|
|
|
Type: madmin.SRBucketMetaTypeVersionConfig,
|
|
|
|
Bucket: bucket,
|
|
|
|
Versioning: &cfgStr,
|
2022-06-28 21:09:20 -04:00
|
|
|
UpdatedAt: updatedAt,
|
2022-05-07 21:39:40 -04:00
|
|
|
}); err != nil {
|
|
|
|
writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-06-12 23:04:01 -04:00
|
|
|
writeSuccessResponseHeadersOnly(w)
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetBucketVersioningHandler - GET Bucket Versioning.
|
|
|
|
// ----------
|
|
|
|
func (api objectAPIHandlers) GetBucketVersioningHandler(w http.ResponseWriter, r *http.Request) {
|
|
|
|
ctx := newContext(r, w, "GetBucketVersioning")
|
|
|
|
|
2021-01-26 16:21:51 -05:00
|
|
|
defer logger.AuditLog(ctx, w, r, mustGetClaimsFromToken(r))
|
2020-06-12 23:04:01 -04:00
|
|
|
|
|
|
|
vars := mux.Vars(r)
|
|
|
|
bucket := vars["bucket"]
|
|
|
|
|
|
|
|
objectAPI := api.ObjectAPI()
|
|
|
|
if objectAPI == nil {
|
2021-06-17 23:27:04 -04:00
|
|
|
writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrServerNotInitialized), r.URL)
|
2020-06-12 23:04:01 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if s3Error := checkRequestAuthType(ctx, r, policy.GetBucketVersioningAction, bucket, ""); s3Error != ErrNone {
|
2021-06-17 23:27:04 -04:00
|
|
|
writeErrorResponse(ctx, w, errorCodes.ToAPIErr(s3Error), r.URL)
|
2020-06-12 23:04:01 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if bucket exists.
|
2022-07-25 20:51:32 -04:00
|
|
|
if _, err := objectAPI.GetBucketInfo(ctx, bucket, BucketOptions{}); err != nil {
|
2021-06-17 23:27:04 -04:00
|
|
|
writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
|
2020-06-12 23:04:01 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
config, err := globalBucketVersioningSys.Get(bucket)
|
|
|
|
if err != nil {
|
2021-06-17 23:27:04 -04:00
|
|
|
writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
|
2020-06-12 23:04:01 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
configData, err := xml.Marshal(config)
|
|
|
|
if err != nil {
|
2021-06-17 23:27:04 -04:00
|
|
|
writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
|
2020-06-12 23:04:01 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Write bucket versioning configuration to client
|
|
|
|
writeSuccessResponseXML(w, configData)
|
|
|
|
}
|