2018-07-18 09:37:09 +00:00
|
|
|
package s3api
|
|
|
|
|
|
|
|
import (
|
2018-07-22 00:39:10 +00:00
|
|
|
"encoding/base64"
|
|
|
|
"fmt"
|
2022-07-29 07:17:28 +00:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/s3api/s3err"
|
2020-02-26 05:50:12 +00:00
|
|
|
"google.golang.org/grpc"
|
2021-06-11 04:50:21 +00:00
|
|
|
"net/http"
|
2020-02-26 05:50:12 +00:00
|
|
|
|
2022-07-29 07:17:28 +00:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/pb"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/pb/filer_pb"
|
2018-07-18 09:37:09 +00:00
|
|
|
)
|
|
|
|
|
2020-04-29 20:26:02 +00:00
|
|
|
var _ = filer_pb.FilerClient(&S3ApiServer{})
|
|
|
|
|
2021-12-26 08:15:03 +00:00
|
|
|
func (s3a *S3ApiServer) WithFilerClient(streamingMode bool, fn func(filer_pb.SeaweedFilerClient) error) error {
|
2018-07-18 09:37:09 +00:00
|
|
|
|
2021-12-26 08:15:03 +00:00
|
|
|
return pb.WithGrpcClient(streamingMode, func(grpcConnection *grpc.ClientConn) error {
|
2019-04-06 03:31:58 +00:00
|
|
|
client := filer_pb.NewSeaweedFilerClient(grpcConnection)
|
|
|
|
return fn(client)
|
2021-09-13 05:47:52 +00:00
|
|
|
}, s3a.option.Filer.ToGrpcAddress(), s3a.option.GrpcDialOption)
|
2018-07-18 09:37:09 +00:00
|
|
|
|
|
|
|
}
|
2021-10-11 10:03:56 +00:00
|
|
|
|
2021-01-28 22:36:29 +00:00
|
|
|
func (s3a *S3ApiServer) AdjustedUrl(location *filer_pb.Location) string {
|
|
|
|
return location.Url
|
|
|
|
}
|
2020-03-23 07:06:24 +00:00
|
|
|
|
2021-11-01 01:02:08 +00:00
|
|
|
func writeSuccessResponseXML(w http.ResponseWriter, r *http.Request, response interface{}) {
|
|
|
|
s3err.WriteXMLResponse(w, r, http.StatusOK, response)
|
2021-12-07 13:20:52 +00:00
|
|
|
s3err.PostLog(r, http.StatusOK, s3err.ErrNone)
|
2018-07-18 09:37:09 +00:00
|
|
|
}
|
2018-07-19 08:21:44 +00:00
|
|
|
|
2021-11-01 01:02:08 +00:00
|
|
|
func writeSuccessResponseEmpty(w http.ResponseWriter, r *http.Request) {
|
|
|
|
s3err.WriteEmptyResponse(w, r, http.StatusOK)
|
2018-07-19 08:21:44 +00:00
|
|
|
}
|
2018-07-21 17:39:02 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
}
|