2021-05-19 09:21:33 +00:00
|
|
|
package neofsid
|
|
|
|
|
|
|
|
import (
|
2021-05-19 12:46:45 +00:00
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/encoding/fixedn"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/morph/client"
|
2021-05-19 09:21:33 +00:00
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/morph/client/neofsid"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ClientWrapper is a wrapper over NeoFS ID contract
|
|
|
|
// client which provides convenient methods for
|
|
|
|
// working with a contract.
|
|
|
|
//
|
|
|
|
// Working ClientWrapper must be created via Wrap.
|
|
|
|
type ClientWrapper neofsid.Client
|
|
|
|
|
2021-07-01 17:00:30 +00:00
|
|
|
// Option allows to set an optional
|
|
|
|
// parameter of ClientWrapper.
|
|
|
|
type Option func(*opts)
|
|
|
|
|
|
|
|
type opts []client.StaticClientOption
|
|
|
|
|
|
|
|
func defaultOpts() *opts {
|
|
|
|
return new(opts)
|
|
|
|
}
|
|
|
|
|
|
|
|
// TryNotary returns option to enable
|
|
|
|
// notary invocation tries.
|
|
|
|
func TryNotary() Option {
|
|
|
|
return func(o *opts) {
|
|
|
|
*o = append(*o, client.TryNotary())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-19 12:46:45 +00:00
|
|
|
// NewFromMorph wraps client to work with NeoFS ID contract.
|
2021-07-01 17:00:30 +00:00
|
|
|
func NewFromMorph(cli *client.Client, contract util.Uint160, fee fixedn.Fixed8, opts ...Option) (*ClientWrapper, error) {
|
|
|
|
o := defaultOpts()
|
|
|
|
|
|
|
|
for i := range opts {
|
|
|
|
opts[i](o)
|
|
|
|
}
|
|
|
|
|
|
|
|
sc, err := client.NewStatic(cli, contract, fee, ([]client.StaticClientOption)(*o)...)
|
2021-05-19 12:46:45 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("could not create client of NeoFS ID contract: %w", err)
|
2021-05-19 09:21:33 +00:00
|
|
|
}
|
|
|
|
|
2021-05-19 12:46:45 +00:00
|
|
|
return (*ClientWrapper)(neofsid.New(sc)), nil
|
2021-05-19 09:21:33 +00:00
|
|
|
}
|