forked from TrueCloudLab/frostfs-contract
[#74] reputation: Support notary disabled work flow
Signed-off-by: Alex Vanin <alexey@nspcc.ru>
This commit is contained in:
parent
2672e663a0
commit
2cc9c4fc66
1 changed files with 30 additions and 2 deletions
|
@ -50,9 +50,24 @@ func Migrate(script []byte, manifest []byte) bool {
|
||||||
|
|
||||||
func Put(epoch int, peerID []byte, value []byte) {
|
func Put(epoch int, peerID []byte, value []byte) {
|
||||||
ctx := storage.GetContext()
|
ctx := storage.GetContext()
|
||||||
|
notaryDisabled := storage.Get(ctx, notaryDisabledKey).(bool)
|
||||||
|
|
||||||
multiaddr := common.AlphabetAddress()
|
var ( // for invocation collection without notary
|
||||||
if !runtime.CheckWitness(multiaddr) {
|
alphabet []common.IRNode
|
||||||
|
nodeKey []byte
|
||||||
|
alphabetCall bool
|
||||||
|
)
|
||||||
|
|
||||||
|
if notaryDisabled {
|
||||||
|
alphabet = common.AlphabetNodes()
|
||||||
|
nodeKey = common.InnerRingInvoker(alphabet)
|
||||||
|
alphabetCall = len(nodeKey) != 0
|
||||||
|
} else {
|
||||||
|
multiaddr := common.AlphabetAddress()
|
||||||
|
alphabetCall = runtime.CheckWitness(multiaddr)
|
||||||
|
}
|
||||||
|
|
||||||
|
if !alphabetCall {
|
||||||
runtime.Notify("reputationPut", epoch, peerID, value)
|
runtime.Notify("reputationPut", epoch, peerID, value)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
@ -63,6 +78,18 @@ func Put(epoch int, peerID []byte, value []byte) {
|
||||||
reputationValues = append(reputationValues, value)
|
reputationValues = append(reputationValues, value)
|
||||||
|
|
||||||
rawValues := std.Serialize(reputationValues)
|
rawValues := std.Serialize(reputationValues)
|
||||||
|
|
||||||
|
if notaryDisabled {
|
||||||
|
threshold := len(alphabet)*2/3 + 1
|
||||||
|
|
||||||
|
n := common.Vote(ctx, id, nodeKey)
|
||||||
|
if n < threshold {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
common.RemoveVotes(ctx, id)
|
||||||
|
}
|
||||||
|
|
||||||
storage.Put(ctx, id, rawValues)
|
storage.Put(ctx, id, rawValues)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -93,6 +120,7 @@ func ListByEpoch(epoch int) [][]byte {
|
||||||
|
|
||||||
ignore := [][]byte{
|
ignore := [][]byte{
|
||||||
[]byte(common.OwnerKey),
|
[]byte(common.OwnerKey),
|
||||||
|
[]byte(notaryDisabledKey),
|
||||||
}
|
}
|
||||||
|
|
||||||
loop:
|
loop:
|
||||||
|
|
Loading…
Reference in a new issue