forked from TrueCloudLab/frostfs-node
819d80a7a9
Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
48 lines
1.1 KiB
Go
48 lines
1.1 KiB
Go
package audit
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/morph/client"
|
|
auditAPI "github.com/nspcc-dev/neofs-sdk-go/audit"
|
|
)
|
|
|
|
// ResultID is an identity of audit result inside audit contract.
|
|
type ResultID []byte
|
|
|
|
var errUnsupported = errors.New("unsupported structure version")
|
|
|
|
// PutPrm groups parameters of PutAuditResult operation.
|
|
type PutPrm struct {
|
|
result *auditAPI.Result
|
|
|
|
client.InvokePrmOptional
|
|
}
|
|
|
|
// SetResult sets audit result.
|
|
func (p *PutPrm) SetResult(result *auditAPI.Result) {
|
|
p.result = result
|
|
}
|
|
|
|
// PutAuditResult saves passed audit result structure in NeoFS system
|
|
// through Audit contract call.
|
|
//
|
|
// Returns encountered error that caused the saving to interrupt.
|
|
func (c *Client) PutAuditResult(p PutPrm) error {
|
|
rawResult, err := p.result.Marshal()
|
|
if err != nil {
|
|
return fmt.Errorf("could not marshal audit result: %w", err)
|
|
}
|
|
|
|
prm := client.InvokePrm{}
|
|
prm.SetMethod(putResultMethod)
|
|
prm.SetArgs(rawResult)
|
|
prm.InvokePrmOptional = p.InvokePrmOptional
|
|
|
|
err = c.client.Invoke(prm)
|
|
if err != nil {
|
|
return fmt.Errorf("could not invoke method (%s): %w", putResultMethod, err)
|
|
}
|
|
return nil
|
|
}
|