|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- package minio_ext
-
- import (
- "net/http"
- "net/url"
- "time"
- )
-
- // StringMap represents map with custom UnmarshalXML
- type StringMap map[string]string
-
- // CommonPrefix container for prefix response.
- type CommonPrefix struct {
- Prefix string
- }
-
- // ObjectInfo container for object metadata.
- type ObjectInfo struct {
- // An ETag is optionally set to md5sum of an object. In case of multipart objects,
- // ETag is of the form MD5SUM-N where MD5SUM is md5sum of all individual md5sums of
- // each parts concatenated into one string.
- ETag string `json:"etag"`
-
- Key string `json:"name"` // Name of the object
- LastModified time.Time `json:"lastModified"` // Date and time the object was last modified.
- Size int64 `json:"size"` // Size in bytes of the object.
- ContentType string `json:"contentType"` // A standard MIME type describing the format of the object data.
- Expires time.Time `json:"expires"` // The date and time at which the object is no longer able to be cached.
-
- // Collection of additional metadata on the object.
- // eg: x-amz-meta-*, content-encoding etc.
- Metadata http.Header `json:"metadata" xml:"-"`
-
- // x-amz-meta-* headers stripped "x-amz-meta-" prefix containing the first value.
- UserMetadata StringMap `json:"userMetadata"`
-
- // Owner name.
- Owner struct {
- DisplayName string `json:"name"`
- ID string `json:"id"`
- } `json:"owner"`
-
- // The class of storage used to store the object.
- StorageClass string `json:"storageClass"`
-
- // Error
- Err error `json:"-"`
- }
-
- // ListBucketResult container for listObjects response.
- type ListBucketResult struct {
- // A response can contain CommonPrefixes only if you have
- // specified a delimiter.
- CommonPrefixes []CommonPrefix
- // Metadata about each object returned.
- Contents []ObjectInfo
- Delimiter string
-
- // Encoding type used to encode object keys in the response.
- EncodingType string
-
- // A flag that indicates whether or not ListObjects returned all of the results
- // that satisfied the search criteria.
- IsTruncated bool
- Marker string
- MaxKeys int64
- Name string
-
- // When response is truncated (the IsTruncated element value in
- // the response is true), you can use the key name in this field
- // as marker in the subsequent request to get next set of objects.
- // Object storage lists objects in alphabetical order Note: This
- // element is returned only if you have delimiter request
- // parameter specified. If response does not include the NextMaker
- // and it is truncated, you can use the value of the last Key in
- // the response as the marker in the subsequent request to get the
- // next set of object keys.
- NextMarker string
- Prefix string
- }
-
- var (
- // Hex encoded string of nil sha256sum bytes.
- emptySHA256Hex = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
-
- // Sentinel URL is the default url value which is invalid.
- sentinelURL = url.URL{}
- )
|