You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

68 lines
1.9 KiB

3 years ago
3 years ago
  1. /*
  2. * MinIO Cloud Storage, (C) 2019 MinIO, Inc.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package s3_constants
  17. import (
  18. "github.com/gorilla/mux"
  19. "net/http"
  20. "strings"
  21. )
  22. // Standard S3 HTTP request constants
  23. const (
  24. // S3 storage class
  25. AmzStorageClass = "x-amz-storage-class"
  26. // S3 user-defined metadata
  27. AmzUserMetaPrefix = "X-Amz-Meta-"
  28. AmzUserMetaDirective = "X-Amz-Metadata-Directive"
  29. // S3 object tagging
  30. AmzObjectTagging = "X-Amz-Tagging"
  31. AmzObjectTaggingPrefix = "X-Amz-Tagging-"
  32. AmzObjectTaggingDirective = "X-Amz-Tagging-Directive"
  33. AmzTagCount = "x-amz-tagging-count"
  34. X_SeaweedFS_Header_Directory_Key = "x-seaweedfs-is-directory-key"
  35. )
  36. // Non-Standard S3 HTTP request constants
  37. const (
  38. AmzIdentityId = "s3-identity-id"
  39. AmzAuthType = "s3-auth-type"
  40. AmzIsAdmin = "s3-is-admin" // only set to http request header as a context
  41. )
  42. func GetBucketAndObject(r *http.Request) (bucket, object string) {
  43. vars := mux.Vars(r)
  44. bucket = vars["bucket"]
  45. object = vars["object"]
  46. if !strings.HasPrefix(object, "/") {
  47. object = "/" + object
  48. }
  49. return
  50. }
  51. var PassThroughHeaders = map[string]string{
  52. "response-cache-control": "Cache-Control",
  53. "response-content-disposition": "Content-Disposition",
  54. "response-content-encoding": "Content-Encoding",
  55. "response-content-language": "Content-Language",
  56. "response-content-type": "Content-Type",
  57. "response-expires": "Expires",
  58. }