2023-11-20 14:03:19 +00:00
|
|
|
package frostfsid
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
frostfsidclient "git.frostfs.info/TrueCloudLab/frostfs-contract/frostfsid/client"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/morph/client"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
|
|
|
)
|
|
|
|
|
2024-05-02 16:45:09 +00:00
|
|
|
const (
|
|
|
|
methodGetSubject = "getSubject"
|
|
|
|
methodGetSubjectExtended = "getSubjectExtended"
|
|
|
|
)
|
2023-11-20 14:03:19 +00:00
|
|
|
|
|
|
|
func (c *Client) GetSubject(addr util.Uint160) (*frostfsidclient.Subject, error) {
|
|
|
|
prm := client.TestInvokePrm{}
|
|
|
|
prm.SetMethod(methodGetSubject)
|
|
|
|
prm.SetArgs(addr)
|
|
|
|
|
|
|
|
res, err := c.client.TestInvoke(prm)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("could not perform test invocation (%s): %w", methodGetSubject, err)
|
|
|
|
}
|
|
|
|
|
2024-07-02 12:11:35 +00:00
|
|
|
subj, err := frostfsidclient.ParseSubject(res)
|
2023-11-20 14:03:19 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("could not parse test invocation result (%s): %w", methodGetSubject, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return subj, nil
|
|
|
|
}
|
|
|
|
|
2024-05-02 16:45:09 +00:00
|
|
|
func (c *Client) GetSubjectExtended(addr util.Uint160) (*frostfsidclient.SubjectExtended, error) {
|
|
|
|
prm := client.TestInvokePrm{}
|
|
|
|
prm.SetMethod(methodGetSubjectExtended)
|
|
|
|
prm.SetArgs(addr)
|
|
|
|
|
|
|
|
res, err := c.client.TestInvoke(prm)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("could not perform test invocation (%s): %w", methodGetSubject, err)
|
|
|
|
}
|
|
|
|
|
2024-07-02 12:11:35 +00:00
|
|
|
subj, err := frostfsidclient.ParseSubjectExtended(res)
|
2024-05-02 16:45:09 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("could not parse test invocation result (%s): %w", methodGetSubject, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return subj, nil
|
|
|
|
}
|