forked from TrueCloudLab/frostfs-node
edfdc4274a
Pass session token (byte array) argument to `Delete` method call of `Container` contract. Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
43 lines
839 B
Go
43 lines
839 B
Go
package container
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
// 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
|
|
}
|
|
|
|
// 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
|
|
}
|
|
|
|
// Delete invokes the call of delete container
|
|
// method of NeoFS Container contract.
|
|
func (c *Client) Delete(args DeleteArgs) error {
|
|
err := c.client.Invoke(
|
|
c.deleteMethod,
|
|
args.cid,
|
|
args.sig,
|
|
args.token,
|
|
)
|
|
|
|
if err != nil {
|
|
return fmt.Errorf("could not invoke method (%s): %w", c.deleteMethod, err)
|
|
}
|
|
return nil
|
|
}
|