forked from TrueCloudLab/frostfs-node
3c5b62d839
We don't use custom names and the only place where custom method option is used it provides the default name and can be omitted. Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
75 lines
1.6 KiB
Go
75 lines
1.6 KiB
Go
package neofsid
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/morph/client"
|
|
)
|
|
|
|
// AddKeysArgs groups the arguments
|
|
// of key binding call.
|
|
type AddKeysArgs struct {
|
|
commonBindArgs
|
|
}
|
|
|
|
// RemoveKeysArgs groups the arguments
|
|
// of key unbinding call.
|
|
type RemoveKeysArgs struct {
|
|
commonBindArgs
|
|
}
|
|
|
|
type commonBindArgs struct {
|
|
ownerID []byte // NeoFS account identifier
|
|
|
|
keys [][]byte // list of serialized public keys
|
|
|
|
client.InvokePrmOptional
|
|
}
|
|
|
|
func (x *commonBindArgs) SetOptionalPrm(prm client.InvokePrmOptional) {
|
|
x.InvokePrmOptional = prm
|
|
}
|
|
|
|
// SetOwnerID sets NeoFS account identifier.
|
|
func (x *commonBindArgs) SetOwnerID(v []byte) {
|
|
x.ownerID = v
|
|
}
|
|
|
|
// SetKeys sets list of public keys in a binary format.
|
|
func (x *commonBindArgs) SetKeys(v [][]byte) {
|
|
x.keys = v
|
|
}
|
|
|
|
// AddKeys invokes the call of key adding method
|
|
// of NeoFS contract.
|
|
func (x *Client) AddKeys(args AddKeysArgs) error {
|
|
prm := client.InvokePrm{}
|
|
|
|
prm.SetMethod(addKeysMethod)
|
|
prm.SetArgs(args.ownerID, args.keys)
|
|
prm.InvokePrmOptional = args.InvokePrmOptional
|
|
|
|
err := x.client.Invoke(prm)
|
|
if err != nil {
|
|
return fmt.Errorf("could not invoke method (%s): %w", addKeysMethod, err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// RemoveKeys invokes the call of key removing method
|
|
// of NeoFS contract.
|
|
func (x *Client) RemoveKeys(args RemoveKeysArgs) error {
|
|
prm := client.InvokePrm{}
|
|
|
|
prm.SetMethod(removeKeysMethod)
|
|
prm.SetArgs(args.ownerID, args.keys)
|
|
prm.InvokePrmOptional = args.InvokePrmOptional
|
|
|
|
err := x.client.Invoke(prm)
|
|
if err != nil {
|
|
return fmt.Errorf("could not invoke method (%s): %w", removeKeysMethod, err)
|
|
}
|
|
|
|
return nil
|
|
}
|