seaweedfs/weed/s3api/s3api_handlers.go

47 lines
1.2 KiB
Go
Raw Normal View History

2018-07-18 17:37:09 +08:00
package s3api
import (
2018-07-22 08:39:10 +08:00
"encoding/base64"
"fmt"
2020-09-20 05:09:58 +08:00
"github.com/chrislusf/seaweedfs/weed/s3api/s3err"
"google.golang.org/grpc"
2021-06-11 12:50:21 +08:00
"net/http"
2020-03-04 16:39:47 +08:00
"github.com/chrislusf/seaweedfs/weed/pb"
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
2018-07-18 17:37:09 +08:00
)
2020-04-30 04:26:02 +08:00
var _ = filer_pb.FilerClient(&S3ApiServer{})
2020-03-23 14:52:55 +08:00
func (s3a *S3ApiServer) WithFilerClient(fn func(filer_pb.SeaweedFilerClient) error) error {
2018-07-18 17:37:09 +08:00
2020-03-04 16:39:47 +08:00
return pb.WithCachedGrpcClient(func(grpcConnection *grpc.ClientConn) error {
2019-04-06 11:31:58 +08:00
client := filer_pb.NewSeaweedFilerClient(grpcConnection)
return fn(client)
}, s3a.option.Filer.ToGrpcAddress(), s3a.option.GrpcDialOption)
2018-07-18 17:37:09 +08:00
}
2021-10-11 18:03:56 +08:00
2021-01-29 06:36:29 +08:00
func (s3a *S3ApiServer) AdjustedUrl(location *filer_pb.Location) string {
return location.Url
}
2020-03-23 15:06:24 +08:00
2021-11-01 09:02:08 +08:00
func writeSuccessResponseXML(w http.ResponseWriter, r *http.Request, response interface{}) {
s3err.WriteXMLResponse(w, r, http.StatusOK, response)
2018-07-18 17:37:09 +08:00
}
2021-11-01 09:02:08 +08:00
func writeSuccessResponseEmpty(w http.ResponseWriter, r *http.Request) {
s3err.WriteEmptyResponse(w, r, http.StatusOK)
}
func validateContentMd5(h http.Header) ([]byte, error) {
md5B64, ok := h["Content-Md5"]
if ok {
if md5B64[0] == "" {
return nil, fmt.Errorf("Content-Md5 header set to empty value")
}
return base64.StdEncoding.DecodeString(md5B64[0])
}
return []byte{}, nil
}