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