2021-09-10 06:56:56 +00:00
|
|
|
package data
|
2021-08-27 21:33:50 +00:00
|
|
|
|
|
|
|
import (
|
2021-10-13 18:50:02 +00:00
|
|
|
"encoding/xml"
|
2021-08-27 21:33:50 +00:00
|
|
|
"time"
|
|
|
|
|
|
|
|
cid "github.com/nspcc-dev/neofs-api-go/pkg/container/id"
|
|
|
|
"github.com/nspcc-dev/neofs-api-go/pkg/object"
|
|
|
|
"github.com/nspcc-dev/neofs-api-go/pkg/owner"
|
|
|
|
)
|
|
|
|
|
2021-10-04 14:32:35 +00:00
|
|
|
const (
|
|
|
|
bktVersionSettingsObject = ".s3-versioning-settings"
|
|
|
|
bktCORSConfigurationObject = ".s3-cors"
|
|
|
|
)
|
2021-08-27 21:33:50 +00:00
|
|
|
|
|
|
|
type (
|
|
|
|
// BucketInfo stores basic bucket data.
|
|
|
|
BucketInfo struct {
|
|
|
|
Name string
|
|
|
|
CID *cid.ID
|
|
|
|
Owner *owner.ID
|
|
|
|
Created time.Time
|
|
|
|
BasicACL uint32
|
|
|
|
}
|
|
|
|
|
|
|
|
// ObjectInfo holds S3 object data.
|
|
|
|
ObjectInfo struct {
|
|
|
|
ID *object.ID
|
|
|
|
CID *cid.ID
|
|
|
|
IsDir bool
|
|
|
|
|
|
|
|
Bucket string
|
|
|
|
Name string
|
|
|
|
Size int64
|
|
|
|
ContentType string
|
|
|
|
Created time.Time
|
|
|
|
CreationEpoch uint64
|
|
|
|
HashSum string
|
|
|
|
Owner *owner.ID
|
|
|
|
Headers map[string]string
|
|
|
|
}
|
2021-10-13 18:50:02 +00:00
|
|
|
|
|
|
|
// CORSConfiguration stores CORS configuration of a request.
|
|
|
|
CORSConfiguration struct {
|
|
|
|
XMLName xml.Name `xml:"http://s3.amazonaws.com/doc/2006-03-01/ CORSConfiguration" json:"-"`
|
|
|
|
CORSRules []CORSRule `xml:"CORSRule" json:"CORSRules"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// CORSRule stores rules for CORS in a bucket.
|
|
|
|
CORSRule struct {
|
|
|
|
ID string `xml:"ID,omitempty" json:"ID,omitempty"`
|
|
|
|
AllowedHeaders []string `xml:"AllowedHeader" json:"AllowedHeaders"`
|
|
|
|
AllowedMethods []string `xml:"AllowedMethod" json:"AllowedMethods"`
|
|
|
|
AllowedOrigins []string `xml:"AllowedOrigin" json:"AllowedOrigins"`
|
|
|
|
ExposeHeaders []string `xml:"ExposeHeader" json:"ExposeHeaders"`
|
|
|
|
MaxAgeSeconds int `xml:"MaxAgeSeconds,omitempty" json:"MaxAgeSeconds,omitempty"`
|
|
|
|
}
|
2021-08-27 21:33:50 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// SettingsObjectName is system name for bucket settings file.
|
|
|
|
func (b *BucketInfo) SettingsObjectName() string { return bktVersionSettingsObject }
|
|
|
|
|
2021-10-04 14:32:35 +00:00
|
|
|
// CORSObjectName returns system name for bucket CORS configuration file.
|
|
|
|
func (b *BucketInfo) CORSObjectName() string { return bktCORSConfigurationObject }
|
|
|
|
|
2021-08-27 21:33:50 +00:00
|
|
|
// Version returns object version from ObjectInfo.
|
|
|
|
func (o *ObjectInfo) Version() string { return o.ID.String() }
|
|
|
|
|
|
|
|
// NiceName returns object name for cache.
|
|
|
|
func (o *ObjectInfo) NiceName() string { return o.Bucket + "/" + o.Name }
|
|
|
|
|
|
|
|
// Address returns object address.
|
|
|
|
func (o *ObjectInfo) Address() *object.Address {
|
|
|
|
address := object.NewAddress()
|
|
|
|
address.SetContainerID(o.CID)
|
|
|
|
address.SetObjectID(o.ID)
|
|
|
|
|
|
|
|
return address
|
|
|
|
}
|
|
|
|
|
|
|
|
// TagsObject returns name of system object for tags.
|
|
|
|
func (o *ObjectInfo) TagsObject() string { return ".tagset." + o.Name + "." + o.Version() }
|