mirror of
				https://github.com/minio/minio.git
				synced 2025-10-31 08:11:19 +01:00 
			
		
		
		
	This reverts commit 736d8cbac483d8bf56c3422ca9a9c4c3e043c6cf. Bring contrib files for older contributions
		
			
				
	
	
		
			68 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| /*
 | |
|  * MinIO Object Storage (c) 2021 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 hdfs
 | |
| 
 | |
| import (
 | |
| 	"strings"
 | |
| 
 | |
| 	"github.com/minio/minio-go/v7/pkg/s3utils"
 | |
| 	minio "github.com/minio/minio/cmd"
 | |
| )
 | |
| 
 | |
| const (
 | |
| 	// Minio meta bucket.
 | |
| 	minioMetaBucket = ".minio.sys"
 | |
| 
 | |
| 	// Minio Tmp meta prefix.
 | |
| 	minioMetaTmpBucket = minioMetaBucket + "/tmp"
 | |
| 
 | |
| 	// Minio reserved bucket name.
 | |
| 	minioReservedBucket = "minio"
 | |
| )
 | |
| 
 | |
| // Ignores all reserved bucket names or invalid bucket names.
 | |
| func isReservedOrInvalidBucket(bucketEntry string, strict bool) bool {
 | |
| 	bucketEntry = strings.TrimSuffix(bucketEntry, minio.SlashSeparator)
 | |
| 	if strict {
 | |
| 		if err := s3utils.CheckValidBucketNameStrict(bucketEntry); err != nil {
 | |
| 			return true
 | |
| 		}
 | |
| 	} else {
 | |
| 		if err := s3utils.CheckValidBucketName(bucketEntry); err != nil {
 | |
| 			return true
 | |
| 		}
 | |
| 	}
 | |
| 	return isMinioMetaBucket(bucketEntry) || isMinioReservedBucket(bucketEntry)
 | |
| }
 | |
| 
 | |
| // Returns true if input bucket is a reserved minio meta bucket '.minio.sys'.
 | |
| func isMinioMetaBucket(bucketName string) bool {
 | |
| 	return bucketName == minioMetaBucket
 | |
| }
 | |
| 
 | |
| // Returns true if input bucket is a reserved minio bucket 'minio'.
 | |
| func isMinioReservedBucket(bucketName string) bool {
 | |
| 	return bucketName == minioReservedBucket
 | |
| }
 | |
| 
 | |
| // byBucketName is a collection satisfying sort.Interface.
 | |
| type byBucketName []minio.BucketInfo
 | |
| 
 | |
| func (d byBucketName) Len() int           { return len(d) }
 | |
| func (d byBucketName) Swap(i, j int)      { d[i], d[j] = d[j], d[i] }
 | |
| func (d byBucketName) Less(i, j int) bool { return d[i].Name < d[j].Name }
 |