af33dd65b2
Add optional parameters to the client call signature. Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
55 lines
1.2 KiB
Go
55 lines
1.2 KiB
Go
package container
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/morph/client"
|
|
)
|
|
|
|
// DeleteArgs groups the arguments
|
|
// of delete container invocation call.
|
|
type DeleteArgs struct {
|
|
cid []byte // container identifier
|
|
|
|
sig []byte // container identifier signature
|
|
|
|
token []byte // binary session token
|
|
|
|
client.InvokePrmOptional
|
|
}
|
|
|
|
// SetCID sets the container identifier
|
|
// in a binary format.
|
|
func (p *DeleteArgs) SetCID(v []byte) {
|
|
p.cid = v
|
|
}
|
|
|
|
// SetSignature sets the container identifier
|
|
// owner's signature.
|
|
func (p *DeleteArgs) SetSignature(v []byte) {
|
|
p.sig = v
|
|
}
|
|
|
|
// SetSessionToken sets token of the session
|
|
// within which the container was removed
|
|
// in a NeoFS API binary format.
|
|
func (p *DeleteArgs) SetSessionToken(v []byte) {
|
|
p.token = v
|
|
}
|
|
|
|
// Delete invokes the call of delete container
|
|
// method of NeoFS Container contract.
|
|
func (c *Client) Delete(args DeleteArgs) error {
|
|
prm := client.InvokePrm{}
|
|
|
|
prm.SetMethod(c.deleteMethod)
|
|
prm.SetArgs(args.cid, args.sig, args.token)
|
|
prm.InvokePrmOptional = args.InvokePrmOptional
|
|
|
|
err := c.client.Invoke(prm)
|
|
|
|
if err != nil {
|
|
return fmt.Errorf("could not invoke method (%s): %w", c.deleteMethod, err)
|
|
}
|
|
return nil
|
|
}
|