You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
118 lines
3.3 KiB
118 lines
3.3 KiB
/*
|
|
* Minio Cloud Storage, (C) 2014-2016 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 cmd
|
|
|
|
// SetBucketNotificationPeerArgs - Arguments collection to SetBucketNotificationPeer RPC
|
|
// call
|
|
type SetBucketNotificationPeerArgs struct {
|
|
// For Auth
|
|
AuthRPCArgs
|
|
|
|
Bucket string
|
|
|
|
// Notification config for the given bucket.
|
|
NCfg *notificationConfig
|
|
}
|
|
|
|
// BucketUpdate - implements bucket notification updates,
|
|
// the underlying operation is a network call updates all
|
|
// the peers participating in bucket notification.
|
|
func (s *SetBucketNotificationPeerArgs) BucketUpdate(client BucketMetaState) error {
|
|
return client.UpdateBucketNotification(s)
|
|
}
|
|
|
|
func (s3 *s3PeerAPIHandlers) SetBucketNotificationPeer(args *SetBucketNotificationPeerArgs, reply *AuthRPCReply) error {
|
|
if err := args.IsAuthenticated(); err != nil {
|
|
return err
|
|
}
|
|
|
|
return s3.bms.UpdateBucketNotification(args)
|
|
}
|
|
|
|
// SetBucketListenerPeerArgs - Arguments collection to SetBucketListenerPeer RPC call
|
|
type SetBucketListenerPeerArgs struct {
|
|
// For Auth
|
|
AuthRPCArgs
|
|
|
|
Bucket string
|
|
|
|
// Listener config for a given bucket.
|
|
LCfg []listenerConfig
|
|
}
|
|
|
|
// BucketUpdate - implements bucket listener updates,
|
|
// the underlying operation is a network call updates all
|
|
// the peers participating in listen bucket notification.
|
|
func (s *SetBucketListenerPeerArgs) BucketUpdate(client BucketMetaState) error {
|
|
return client.UpdateBucketListener(s)
|
|
}
|
|
|
|
func (s3 *s3PeerAPIHandlers) SetBucketListenerPeer(args *SetBucketListenerPeerArgs, reply *AuthRPCReply) error {
|
|
if err := args.IsAuthenticated(); err != nil {
|
|
return err
|
|
}
|
|
|
|
return s3.bms.UpdateBucketListener(args)
|
|
}
|
|
|
|
// EventArgs - Arguments collection for Event RPC call
|
|
type EventArgs struct {
|
|
// For Auth
|
|
AuthRPCArgs
|
|
|
|
// event being sent
|
|
Event []NotificationEvent
|
|
|
|
// client that it is meant for
|
|
Arn string
|
|
}
|
|
|
|
// submit an event to the receiving server.
|
|
func (s3 *s3PeerAPIHandlers) Event(args *EventArgs, reply *AuthRPCReply) error {
|
|
if err := args.IsAuthenticated(); err != nil {
|
|
return err
|
|
}
|
|
|
|
return s3.bms.SendEvent(args)
|
|
}
|
|
|
|
// SetBucketPolicyPeerArgs - Arguments collection for SetBucketPolicyPeer RPC call
|
|
type SetBucketPolicyPeerArgs struct {
|
|
// For Auth
|
|
AuthRPCArgs
|
|
|
|
Bucket string
|
|
|
|
// Policy change (serialized to JSON)
|
|
PChBytes []byte
|
|
}
|
|
|
|
// BucketUpdate - implements bucket policy updates,
|
|
// the underlying operation is a network call updates all
|
|
// the peers participating for new set/unset policies.
|
|
func (s *SetBucketPolicyPeerArgs) BucketUpdate(client BucketMetaState) error {
|
|
return client.UpdateBucketPolicy(s)
|
|
}
|
|
|
|
// tell receiving server to update a bucket policy
|
|
func (s3 *s3PeerAPIHandlers) SetBucketPolicyPeer(args *SetBucketPolicyPeerArgs, reply *AuthRPCReply) error {
|
|
if err := args.IsAuthenticated(); err != nil {
|
|
return err
|
|
}
|
|
|
|
return s3.bms.UpdateBucketPolicy(args)
|
|
}
|
|
|