2018-07-18 09:37:09 +00:00
|
|
|
package s3api
|
|
|
|
|
|
|
|
import (
|
2020-07-28 15:47:24 +00:00
|
|
|
"fmt"
|
2020-02-09 22:30:02 +00:00
|
|
|
"net/http"
|
|
|
|
|
2018-07-18 09:37:09 +00:00
|
|
|
"github.com/gorilla/mux"
|
2019-02-18 20:11:52 +00:00
|
|
|
"google.golang.org/grpc"
|
2018-07-18 09:37:09 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type S3ApiServerOption struct {
|
|
|
|
Filer string
|
2020-07-28 15:47:24 +00:00
|
|
|
Port int
|
2018-07-18 09:37:09 +00:00
|
|
|
FilerGrpcAddress string
|
2020-02-09 22:30:02 +00:00
|
|
|
Config string
|
2018-07-18 09:37:09 +00:00
|
|
|
DomainName string
|
2018-07-19 08:21:44 +00:00
|
|
|
BucketsPath string
|
2019-02-18 20:11:52 +00:00
|
|
|
GrpcDialOption grpc.DialOption
|
2018-07-18 09:37:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type S3ApiServer struct {
|
|
|
|
option *S3ApiServerOption
|
2020-02-09 22:30:02 +00:00
|
|
|
iam *IdentityAccessManagement
|
2018-07-18 09:37:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewS3ApiServer(router *mux.Router, option *S3ApiServerOption) (s3ApiServer *S3ApiServer, err error) {
|
|
|
|
s3ApiServer = &S3ApiServer{
|
|
|
|
option: option,
|
2020-02-10 00:02:05 +00:00
|
|
|
iam: NewIdentityAccessManagement(option.Config, option.DomainName),
|
2018-07-18 09:37:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
s3ApiServer.registerRouter(router)
|
|
|
|
|
|
|
|
return s3ApiServer, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s3a *S3ApiServer) registerRouter(router *mux.Router) {
|
|
|
|
// API Router
|
|
|
|
apiRouter := router.PathPrefix("/").Subrouter()
|
|
|
|
var routers []*mux.Router
|
|
|
|
if s3a.option.DomainName != "" {
|
2020-07-28 15:47:24 +00:00
|
|
|
routers = append(routers, apiRouter.Host(
|
|
|
|
fmt.Sprintf("%s.%s:%d", "{bucket:.+}", s3a.option.DomainName, s3a.option.Port)).Subrouter())
|
|
|
|
routers = append(routers, apiRouter.Host(
|
|
|
|
fmt.Sprintf("%s.%s", "{bucket:.+}", s3a.option.DomainName)).Subrouter())
|
2018-07-18 09:37:09 +00:00
|
|
|
}
|
|
|
|
routers = append(routers, apiRouter.PathPrefix("/{bucket}").Subrouter())
|
|
|
|
|
|
|
|
for _, bucket := range routers {
|
2018-07-21 17:39:02 +00:00
|
|
|
|
2018-07-22 01:49:47 +00:00
|
|
|
// HeadObject
|
2020-02-09 22:30:02 +00:00
|
|
|
bucket.Methods("HEAD").Path("/{object:.+}").HandlerFunc(s3a.iam.Auth(s3a.HeadObjectHandler, ACTION_READ))
|
2018-07-22 09:04:07 +00:00
|
|
|
// HeadBucket
|
2020-02-09 22:30:02 +00:00
|
|
|
bucket.Methods("HEAD").HandlerFunc(s3a.iam.Auth(s3a.HeadBucketHandler, ACTION_ADMIN))
|
2018-07-22 09:04:07 +00:00
|
|
|
|
2020-01-31 08:11:08 +00:00
|
|
|
// CopyObjectPart
|
2020-02-09 22:30:02 +00:00
|
|
|
bucket.Methods("PUT").Path("/{object:.+}").HeadersRegexp("X-Amz-Copy-Source", ".*?(\\/|%2F).*?").HandlerFunc(s3a.iam.Auth(s3a.CopyObjectPartHandler, ACTION_WRITE)).Queries("partNumber", "{partNumber:[0-9]+}", "uploadId", "{uploadId:.*}")
|
2018-09-03 18:38:10 +00:00
|
|
|
// PutObjectPart
|
2020-02-09 22:30:02 +00:00
|
|
|
bucket.Methods("PUT").Path("/{object:.+}").HandlerFunc(s3a.iam.Auth(s3a.PutObjectPartHandler, ACTION_WRITE)).Queries("partNumber", "{partNumber:[0-9]+}", "uploadId", "{uploadId:.*}")
|
2018-09-03 18:38:10 +00:00
|
|
|
// CompleteMultipartUpload
|
2020-02-09 22:30:02 +00:00
|
|
|
bucket.Methods("POST").Path("/{object:.+}").HandlerFunc(s3a.iam.Auth(s3a.CompleteMultipartUploadHandler, ACTION_WRITE)).Queries("uploadId", "{uploadId:.*}")
|
2018-09-03 18:38:10 +00:00
|
|
|
// NewMultipartUpload
|
2020-02-09 22:30:02 +00:00
|
|
|
bucket.Methods("POST").Path("/{object:.+}").HandlerFunc(s3a.iam.Auth(s3a.NewMultipartUploadHandler, ACTION_WRITE)).Queries("uploads", "")
|
2018-09-03 18:38:10 +00:00
|
|
|
// AbortMultipartUpload
|
2020-02-09 22:30:02 +00:00
|
|
|
bucket.Methods("DELETE").Path("/{object:.+}").HandlerFunc(s3a.iam.Auth(s3a.AbortMultipartUploadHandler, ACTION_WRITE)).Queries("uploadId", "{uploadId:.*}")
|
2018-09-03 18:38:10 +00:00
|
|
|
// ListObjectParts
|
2020-02-09 22:30:02 +00:00
|
|
|
bucket.Methods("GET").Path("/{object:.+}").HandlerFunc(s3a.iam.Auth(s3a.ListObjectPartsHandler, ACTION_WRITE)).Queries("uploadId", "{uploadId:.*}")
|
2018-09-03 18:38:10 +00:00
|
|
|
// ListMultipartUploads
|
2020-02-09 22:30:02 +00:00
|
|
|
bucket.Methods("GET").HandlerFunc(s3a.iam.Auth(s3a.ListMultipartUploadsHandler, ACTION_WRITE)).Queries("uploads", "")
|
2018-09-03 18:38:10 +00:00
|
|
|
|
2020-01-31 08:11:08 +00:00
|
|
|
// CopyObject
|
2020-02-09 22:30:02 +00:00
|
|
|
bucket.Methods("PUT").Path("/{object:.+}").HeadersRegexp("X-Amz-Copy-Source", ".*?(\\/|%2F).*?").HandlerFunc(s3a.iam.Auth(s3a.CopyObjectHandler, ACTION_WRITE))
|
2018-09-12 07:46:12 +00:00
|
|
|
// PutObject
|
2020-02-09 22:30:02 +00:00
|
|
|
bucket.Methods("PUT").Path("/{object:.+}").HandlerFunc(s3a.iam.Auth(s3a.PutObjectHandler, ACTION_WRITE))
|
2018-09-12 07:46:12 +00:00
|
|
|
// PutBucket
|
2020-02-09 22:30:02 +00:00
|
|
|
bucket.Methods("PUT").HandlerFunc(s3a.iam.Auth(s3a.PutBucketHandler, ACTION_ADMIN))
|
2018-09-12 07:46:12 +00:00
|
|
|
|
2018-07-22 01:49:47 +00:00
|
|
|
// DeleteObject
|
2020-02-09 22:30:02 +00:00
|
|
|
bucket.Methods("DELETE").Path("/{object:.+}").HandlerFunc(s3a.iam.Auth(s3a.DeleteObjectHandler, ACTION_WRITE))
|
2018-07-18 09:37:09 +00:00
|
|
|
// DeleteBucket
|
2020-02-09 22:30:02 +00:00
|
|
|
bucket.Methods("DELETE").HandlerFunc(s3a.iam.Auth(s3a.DeleteBucketHandler, ACTION_WRITE))
|
2018-07-18 09:37:09 +00:00
|
|
|
|
2018-07-22 09:04:07 +00:00
|
|
|
// ListObjectsV2
|
2020-02-09 22:30:02 +00:00
|
|
|
bucket.Methods("GET").HandlerFunc(s3a.iam.Auth(s3a.ListObjectsV2Handler, ACTION_READ)).Queries("list-type", "2")
|
2018-09-20 05:01:41 +00:00
|
|
|
// GetObject, but directory listing is not supported
|
2020-02-09 22:30:02 +00:00
|
|
|
bucket.Methods("GET").Path("/{object:.+}").HandlerFunc(s3a.iam.Auth(s3a.GetObjectHandler, ACTION_READ))
|
2018-07-22 08:14:36 +00:00
|
|
|
// ListObjectsV1 (Legacy)
|
2020-02-09 22:30:02 +00:00
|
|
|
bucket.Methods("GET").HandlerFunc(s3a.iam.Auth(s3a.ListObjectsV1Handler, ACTION_READ))
|
2018-07-22 08:14:36 +00:00
|
|
|
|
2018-09-04 07:42:44 +00:00
|
|
|
// DeleteMultipleObjects
|
2020-02-09 22:30:02 +00:00
|
|
|
bucket.Methods("POST").HandlerFunc(s3a.iam.Auth(s3a.DeleteMultipleObjectsHandler, ACTION_WRITE)).Queries("delete", "")
|
2018-07-19 08:21:44 +00:00
|
|
|
/*
|
|
|
|
|
|
|
|
// not implemented
|
|
|
|
// GetBucketLocation
|
|
|
|
bucket.Methods("GET").HandlerFunc(s3a.GetBucketLocationHandler).Queries("location", "")
|
|
|
|
// GetBucketPolicy
|
|
|
|
bucket.Methods("GET").HandlerFunc(s3a.GetBucketPolicyHandler).Queries("policy", "")
|
|
|
|
// GetObjectACL
|
|
|
|
bucket.Methods("GET").Path("/{object:.+}").HandlerFunc(s3a.GetObjectACLHandler).Queries("acl", "")
|
|
|
|
// GetBucketACL
|
|
|
|
bucket.Methods("GET").HandlerFunc(s3a.GetBucketACLHandler).Queries("acl", "")
|
|
|
|
// PutBucketPolicy
|
|
|
|
bucket.Methods("PUT").HandlerFunc(s3a.PutBucketPolicyHandler).Queries("policy", "")
|
|
|
|
// DeleteBucketPolicy
|
|
|
|
bucket.Methods("DELETE").HandlerFunc(s3a.DeleteBucketPolicyHandler).Queries("policy", "")
|
|
|
|
// PostPolicy
|
|
|
|
bucket.Methods("POST").HeadersRegexp("Content-Type", "multipart/form-data*").HandlerFunc(s3a.PostPolicyBucketHandler)
|
|
|
|
*/
|
2018-07-18 09:37:09 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// ListBuckets
|
2020-08-24 18:22:45 +00:00
|
|
|
apiRouter.Methods("GET").Path("/").HandlerFunc(s3a.iam.Auth(s3a.ListBucketsHandler, ACTION_READ))
|
2018-07-18 09:37:09 +00:00
|
|
|
|
|
|
|
// NotFound
|
|
|
|
apiRouter.NotFoundHandler = http.HandlerFunc(notFoundHandler)
|
|
|
|
|
|
|
|
}
|