2015-02-15 20:03:27 -05:00
|
|
|
/*
|
2015-03-19 17:35:50 -04:00
|
|
|
* Minimalist Object Storage, (C) 2014 Minio, Inc.
|
2015-02-15 20:03:27 -05:00
|
|
|
*
|
|
|
|
* 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-03-18 20:49:33 -04:00
|
|
|
package api
|
2015-02-15 20:03:27 -05:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
2015-03-19 01:49:02 -04:00
|
|
|
router "github.com/gorilla/mux"
|
2015-05-11 19:23:10 -04:00
|
|
|
"github.com/minio/minio/pkg/api/logging"
|
|
|
|
"github.com/minio/minio/pkg/api/quota"
|
|
|
|
"github.com/minio/minio/pkg/storage/drivers"
|
2015-02-15 20:03:27 -05:00
|
|
|
)
|
|
|
|
|
2015-02-23 19:46:48 -05:00
|
|
|
// private use
|
2015-03-06 00:07:19 -05:00
|
|
|
type minioAPI struct {
|
2015-03-23 23:40:21 -04:00
|
|
|
driver drivers.Driver
|
2015-02-15 20:03:27 -05:00
|
|
|
}
|
|
|
|
|
2015-05-07 03:14:58 -04:00
|
|
|
// HTTPHandler - http wrapper handler
|
|
|
|
func HTTPHandler(driver drivers.Driver) http.Handler {
|
|
|
|
var mux *router.Router
|
|
|
|
var api = minioAPI{}
|
|
|
|
api.driver = driver
|
|
|
|
|
|
|
|
mux = router.NewRouter()
|
2015-02-23 05:11:27 -05:00
|
|
|
mux.HandleFunc("/", api.listBucketsHandler).Methods("GET")
|
|
|
|
mux.HandleFunc("/{bucket}", api.listObjectsHandler).Methods("GET")
|
|
|
|
mux.HandleFunc("/{bucket}", api.putBucketHandler).Methods("PUT")
|
2015-04-07 03:44:01 -04:00
|
|
|
mux.HandleFunc("/{bucket}", api.headBucketHandler).Methods("HEAD")
|
2015-02-23 05:11:27 -05:00
|
|
|
mux.HandleFunc("/{bucket}/{object:.*}", api.headObjectHandler).Methods("HEAD")
|
2015-06-03 21:27:13 -04:00
|
|
|
mux.HandleFunc("/{bucket}/{object:.*}", api.putObjectPartHandler).Queries("partNumber", "{partNumber:[0-9]+}", "uploadId", "{uploadId:.*}").Methods("PUT")
|
|
|
|
mux.HandleFunc("/{bucket}/{object:.*}", api.listObjectPartsHandler).Queries("uploadId", "{uploadId:.*}").Methods("GET")
|
|
|
|
mux.HandleFunc("/{bucket}/{object:.*}", api.completeMultipartUploadHandler).Queries("uploadId", "{uploadId:.*}").Methods("POST")
|
|
|
|
mux.HandleFunc("/{bucket}/{object:.*}", api.newMultipartUploadHandler).Methods("POST")
|
|
|
|
mux.HandleFunc("/{bucket}/{object:.*}", api.abortMultipartUploadHandler).Queries("uploadId", "{uploadId:.*}").Methods("DELETE")
|
2015-05-09 14:41:26 -04:00
|
|
|
mux.HandleFunc("/{bucket}/{object:.*}", api.getObjectHandler).Methods("GET")
|
2015-02-23 05:11:27 -05:00
|
|
|
mux.HandleFunc("/{bucket}/{object:.*}", api.putObjectHandler).Methods("PUT")
|
|
|
|
|
2015-05-13 15:19:41 -04:00
|
|
|
h := validContentTypeHandler(mux)
|
|
|
|
h = timeValidityHandler(h)
|
2015-04-27 06:54:49 -04:00
|
|
|
h = ignoreResourcesHandler(h)
|
2015-05-13 15:19:41 -04:00
|
|
|
h = validateAuthHeaderHandler(h)
|
2015-04-28 00:56:43 -04:00
|
|
|
// h = quota.BandwidthCap(h, 25*1024*1024, time.Duration(30*time.Minute))
|
|
|
|
// h = quota.BandwidthCap(h, 100*1024*1024, time.Duration(24*time.Hour))
|
|
|
|
// h = quota.RequestLimit(h, 100, time.Duration(30*time.Minute))
|
|
|
|
// h = quota.RequestLimit(h, 1000, time.Duration(24*time.Hour))
|
2015-05-14 02:05:48 -04:00
|
|
|
h = quota.ConnectionLimit(h, 4)
|
2015-04-29 15:24:53 -04:00
|
|
|
h = logging.LogHandler(h)
|
2015-04-26 17:20:24 -04:00
|
|
|
return h
|
2015-02-15 20:03:27 -05:00
|
|
|
}
|