header.go 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. // S3 ACL headers
  36. AmzCannedAcl = "X-Amz-Acl"
  37. AmzAclFullControl = "X-Amz-Grant-Full-Control"
  38. AmzAclRead = "X-Amz-Grant-Read"
  39. AmzAclWrite = "X-Amz-Grant-Write"
  40. AmzAclReadAcp = "X-Amz-Grant-Read-Acp"
  41. AmzAclWriteAcp = "X-Amz-Grant-Write-Acp"
  42. )
  43. // Non-Standard S3 HTTP request constants
  44. const (
  45. AmzIdentityId = "s3-identity-id"
  46. AmzAccountId = "s3-account-id"
  47. AmzAuthType = "s3-auth-type"
  48. AmzIsAdmin = "s3-is-admin" // only set to http request header as a context
  49. )
  50. func GetBucketAndObject(r *http.Request) (bucket, object string) {
  51. vars := mux.Vars(r)
  52. bucket = vars["bucket"]
  53. object = vars["object"]
  54. if !strings.HasPrefix(object, "/") {
  55. object = "/" + object
  56. }
  57. return
  58. }
  59. var PassThroughHeaders = map[string]string{
  60. "response-cache-control": "Cache-Control",
  61. "response-content-disposition": "Content-Disposition",
  62. "response-content-encoding": "Content-Encoding",
  63. "response-content-language": "Content-Language",
  64. "response-content-type": "Content-Type",
  65. "response-expires": "Expires",
  66. }