| 
									
										
										
										
											2016-10-12 16:03:50 +08:00
										 |  |  | /* | 
					
						
							|  |  |  |  * 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 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-22 05:51:05 +08:00
										 |  |  | // SetBucketNotificationPeerArgs - Arguments collection to SetBucketNotificationPeer RPC
 | 
					
						
							| 
									
										
										
										
											2016-10-12 16:03:50 +08:00
										 |  |  | // call
 | 
					
						
							| 
									
										
										
										
											2016-11-22 05:51:05 +08:00
										 |  |  | type SetBucketNotificationPeerArgs struct { | 
					
						
							| 
									
										
										
										
											2016-10-12 16:03:50 +08:00
										 |  |  | 	// For Auth
 | 
					
						
							| 
									
										
										
										
											2016-12-23 23:12:19 +08:00
										 |  |  | 	AuthRPCArgs | 
					
						
							| 
									
										
										
										
											2016-10-12 16:03:50 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Bucket string | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Notification config for the given bucket.
 | 
					
						
							|  |  |  | 	NCfg *notificationConfig | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-03 06:34:13 +08:00
										 |  |  | // BucketUpdate - implements bucket notification updates,
 | 
					
						
							|  |  |  | // the underlying operation is a network call updates all
 | 
					
						
							|  |  |  | // the peers participating in bucket notification.
 | 
					
						
							| 
									
										
										
										
											2016-12-01 05:37:38 +08:00
										 |  |  | func (s *SetBucketNotificationPeerArgs) BucketUpdate(client BucketMetaState) error { | 
					
						
							|  |  |  | 	return client.UpdateBucketNotification(s) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-23 23:12:19 +08:00
										 |  |  | func (s3 *s3PeerAPIHandlers) SetBucketNotificationPeer(args *SetBucketNotificationPeerArgs, reply *AuthRPCReply) error { | 
					
						
							|  |  |  | 	if err := args.IsAuthenticated(); err != nil { | 
					
						
							|  |  |  | 		return err | 
					
						
							| 
									
										
										
										
											2016-10-12 16:03:50 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-09 15:47:44 +08:00
										 |  |  | 	return s3.bms.UpdateBucketNotification(args) | 
					
						
							| 
									
										
										
										
											2016-10-12 16:03:50 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-22 05:51:05 +08:00
										 |  |  | // SetBucketListenerPeerArgs - Arguments collection to SetBucketListenerPeer RPC call
 | 
					
						
							|  |  |  | type SetBucketListenerPeerArgs struct { | 
					
						
							| 
									
										
										
										
											2016-10-12 16:03:50 +08:00
										 |  |  | 	// For Auth
 | 
					
						
							| 
									
										
										
										
											2016-12-23 23:12:19 +08:00
										 |  |  | 	AuthRPCArgs | 
					
						
							| 
									
										
										
										
											2016-10-12 16:03:50 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Bucket string | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Listener config for a given bucket.
 | 
					
						
							|  |  |  | 	LCfg []listenerConfig | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-03 06:34:13 +08:00
										 |  |  | // BucketUpdate - implements bucket listener updates,
 | 
					
						
							|  |  |  | // the underlying operation is a network call updates all
 | 
					
						
							|  |  |  | // the peers participating in listen bucket notification.
 | 
					
						
							| 
									
										
										
										
											2016-12-01 05:37:38 +08:00
										 |  |  | func (s *SetBucketListenerPeerArgs) BucketUpdate(client BucketMetaState) error { | 
					
						
							|  |  |  | 	return client.UpdateBucketListener(s) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-23 23:12:19 +08:00
										 |  |  | func (s3 *s3PeerAPIHandlers) SetBucketListenerPeer(args *SetBucketListenerPeerArgs, reply *AuthRPCReply) error { | 
					
						
							|  |  |  | 	if err := args.IsAuthenticated(); err != nil { | 
					
						
							|  |  |  | 		return err | 
					
						
							| 
									
										
										
										
											2016-10-12 16:03:50 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-09 15:47:44 +08:00
										 |  |  | 	return s3.bms.UpdateBucketListener(args) | 
					
						
							| 
									
										
										
										
											2016-10-12 16:03:50 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // EventArgs - Arguments collection for Event RPC call
 | 
					
						
							|  |  |  | type EventArgs struct { | 
					
						
							|  |  |  | 	// For Auth
 | 
					
						
							| 
									
										
										
										
											2016-12-23 23:12:19 +08:00
										 |  |  | 	AuthRPCArgs | 
					
						
							| 
									
										
										
										
											2016-10-12 16:03:50 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// event being sent
 | 
					
						
							|  |  |  | 	Event []NotificationEvent | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// client that it is meant for
 | 
					
						
							|  |  |  | 	Arn string | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // submit an event to the receiving server.
 | 
					
						
							| 
									
										
										
										
											2016-12-23 23:12:19 +08:00
										 |  |  | func (s3 *s3PeerAPIHandlers) Event(args *EventArgs, reply *AuthRPCReply) error { | 
					
						
							|  |  |  | 	if err := args.IsAuthenticated(); err != nil { | 
					
						
							|  |  |  | 		return err | 
					
						
							| 
									
										
										
										
											2016-10-12 16:03:50 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-09 15:47:44 +08:00
										 |  |  | 	return s3.bms.SendEvent(args) | 
					
						
							| 
									
										
										
										
											2016-10-14 00:19:04 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-22 05:51:05 +08:00
										 |  |  | // SetBucketPolicyPeerArgs - Arguments collection for SetBucketPolicyPeer RPC call
 | 
					
						
							|  |  |  | type SetBucketPolicyPeerArgs struct { | 
					
						
							| 
									
										
										
										
											2016-10-14 00:19:04 +08:00
										 |  |  | 	// For Auth
 | 
					
						
							| 
									
										
										
										
											2016-12-23 23:12:19 +08:00
										 |  |  | 	AuthRPCArgs | 
					
						
							| 
									
										
										
										
											2016-10-14 00:19:04 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Bucket string | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-15 13:49:51 +08:00
										 |  |  | 	// Policy change (serialized to JSON)
 | 
					
						
							|  |  |  | 	PChBytes []byte | 
					
						
							| 
									
										
										
										
											2016-10-14 00:19:04 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-03 06:34:13 +08:00
										 |  |  | // BucketUpdate - implements bucket policy updates,
 | 
					
						
							|  |  |  | // the underlying operation is a network call updates all
 | 
					
						
							|  |  |  | // the peers participating for new set/unset policies.
 | 
					
						
							| 
									
										
										
										
											2016-12-01 05:37:38 +08:00
										 |  |  | func (s *SetBucketPolicyPeerArgs) BucketUpdate(client BucketMetaState) error { | 
					
						
							|  |  |  | 	return client.UpdateBucketPolicy(s) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-14 00:19:04 +08:00
										 |  |  | // tell receiving server to update a bucket policy
 | 
					
						
							| 
									
										
										
										
											2016-12-23 23:12:19 +08:00
										 |  |  | func (s3 *s3PeerAPIHandlers) SetBucketPolicyPeer(args *SetBucketPolicyPeerArgs, reply *AuthRPCReply) error { | 
					
						
							|  |  |  | 	if err := args.IsAuthenticated(); err != nil { | 
					
						
							|  |  |  | 		return err | 
					
						
							| 
									
										
										
										
											2016-10-14 00:19:04 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-09 15:47:44 +08:00
										 |  |  | 	return s3.bms.UpdateBucketPolicy(args) | 
					
						
							| 
									
										
										
										
											2016-10-12 16:03:50 +08:00
										 |  |  | } |