71b87155ef
Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
36 lines
922 B
Go
36 lines
922 B
Go
package container
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
|
|
"github.com/nspcc-dev/neofs-api-go/pkg"
|
|
"github.com/nspcc-dev/neofs-api-go/pkg/container"
|
|
"github.com/nspcc-dev/neofs-api-go/pkg/owner"
|
|
)
|
|
|
|
var errNilPolicy = errors.New("placement policy is nil")
|
|
|
|
// CheckFormat conducts an initial check of the v2 container data.
|
|
//
|
|
// It is expected that if a container fails this test,
|
|
// it will not be inner-ring approved.
|
|
func CheckFormat(c *container.Container) error {
|
|
if c.PlacementPolicy() == nil {
|
|
return errNilPolicy
|
|
}
|
|
|
|
if err := pkg.IsSupportedVersion(c.Version()); err != nil {
|
|
return fmt.Errorf("incorrect version: %w", err)
|
|
}
|
|
|
|
if ln := len(c.OwnerID().ToV2().GetValue()); ln != owner.NEO3WalletSize {
|
|
return fmt.Errorf("incorrect owner identifier: expected length %d != %d", owner.NEO3WalletSize, ln)
|
|
}
|
|
|
|
if _, err := c.NonceUUID(); err != nil {
|
|
return fmt.Errorf("incorrect nonce: %w", err)
|
|
}
|
|
|
|
return nil
|
|
}
|