mirror of
https://github.com/ipfs/kubo.git
synced 2025-08-06 19:44:01 +08:00
134 lines
3.1 KiB
Go
134 lines
3.1 KiB
Go
package options
|
|
|
|
import (
|
|
"time"
|
|
|
|
ropts "github.com/ipfs/go-ipfs/namesys/opts"
|
|
)
|
|
|
|
const (
|
|
DefaultNameValidTime = 24 * time.Hour
|
|
)
|
|
|
|
type NamePublishSettings struct {
|
|
ValidTime time.Duration
|
|
Key string
|
|
|
|
TTL *time.Duration
|
|
|
|
AllowOffline bool
|
|
}
|
|
|
|
type NameResolveSettings struct {
|
|
Local bool
|
|
Cache bool
|
|
|
|
ResolveOpts []ropts.ResolveOpt
|
|
}
|
|
|
|
type NamePublishOption func(*NamePublishSettings) error
|
|
type NameResolveOption func(*NameResolveSettings) error
|
|
|
|
func NamePublishOptions(opts ...NamePublishOption) (*NamePublishSettings, error) {
|
|
options := &NamePublishSettings{
|
|
ValidTime: DefaultNameValidTime,
|
|
Key: "self",
|
|
|
|
AllowOffline: false,
|
|
}
|
|
|
|
for _, opt := range opts {
|
|
err := opt(options)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
return options, nil
|
|
}
|
|
|
|
func NameResolveOptions(opts ...NameResolveOption) (*NameResolveSettings, error) {
|
|
options := &NameResolveSettings{
|
|
Local: false,
|
|
Cache: true,
|
|
}
|
|
|
|
for _, opt := range opts {
|
|
err := opt(options)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
return options, nil
|
|
}
|
|
|
|
type nameOpts struct{}
|
|
|
|
var Name nameOpts
|
|
|
|
// ValidTime is an option for Name.Publish which specifies for how long the
|
|
// entry will remain valid. Default value is 24h
|
|
func (nameOpts) ValidTime(validTime time.Duration) NamePublishOption {
|
|
return func(settings *NamePublishSettings) error {
|
|
settings.ValidTime = validTime
|
|
return nil
|
|
}
|
|
}
|
|
|
|
// Key is an option for Name.Publish which specifies the key to use for
|
|
// publishing. Default value is "self" which is the node's own PeerID.
|
|
// The key parameter must be either PeerID or keystore key alias.
|
|
//
|
|
// You can use KeyAPI to list and generate more names and their respective keys.
|
|
func (nameOpts) Key(key string) NamePublishOption {
|
|
return func(settings *NamePublishSettings) error {
|
|
settings.Key = key
|
|
return nil
|
|
}
|
|
}
|
|
|
|
// AllowOffline is an option for Name.Publish which specifies whether to allow
|
|
// publishing when the node is offline. Default value is false
|
|
func (nameOpts) AllowOffline(allow bool) NamePublishOption {
|
|
return func(settings *NamePublishSettings) error {
|
|
settings.AllowOffline = allow
|
|
return nil
|
|
}
|
|
}
|
|
|
|
// TTL is an option for Name.Publish which specifies the time duration the
|
|
// published record should be cached for (caution: experimental).
|
|
func (nameOpts) TTL(ttl time.Duration) NamePublishOption {
|
|
return func(settings *NamePublishSettings) error {
|
|
settings.TTL = &ttl
|
|
return nil
|
|
}
|
|
}
|
|
|
|
// Local is an option for Name.Resolve which specifies if the lookup should be
|
|
// offline. Default value is false
|
|
func (nameOpts) Local(local bool) NameResolveOption {
|
|
return func(settings *NameResolveSettings) error {
|
|
settings.Local = local
|
|
return nil
|
|
}
|
|
}
|
|
|
|
// Cache is an option for Name.Resolve which specifies if cache should be used.
|
|
// Default value is true
|
|
func (nameOpts) Cache(cache bool) NameResolveOption {
|
|
return func(settings *NameResolveSettings) error {
|
|
settings.Cache = cache
|
|
return nil
|
|
}
|
|
}
|
|
|
|
//
|
|
func (nameOpts) ResolveOption(opt ropts.ResolveOpt) NameResolveOption {
|
|
return func(settings *NameResolveSettings) error {
|
|
settings.ResolveOpts = append(settings.ResolveOpts, opt)
|
|
return nil
|
|
}
|
|
}
|