2020-08-31 07:46:10 +00:00
|
|
|
package owner
|
|
|
|
|
|
|
|
import (
|
2020-09-01 14:28:40 +00:00
|
|
|
"github.com/mr-tron/base58"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/encoding/address"
|
2020-08-31 08:15:46 +00:00
|
|
|
"github.com/nspcc-dev/neofs-api-go/v2/refs"
|
2020-08-31 07:46:10 +00:00
|
|
|
)
|
|
|
|
|
2020-09-10 09:57:29 +00:00
|
|
|
// ID represents v2-compatible owner identifier.
|
|
|
|
type ID refs.OwnerID
|
|
|
|
|
|
|
|
// NewIDFromV2 wraps v2 OwnerID message to ID.
|
|
|
|
func NewIDFromV2(idV2 *refs.OwnerID) *ID {
|
|
|
|
return (*ID)(idV2)
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewID creates and initializes blank ID.
|
|
|
|
//
|
|
|
|
// Works similar as NewIDFromV2(new(OwnerID)).
|
|
|
|
func NewID() *ID {
|
|
|
|
return NewIDFromV2(new(refs.OwnerID))
|
2020-08-31 07:46:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SetNeo3Wallet sets owner identifier value to NEO3 wallet address.
|
2020-08-31 08:15:46 +00:00
|
|
|
func (id *ID) SetNeo3Wallet(v *NEO3Wallet) {
|
2020-09-10 09:57:29 +00:00
|
|
|
(*refs.OwnerID)(id).SetValue(v.Bytes())
|
2020-08-31 07:46:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ToV2 returns the v2 owner ID message.
|
2020-08-31 08:15:46 +00:00
|
|
|
func (id *ID) ToV2() *refs.OwnerID {
|
2020-09-10 09:57:29 +00:00
|
|
|
return (*refs.OwnerID)(id)
|
2020-08-31 07:46:10 +00:00
|
|
|
}
|
2020-09-01 14:28:40 +00:00
|
|
|
|
|
|
|
func (id *ID) String() string {
|
2020-09-10 09:57:29 +00:00
|
|
|
return base58.Encode((*refs.OwnerID)(id).GetValue())
|
2020-09-01 14:28:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func ScriptHashBE(id *ID) ([]byte, error) {
|
|
|
|
addr, err := address.StringToUint160(id.String())
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return addr.BytesBE(), nil
|
|
|
|
}
|