minio/pkg/fs/acl.go

51 lines
1.4 KiB
Go
Raw Normal View History

2015-10-18 04:17:33 +02:00
/*
* Minio Cloud Storage, (C) 2015 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.
*/
2015-10-17 04:09:35 +02:00
package fs
// IsPrivateBucket - is private bucket
2015-10-18 04:17:33 +02:00
func (fs Filesystem) IsPrivateBucket(bucket string) bool {
2015-10-17 04:09:35 +02:00
fs.lock.Lock()
defer fs.lock.Unlock()
bucketMetadata, ok := fs.buckets.Metadata[bucket]
if !ok {
2015-10-17 04:09:35 +02:00
return true
}
return bucketMetadata.ACL.IsPrivate()
2015-10-17 04:09:35 +02:00
}
// IsPublicBucket - is public bucket
2015-10-18 04:17:33 +02:00
func (fs Filesystem) IsPublicBucket(bucket string) bool {
2015-10-17 04:09:35 +02:00
fs.lock.Lock()
defer fs.lock.Unlock()
bucketMetadata, ok := fs.buckets.Metadata[bucket]
if !ok {
2015-10-17 04:09:35 +02:00
return true
}
return bucketMetadata.ACL.IsPublicReadWrite()
2015-10-17 04:09:35 +02:00
}
// IsReadOnlyBucket - is read only bucket
2015-10-18 04:17:33 +02:00
func (fs Filesystem) IsReadOnlyBucket(bucket string) bool {
2015-10-17 04:09:35 +02:00
fs.lock.Lock()
defer fs.lock.Unlock()
bucketMetadata, ok := fs.buckets.Metadata[bucket]
if !ok {
2015-10-17 04:09:35 +02:00
return true
}
return bucketMetadata.ACL.IsPublicRead()
2015-10-17 04:09:35 +02:00
}