2020-07-24 13:54:03 +00:00
|
|
|
package netmap
|
|
|
|
|
|
|
|
import (
|
2021-05-18 08:12:51 +00:00
|
|
|
"fmt"
|
2021-11-09 20:52:29 +00:00
|
|
|
|
2022-12-23 17:35:35 +00:00
|
|
|
"github.com/TrueCloudLab/frostfs-node/pkg/morph/client"
|
|
|
|
"github.com/TrueCloudLab/frostfs-sdk-go/netmap"
|
2020-07-24 13:54:03 +00:00
|
|
|
)
|
|
|
|
|
2022-01-31 11:58:55 +00:00
|
|
|
// AddPeerPrm groups parameters of AddPeer operation.
|
|
|
|
type AddPeerPrm struct {
|
2022-06-08 23:18:26 +00:00
|
|
|
nodeInfo netmap.NodeInfo
|
2021-11-10 10:44:19 +00:00
|
|
|
|
|
|
|
client.InvokePrmOptional
|
2020-07-24 13:54:03 +00:00
|
|
|
}
|
|
|
|
|
2022-01-31 11:58:55 +00:00
|
|
|
// SetNodeInfo sets new peer NodeInfo.
|
2022-06-08 23:18:26 +00:00
|
|
|
func (a *AddPeerPrm) SetNodeInfo(nodeInfo netmap.NodeInfo) {
|
2022-01-31 11:58:55 +00:00
|
|
|
a.nodeInfo = nodeInfo
|
2020-07-24 13:54:03 +00:00
|
|
|
}
|
|
|
|
|
2022-01-31 11:58:55 +00:00
|
|
|
// AddPeer registers peer in NeoFS network through
|
|
|
|
// Netmap contract call.
|
|
|
|
func (c *Client) AddPeer(p AddPeerPrm) error {
|
2022-05-13 18:35:37 +00:00
|
|
|
var method = addPeerMethod
|
|
|
|
|
|
|
|
if c.client.WithNotary() && c.client.IsAlpha() {
|
|
|
|
// In notary environments Alphabet must calls AddPeerIR method instead of AddPeer.
|
|
|
|
// It differs from AddPeer only by name, so we can do this in the same form.
|
2022-12-23 17:35:35 +00:00
|
|
|
// See https://github.com/nspcc-dev/frostfs-contract/issues/154.
|
2022-05-13 18:35:37 +00:00
|
|
|
method += "IR"
|
|
|
|
}
|
|
|
|
|
2022-01-31 11:58:55 +00:00
|
|
|
prm := client.InvokePrm{}
|
2022-05-13 18:35:37 +00:00
|
|
|
prm.SetMethod(method)
|
2022-06-08 23:18:26 +00:00
|
|
|
prm.SetArgs(p.nodeInfo.Marshal())
|
2022-01-31 11:58:55 +00:00
|
|
|
prm.InvokePrmOptional = p.InvokePrmOptional
|
2021-11-09 20:52:29 +00:00
|
|
|
|
|
|
|
if err := c.client.Invoke(prm); err != nil {
|
2022-05-13 18:35:37 +00:00
|
|
|
return fmt.Errorf("could not invoke method (%s): %w", method, err)
|
2021-05-18 08:12:51 +00:00
|
|
|
}
|
|
|
|
return nil
|
2020-07-24 13:54:03 +00:00
|
|
|
}
|