7627f8376a
In all other places we use `Option` as `func`, there is no need in additional indirection. Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
88 lines
1.7 KiB
Go
88 lines
1.7 KiB
Go
package container
|
|
|
|
import (
|
|
"github.com/google/uuid"
|
|
"github.com/nspcc-dev/neofs-sdk-go/acl"
|
|
"github.com/nspcc-dev/neofs-sdk-go/netmap"
|
|
"github.com/nspcc-dev/neofs-sdk-go/owner"
|
|
)
|
|
|
|
type (
|
|
Option func(*containerOptions)
|
|
|
|
containerOptions struct {
|
|
acl uint32
|
|
policy *netmap.PlacementPolicy
|
|
attributes Attributes
|
|
owner *owner.ID
|
|
nonce uuid.UUID
|
|
}
|
|
)
|
|
|
|
func defaultContainerOptions() containerOptions {
|
|
rand, err := uuid.NewRandom()
|
|
if err != nil {
|
|
panic("can't create new random " + err.Error())
|
|
}
|
|
|
|
return containerOptions{
|
|
acl: acl.PrivateBasicRule,
|
|
nonce: rand,
|
|
}
|
|
}
|
|
|
|
func WithPublicBasicACL() Option {
|
|
return func(option *containerOptions) {
|
|
option.acl = acl.PublicBasicRule
|
|
}
|
|
}
|
|
|
|
func WithReadOnlyBasicACL() Option {
|
|
return func(option *containerOptions) {
|
|
option.acl = acl.ReadOnlyBasicRule
|
|
}
|
|
}
|
|
|
|
func WithCustomBasicACL(acl uint32) Option {
|
|
return func(option *containerOptions) {
|
|
option.acl = acl
|
|
}
|
|
}
|
|
|
|
func WithNonce(nonce uuid.UUID) Option {
|
|
return func(option *containerOptions) {
|
|
option.nonce = nonce
|
|
}
|
|
}
|
|
|
|
func WithOwnerID(id *owner.ID) Option {
|
|
return func(option *containerOptions) {
|
|
option.owner = id
|
|
}
|
|
}
|
|
|
|
func WithNEO3Wallet(w *owner.NEO3Wallet) Option {
|
|
return func(option *containerOptions) {
|
|
if option.owner == nil {
|
|
option.owner = new(owner.ID)
|
|
}
|
|
|
|
option.owner.SetNeo3Wallet(w)
|
|
}
|
|
}
|
|
|
|
func WithPolicy(policy *netmap.PlacementPolicy) Option {
|
|
return func(option *containerOptions) {
|
|
option.policy = policy
|
|
}
|
|
}
|
|
|
|
func WithAttribute(key, value string) Option {
|
|
return func(option *containerOptions) {
|
|
attr := NewAttribute()
|
|
attr.SetKey(key)
|
|
attr.SetValue(value)
|
|
|
|
option.attributes = append(option.attributes, attr)
|
|
}
|
|
}
|