| 
									
										
										
										
											2016-03-28 03:37:21 +08:00
										 |  |  | /* | 
					
						
							|  |  |  |  * Minio Cloud Storage, (C) 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. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-19 07:23:42 +08:00
										 |  |  | package cmd | 
					
						
							| 
									
										
										
										
											2016-03-28 03:37:21 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-12 08:36:07 +08:00
										 |  |  | import router "github.com/gorilla/mux" | 
					
						
							| 
									
										
										
										
											2016-03-28 03:37:21 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-13 03:45:15 +08:00
										 |  |  | // objectAPIHandler implements and provides http handlers for S3 API.
 | 
					
						
							|  |  |  | type objectAPIHandlers struct { | 
					
						
							| 
									
										
										
										
											2016-08-01 05:11:14 +08:00
										 |  |  | 	ObjectAPI func() ObjectLayer | 
					
						
							| 
									
										
										
										
											2016-03-28 03:37:21 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // registerAPIRouter - registers S3 compatible APIs.
 | 
					
						
							| 
									
										
										
										
											2016-10-06 03:48:07 +08:00
										 |  |  | func registerAPIRouter(mux *router.Router) { | 
					
						
							|  |  |  | 	// Initialize API.
 | 
					
						
							|  |  |  | 	api := objectAPIHandlers{ | 
					
						
							|  |  |  | 		ObjectAPI: newObjectLayerFn, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-28 03:37:21 +08:00
										 |  |  | 	// API Router
 | 
					
						
							| 
									
										
										
										
											2016-11-12 08:36:07 +08:00
										 |  |  | 	apiRouter := mux.NewRoute().PathPrefix("/").Subrouter() | 
					
						
							| 
									
										
										
										
											2016-03-28 03:37:21 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Bucket router
 | 
					
						
							|  |  |  | 	bucket := apiRouter.PathPrefix("/{bucket}").Subrouter() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/// Object operations
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// HeadObject
 | 
					
						
							|  |  |  | 	bucket.Methods("HEAD").Path("/{object:.+}").HandlerFunc(api.HeadObjectHandler) | 
					
						
							| 
									
										
										
										
											2017-02-01 01:38:34 +08:00
										 |  |  | 	// CopyObjectPart
 | 
					
						
							|  |  |  | 	bucket.Methods("PUT").Path("/{object:.+}").HeadersRegexp("X-Amz-Copy-Source", ".*?(\\/|%2F).*?").HandlerFunc(api.CopyObjectPartHandler).Queries("partNumber", "{partNumber:[0-9]+}", "uploadId", "{uploadId:.*}") | 
					
						
							| 
									
										
										
										
											2016-03-28 03:37:21 +08:00
										 |  |  | 	// PutObjectPart
 | 
					
						
							|  |  |  | 	bucket.Methods("PUT").Path("/{object:.+}").HandlerFunc(api.PutObjectPartHandler).Queries("partNumber", "{partNumber:[0-9]+}", "uploadId", "{uploadId:.*}") | 
					
						
							|  |  |  | 	// ListObjectPxarts
 | 
					
						
							|  |  |  | 	bucket.Methods("GET").Path("/{object:.+}").HandlerFunc(api.ListObjectPartsHandler).Queries("uploadId", "{uploadId:.*}") | 
					
						
							|  |  |  | 	// CompleteMultipartUpload
 | 
					
						
							|  |  |  | 	bucket.Methods("POST").Path("/{object:.+}").HandlerFunc(api.CompleteMultipartUploadHandler).Queries("uploadId", "{uploadId:.*}") | 
					
						
							|  |  |  | 	// NewMultipartUpload
 | 
					
						
							|  |  |  | 	bucket.Methods("POST").Path("/{object:.+}").HandlerFunc(api.NewMultipartUploadHandler).Queries("uploads", "") | 
					
						
							|  |  |  | 	// AbortMultipartUpload
 | 
					
						
							|  |  |  | 	bucket.Methods("DELETE").Path("/{object:.+}").HandlerFunc(api.AbortMultipartUploadHandler).Queries("uploadId", "{uploadId:.*}") | 
					
						
							|  |  |  | 	// GetObject
 | 
					
						
							|  |  |  | 	bucket.Methods("GET").Path("/{object:.+}").HandlerFunc(api.GetObjectHandler) | 
					
						
							|  |  |  | 	// CopyObject
 | 
					
						
							| 
									
										
										
										
											2016-07-07 05:00:29 +08:00
										 |  |  | 	bucket.Methods("PUT").Path("/{object:.+}").HeadersRegexp("X-Amz-Copy-Source", ".*?(\\/|%2F).*?").HandlerFunc(api.CopyObjectHandler) | 
					
						
							| 
									
										
										
										
											2016-03-28 03:37:21 +08:00
										 |  |  | 	// PutObject
 | 
					
						
							|  |  |  | 	bucket.Methods("PUT").Path("/{object:.+}").HandlerFunc(api.PutObjectHandler) | 
					
						
							|  |  |  | 	// DeleteObject
 | 
					
						
							|  |  |  | 	bucket.Methods("DELETE").Path("/{object:.+}").HandlerFunc(api.DeleteObjectHandler) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/// Bucket operations
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// GetBucketLocation
 | 
					
						
							|  |  |  | 	bucket.Methods("GET").HandlerFunc(api.GetBucketLocationHandler).Queries("location", "") | 
					
						
							|  |  |  | 	// GetBucketPolicy
 | 
					
						
							|  |  |  | 	bucket.Methods("GET").HandlerFunc(api.GetBucketPolicyHandler).Queries("policy", "") | 
					
						
							| 
									
										
										
										
											2016-07-24 13:51:12 +08:00
										 |  |  | 	// GetBucketNotification
 | 
					
						
							|  |  |  | 	bucket.Methods("GET").HandlerFunc(api.GetBucketNotificationHandler).Queries("notification", "") | 
					
						
							| 
									
										
										
										
											2016-08-05 13:01:58 +08:00
										 |  |  | 	// ListenBucketNotification
 | 
					
						
							| 
									
										
										
										
											2016-09-28 03:50:32 +08:00
										 |  |  | 	bucket.Methods("GET").HandlerFunc(api.ListenBucketNotificationHandler).Queries("events", "{events:.*}") | 
					
						
							| 
									
										
										
										
											2016-03-28 03:37:21 +08:00
										 |  |  | 	// ListMultipartUploads
 | 
					
						
							|  |  |  | 	bucket.Methods("GET").HandlerFunc(api.ListMultipartUploadsHandler).Queries("uploads", "") | 
					
						
							| 
									
										
										
										
											2016-07-18 03:32:05 +08:00
										 |  |  | 	// ListObjectsV2
 | 
					
						
							|  |  |  | 	bucket.Methods("GET").HandlerFunc(api.ListObjectsV2Handler).Queries("list-type", "2") | 
					
						
							|  |  |  | 	// ListObjectsV1 (Legacy)
 | 
					
						
							|  |  |  | 	bucket.Methods("GET").HandlerFunc(api.ListObjectsV1Handler) | 
					
						
							| 
									
										
										
										
											2016-03-28 03:37:21 +08:00
										 |  |  | 	// PutBucketPolicy
 | 
					
						
							|  |  |  | 	bucket.Methods("PUT").HandlerFunc(api.PutBucketPolicyHandler).Queries("policy", "") | 
					
						
							| 
									
										
										
										
											2016-07-24 13:51:12 +08:00
										 |  |  | 	// PutBucketNotification
 | 
					
						
							|  |  |  | 	bucket.Methods("PUT").HandlerFunc(api.PutBucketNotificationHandler).Queries("notification", "") | 
					
						
							| 
									
										
										
										
											2016-03-28 03:37:21 +08:00
										 |  |  | 	// PutBucket
 | 
					
						
							|  |  |  | 	bucket.Methods("PUT").HandlerFunc(api.PutBucketHandler) | 
					
						
							|  |  |  | 	// HeadBucket
 | 
					
						
							|  |  |  | 	bucket.Methods("HEAD").HandlerFunc(api.HeadBucketHandler) | 
					
						
							|  |  |  | 	// PostPolicy
 | 
					
						
							|  |  |  | 	bucket.Methods("POST").HeadersRegexp("Content-Type", "multipart/form-data*").HandlerFunc(api.PostPolicyBucketHandler) | 
					
						
							|  |  |  | 	// DeleteMultipleObjects
 | 
					
						
							|  |  |  | 	bucket.Methods("POST").HandlerFunc(api.DeleteMultipleObjectsHandler) | 
					
						
							|  |  |  | 	// DeleteBucketPolicy
 | 
					
						
							|  |  |  | 	bucket.Methods("DELETE").HandlerFunc(api.DeleteBucketPolicyHandler).Queries("policy", "") | 
					
						
							|  |  |  | 	// DeleteBucket
 | 
					
						
							|  |  |  | 	bucket.Methods("DELETE").HandlerFunc(api.DeleteBucketHandler) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/// Root operation
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// ListBuckets
 | 
					
						
							|  |  |  | 	apiRouter.Methods("GET").HandlerFunc(api.ListBucketsHandler) | 
					
						
							|  |  |  | } |