header.go 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. AmzUserMetaMtime = "X-Amz-Meta-Mtime"
  30. // S3 object tagging
  31. AmzObjectTagging = "X-Amz-Tagging"
  32. AmzObjectTaggingPrefix = "X-Amz-Tagging-"
  33. AmzObjectTaggingDirective = "X-Amz-Tagging-Directive"
  34. AmzTagCount = "x-amz-tagging-count"
  35. SeaweedFSIsDirectoryKey = "X-Seaweedfs-Is-Directory-Key"
  36. SeaweedFSPartNumber = "X-Seaweedfs-Part-Number"
  37. SeaweedFSUploadId = "X-Seaweedfs-Upload-Id"
  38. // S3 ACL headers
  39. AmzCannedAcl = "X-Amz-Acl"
  40. AmzAclFullControl = "X-Amz-Grant-Full-Control"
  41. AmzAclRead = "X-Amz-Grant-Read"
  42. AmzAclWrite = "X-Amz-Grant-Write"
  43. AmzAclReadAcp = "X-Amz-Grant-Read-Acp"
  44. AmzAclWriteAcp = "X-Amz-Grant-Write-Acp"
  45. AmzMpPartsCount = "X-Amz-Mp-Parts-Count"
  46. )
  47. // Non-Standard S3 HTTP request constants
  48. const (
  49. AmzIdentityId = "s3-identity-id"
  50. AmzAccountId = "s3-account-id"
  51. AmzAuthType = "s3-auth-type"
  52. AmzIsAdmin = "s3-is-admin" // only set to http request header as a context
  53. )
  54. func GetBucketAndObject(r *http.Request) (bucket, object string) {
  55. vars := mux.Vars(r)
  56. bucket = vars["bucket"]
  57. object = vars["object"]
  58. if !strings.HasPrefix(object, "/") {
  59. object = "/" + object
  60. }
  61. return
  62. }
  63. var PassThroughHeaders = map[string]string{
  64. "response-cache-control": "Cache-Control",
  65. "response-content-disposition": "Content-Disposition",
  66. "response-content-encoding": "Content-Encoding",
  67. "response-content-language": "Content-Language",
  68. "response-content-type": "Content-Type",
  69. "response-expires": "Expires",
  70. }