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
|
|
|
|
|
2021-06-01 17:59:40 -04:00
|
|
|
import "github.com/minio/minio/internal/bucket/versioning"
|
2020-06-12 23:04:01 -04:00
|
|
|
|
|
|
|
// BucketVersioningSys - policy subsystem.
|
|
|
|
type BucketVersioningSys struct{}
|
|
|
|
|
|
|
|
// Enabled enabled versioning?
|
|
|
|
func (sys *BucketVersioningSys) Enabled(bucket string) bool {
|
|
|
|
vc, err := globalBucketMetadataSys.GetVersioningConfig(bucket)
|
|
|
|
if err != nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return vc.Enabled()
|
|
|
|
}
|
|
|
|
|
2022-05-06 22:05:28 -04:00
|
|
|
// PrefixEnabled returns true is versioning is enabled at bucket level and if
|
|
|
|
// the given prefix doesn't match any excluded prefixes pattern. This is
|
|
|
|
// part of a MinIO versioning configuration extension.
|
|
|
|
func (sys *BucketVersioningSys) PrefixEnabled(bucket, prefix string) bool {
|
|
|
|
vc, err := globalBucketMetadataSys.GetVersioningConfig(bucket)
|
|
|
|
if err != nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return vc.PrefixEnabled(prefix)
|
|
|
|
}
|
|
|
|
|
2020-06-12 23:04:01 -04:00
|
|
|
// Suspended suspended versioning?
|
|
|
|
func (sys *BucketVersioningSys) Suspended(bucket string) bool {
|
|
|
|
vc, err := globalBucketMetadataSys.GetVersioningConfig(bucket)
|
|
|
|
if err != nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return vc.Suspended()
|
|
|
|
}
|
|
|
|
|
2022-05-06 22:05:28 -04:00
|
|
|
// PrefixSuspended returns true if the given prefix matches an excluded prefix
|
|
|
|
// pattern. This is part of a MinIO versioning configuration extension.
|
|
|
|
func (sys *BucketVersioningSys) PrefixSuspended(bucket, prefix string) bool {
|
|
|
|
vc, err := globalBucketMetadataSys.GetVersioningConfig(bucket)
|
|
|
|
if err != nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return vc.PrefixSuspended(prefix)
|
|
|
|
}
|
|
|
|
|
2020-06-12 23:04:01 -04:00
|
|
|
// Get returns stored bucket policy
|
|
|
|
func (sys *BucketVersioningSys) Get(bucket string) (*versioning.Versioning, error) {
|
|
|
|
return globalBucketMetadataSys.GetVersioningConfig(bucket)
|
|
|
|
}
|
|
|
|
|
2021-01-05 13:45:26 -05:00
|
|
|
// Reset BucketVersioningSys to initial state.
|
|
|
|
func (sys *BucketVersioningSys) Reset() {
|
|
|
|
// There is currently no internal state.
|
|
|
|
}
|
|
|
|
|
2020-06-12 23:04:01 -04:00
|
|
|
// NewBucketVersioningSys - creates new versioning system.
|
|
|
|
func NewBucketVersioningSys() *BucketVersioningSys {
|
|
|
|
return &BucketVersioningSys{}
|
|
|
|
}
|