71b87155ef
Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
40 lines
770 B
Go
40 lines
770 B
Go
package container
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
// SetEACLArgs groups the arguments
|
|
// of set eACL invocation call.
|
|
type SetEACLArgs struct {
|
|
eacl []byte // extended ACL table
|
|
|
|
sig []byte // eACL table signature
|
|
}
|
|
|
|
// SetEACL sets the extended ACL table
|
|
// in a binary format.
|
|
func (p *SetEACLArgs) SetEACL(v []byte) {
|
|
p.eacl = v
|
|
}
|
|
|
|
// SetSignature sets the eACL table structure
|
|
// owner's signature.
|
|
func (p *SetEACLArgs) SetSignature(v []byte) {
|
|
p.sig = v
|
|
}
|
|
|
|
// SetEACL invokes the call of set eACL method
|
|
// of NeoFS Container contract.
|
|
func (c *Client) SetEACL(args SetEACLArgs) error {
|
|
err := c.client.Invoke(
|
|
c.setEACLMethod,
|
|
args.eacl,
|
|
args.sig,
|
|
)
|
|
|
|
if err != nil {
|
|
return fmt.Errorf("could not invoke method (%s): %w", c.setEACLMethod, err)
|
|
}
|
|
return nil
|
|
}
|