2018-07-18 09:37:09 +00:00
|
|
|
package s3api
|
|
|
|
|
|
|
|
import (
|
2020-07-28 15:47:24 +00:00
|
|
|
"fmt"
|
2021-09-13 05:47:52 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb"
|
2020-02-09 22:30:02 +00:00
|
|
|
"net/http"
|
2020-10-21 15:48:51 +00:00
|
|
|
"strings"
|
2020-12-07 08:10:29 +00:00
|
|
|
"time"
|
2020-02-09 22:30:02 +00:00
|
|
|
|
2021-08-10 10:42:46 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/filer"
|
|
|
|
. "github.com/chrislusf/seaweedfs/weed/s3api/s3_constants"
|
2021-08-10 10:45:24 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/s3api/s3err"
|
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 {
|
2021-09-13 05:47:52 +00:00
|
|
|
Filer pb.ServerAddress
|
2020-07-28 15:47:24 +00:00
|
|
|
Port int
|
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
|
2020-12-27 18:50:27 +00:00
|
|
|
AllowEmptyFolder bool
|
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-11-03 16:45:56 +00:00
|
|
|
iam: NewIdentityAccessManagement(option),
|
2018-07-18 09:37:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
s3ApiServer.registerRouter(router)
|
|
|
|
|
2020-12-07 08:10:29 +00:00
|
|
|
go s3ApiServer.subscribeMetaEvents("s3", filer.IamConfigDirecotry+"/"+filer.IamIdentityFile, time.Now().UnixNano())
|
|
|
|
|
2018-07-18 09:37:09 +00:00
|
|
|
return s3ApiServer, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s3a *S3ApiServer) registerRouter(router *mux.Router) {
|
|
|
|
// API Router
|
|
|
|
apiRouter := router.PathPrefix("/").Subrouter()
|
2021-08-10 10:42:46 +00:00
|
|
|
|
|
|
|
// Readiness Probe
|
|
|
|
apiRouter.Methods("GET").Path("/status").HandlerFunc(s3a.StatusHandler)
|
|
|
|
|
2018-07-18 09:37:09 +00:00
|
|
|
var routers []*mux.Router
|
|
|
|
if s3a.option.DomainName != "" {
|
2020-10-21 15:48:51 +00:00
|
|
|
domainNames := strings.Split(s3a.option.DomainName, ",")
|
|
|
|
for _, domainName := range domainNames {
|
|
|
|
routers = append(routers, apiRouter.Host(
|
|
|
|
fmt.Sprintf("%s.%s:%d", "{bucket:.+}", domainName, s3a.option.Port)).Subrouter())
|
|
|
|
routers = append(routers, apiRouter.Host(
|
|
|
|
fmt.Sprintf("%s.%s", "{bucket:.+}", 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-09-20 23:00:01 +00:00
|
|
|
bucket.Methods("HEAD").Path("/{object:.+}").HandlerFunc(track(s3a.iam.Auth(s3a.HeadObjectHandler, ACTION_READ), "GET"))
|
2018-07-22 09:04:07 +00:00
|
|
|
// HeadBucket
|
2020-09-20 23:00:01 +00:00
|
|
|
bucket.Methods("HEAD").HandlerFunc(track(s3a.iam.Auth(s3a.HeadBucketHandler, ACTION_ADMIN), "GET"))
|
2018-07-22 09:04:07 +00:00
|
|
|
|
2020-01-31 08:11:08 +00:00
|
|
|
// CopyObjectPart
|
2021-02-18 06:05:28 +00:00
|
|
|
bucket.Methods("PUT").Path("/{object:.+}").HeadersRegexp("X-Amz-Copy-Source", `.*?(\/|%2F).*?`).HandlerFunc(track(s3a.iam.Auth(s3a.CopyObjectPartHandler, ACTION_WRITE), "PUT")).Queries("partNumber", "{partNumber:[0-9]+}", "uploadId", "{uploadId:.*}")
|
2018-09-03 18:38:10 +00:00
|
|
|
// PutObjectPart
|
2020-09-20 23:00:01 +00:00
|
|
|
bucket.Methods("PUT").Path("/{object:.+}").HandlerFunc(track(s3a.iam.Auth(s3a.PutObjectPartHandler, ACTION_WRITE), "PUT")).Queries("partNumber", "{partNumber:[0-9]+}", "uploadId", "{uploadId:.*}")
|
2018-09-03 18:38:10 +00:00
|
|
|
// CompleteMultipartUpload
|
2020-09-20 23:00:01 +00:00
|
|
|
bucket.Methods("POST").Path("/{object:.+}").HandlerFunc(track(s3a.iam.Auth(s3a.CompleteMultipartUploadHandler, ACTION_WRITE), "POST")).Queries("uploadId", "{uploadId:.*}")
|
2018-09-03 18:38:10 +00:00
|
|
|
// NewMultipartUpload
|
2020-09-20 23:00:01 +00:00
|
|
|
bucket.Methods("POST").Path("/{object:.+}").HandlerFunc(track(s3a.iam.Auth(s3a.NewMultipartUploadHandler, ACTION_WRITE), "POST")).Queries("uploads", "")
|
2018-09-03 18:38:10 +00:00
|
|
|
// AbortMultipartUpload
|
2020-09-20 23:00:01 +00:00
|
|
|
bucket.Methods("DELETE").Path("/{object:.+}").HandlerFunc(track(s3a.iam.Auth(s3a.AbortMultipartUploadHandler, ACTION_WRITE), "DELETE")).Queries("uploadId", "{uploadId:.*}")
|
2018-09-03 18:38:10 +00:00
|
|
|
// ListObjectParts
|
2020-10-08 06:22:35 +00:00
|
|
|
bucket.Methods("GET").Path("/{object:.+}").HandlerFunc(track(s3a.iam.Auth(s3a.ListObjectPartsHandler, ACTION_READ), "GET")).Queries("uploadId", "{uploadId:.*}")
|
2018-09-03 18:38:10 +00:00
|
|
|
// ListMultipartUploads
|
2020-10-08 06:22:35 +00:00
|
|
|
bucket.Methods("GET").HandlerFunc(track(s3a.iam.Auth(s3a.ListMultipartUploadsHandler, ACTION_READ), "GET")).Queries("uploads", "")
|
2018-09-03 18:38:10 +00:00
|
|
|
|
2020-10-03 05:21:51 +00:00
|
|
|
// GetObjectTagging
|
2020-10-08 06:22:35 +00:00
|
|
|
bucket.Methods("GET").Path("/{object:.+}").HandlerFunc(track(s3a.iam.Auth(s3a.GetObjectTaggingHandler, ACTION_READ), "GET")).Queries("tagging", "")
|
2020-10-03 05:21:51 +00:00
|
|
|
// PutObjectTagging
|
2020-10-08 06:22:35 +00:00
|
|
|
bucket.Methods("PUT").Path("/{object:.+}").HandlerFunc(track(s3a.iam.Auth(s3a.PutObjectTaggingHandler, ACTION_TAGGING), "PUT")).Queries("tagging", "")
|
2020-10-03 05:21:51 +00:00
|
|
|
// DeleteObjectTagging
|
2020-10-08 06:22:35 +00:00
|
|
|
bucket.Methods("DELETE").Path("/{object:.+}").HandlerFunc(track(s3a.iam.Auth(s3a.DeleteObjectTaggingHandler, ACTION_TAGGING), "DELETE")).Queries("tagging", "")
|
2020-10-03 05:21:51 +00:00
|
|
|
|
2021-09-19 10:24:47 +00:00
|
|
|
// PutObjectACL
|
|
|
|
bucket.Methods("PUT").Path("/{object:.+}").HandlerFunc(track(s3a.iam.Auth(s3a.PutObjectAclHandler, ACTION_WRITE), "PUT")).Queries("acl", "")
|
|
|
|
// PutObjectRetention
|
|
|
|
bucket.Methods("PUT").Path("/{object:.+}").HandlerFunc(track(s3a.iam.Auth(s3a.PutObjectRetentionHandler, ACTION_WRITE), "PUT")).Queries("retention", "")
|
|
|
|
// PutObjectLegalHold
|
|
|
|
bucket.Methods("PUT").Path("/{object:.+}").HandlerFunc(track(s3a.iam.Auth(s3a.PutObjectLegalHoldHandler, ACTION_WRITE), "PUT")).Queries("legal-hold", "")
|
|
|
|
// PutObjectLockConfiguration
|
|
|
|
bucket.Methods("PUT").Path("/{object:.+}").HandlerFunc(track(s3a.iam.Auth(s3a.PutObjectLockConfigurationHandler, ACTION_WRITE), "PUT")).Queries("object-lock", "")
|
|
|
|
|
2020-01-31 08:11:08 +00:00
|
|
|
// CopyObject
|
2020-09-20 23:00:01 +00:00
|
|
|
bucket.Methods("PUT").Path("/{object:.+}").HeadersRegexp("X-Amz-Copy-Source", ".*?(\\/|%2F).*?").HandlerFunc(track(s3a.iam.Auth(s3a.CopyObjectHandler, ACTION_WRITE), "COPY"))
|
2018-09-12 07:46:12 +00:00
|
|
|
// PutObject
|
2020-09-20 23:00:01 +00:00
|
|
|
bucket.Methods("PUT").Path("/{object:.+}").HandlerFunc(track(s3a.iam.Auth(s3a.PutObjectHandler, ACTION_WRITE), "PUT"))
|
2018-09-12 07:46:12 +00:00
|
|
|
// PutBucket
|
2020-09-20 23:00:01 +00:00
|
|
|
bucket.Methods("PUT").HandlerFunc(track(s3a.iam.Auth(s3a.PutBucketHandler, ACTION_ADMIN), "PUT"))
|
2018-09-12 07:46:12 +00:00
|
|
|
|
2018-07-22 01:49:47 +00:00
|
|
|
// DeleteObject
|
2020-09-20 23:00:01 +00:00
|
|
|
bucket.Methods("DELETE").Path("/{object:.+}").HandlerFunc(track(s3a.iam.Auth(s3a.DeleteObjectHandler, ACTION_WRITE), "DELETE"))
|
2018-07-18 09:37:09 +00:00
|
|
|
// DeleteBucket
|
2020-09-20 23:00:01 +00:00
|
|
|
bucket.Methods("DELETE").HandlerFunc(track(s3a.iam.Auth(s3a.DeleteBucketHandler, ACTION_WRITE), "DELETE"))
|
2018-07-18 09:37:09 +00:00
|
|
|
|
2018-07-22 09:04:07 +00:00
|
|
|
// ListObjectsV2
|
2020-10-08 06:22:35 +00:00
|
|
|
bucket.Methods("GET").HandlerFunc(track(s3a.iam.Auth(s3a.ListObjectsV2Handler, ACTION_LIST), "LIST")).Queries("list-type", "2")
|
2018-09-20 05:01:41 +00:00
|
|
|
// GetObject, but directory listing is not supported
|
2020-09-20 23:00:01 +00:00
|
|
|
bucket.Methods("GET").Path("/{object:.+}").HandlerFunc(track(s3a.iam.Auth(s3a.GetObjectHandler, ACTION_READ), "GET"))
|
2018-07-22 08:14:36 +00:00
|
|
|
|
2020-09-20 03:14:19 +00:00
|
|
|
// PostPolicy
|
2020-09-22 00:34:38 +00:00
|
|
|
bucket.Methods("POST").HeadersRegexp("Content-Type", "multipart/form-data*").HandlerFunc(track(s3a.iam.Auth(s3a.PostPolicyBucketHandler, ACTION_WRITE), "POST"))
|
2020-09-20 03:14:19 +00:00
|
|
|
|
2018-09-04 07:42:44 +00:00
|
|
|
// DeleteMultipleObjects
|
2020-09-20 23:00:01 +00:00
|
|
|
bucket.Methods("POST").HandlerFunc(track(s3a.iam.Auth(s3a.DeleteMultipleObjectsHandler, ACTION_WRITE), "DELETE")).Queries("delete", "")
|
2021-10-11 10:03:56 +00:00
|
|
|
|
|
|
|
// GetBucketACL
|
|
|
|
bucket.Methods("GET").HandlerFunc(s3a.iam.Auth(s3a.GetBucketAclHandler, ACTION_READ)).Queries("acl", "")
|
|
|
|
|
|
|
|
// GetObjectACL
|
|
|
|
bucket.Methods("GET").Path("/{object:.+}").HandlerFunc(s3a.iam.Auth(s3a.GetObjectAclHandler, ACTION_READ)).Queries("acl", "")
|
|
|
|
|
|
|
|
// GetBucketLifecycleConfiguration
|
|
|
|
bucket.Methods("GET").HandlerFunc(s3a.iam.Auth(s3a.GetBucketLifecycleConfigurationHandler, ACTION_READ)).Queries("lifecycle", "")
|
|
|
|
|
|
|
|
// PutBucketLifecycleConfiguration
|
|
|
|
bucket.Methods("PUT").HandlerFunc(s3a.iam.Auth(s3a.PutBucketLifecycleConfigurationHandler, ACTION_WRITE)).Queries("lifecycle", "")
|
|
|
|
|
|
|
|
// DeleteBucketLifecycleConfiguration
|
|
|
|
bucket.Methods("DELETE").HandlerFunc(s3a.iam.Auth(s3a.DeleteBucketLifecycleHandler, ACTION_WRITE)).Queries("lifecycle", "")
|
|
|
|
|
|
|
|
// ListObjectsV1 (Legacy)
|
|
|
|
bucket.Methods("GET").HandlerFunc(track(s3a.iam.Auth(s3a.ListObjectsV1Handler, ACTION_LIST), "LIST"))
|
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", "")
|
|
|
|
// PutBucketPolicy
|
|
|
|
bucket.Methods("PUT").HandlerFunc(s3a.PutBucketPolicyHandler).Queries("policy", "")
|
|
|
|
// DeleteBucketPolicy
|
|
|
|
bucket.Methods("DELETE").HandlerFunc(s3a.DeleteBucketPolicyHandler).Queries("policy", "")
|
|
|
|
*/
|
2018-07-18 09:37:09 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// ListBuckets
|
2020-12-25 08:38:56 +00:00
|
|
|
apiRouter.Methods("GET").Path("/").HandlerFunc(track(s3a.ListBucketsHandler, "LIST"))
|
2018-07-18 09:37:09 +00:00
|
|
|
|
|
|
|
// NotFound
|
2021-06-11 04:50:21 +00:00
|
|
|
apiRouter.NotFoundHandler = http.HandlerFunc(s3err.NotFoundHandler)
|
2018-07-18 09:37:09 +00:00
|
|
|
|
|
|
|
}
|