-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
It's a kludge until we have some proper management node-side, but domains must be renewed for the system to work. Signed-off-by: Roman Khimov <[email protected]>
- Loading branch information
1 parent
4c812b6
commit 9a3b6b6
Showing
4 changed files
with
92 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
package morph | ||
|
||
import ( | ||
"errors" | ||
"strings" | ||
|
||
"github.com/nspcc-dev/neo-go/pkg/io" | ||
"github.com/nspcc-dev/neo-go/pkg/rpcclient/nep11" | ||
"github.com/nspcc-dev/neo-go/pkg/rpcclient/unwrap" | ||
"github.com/nspcc-dev/neo-go/pkg/smartcontract/callflag" | ||
"github.com/nspcc-dev/neo-go/pkg/vm/emit" | ||
"github.com/spf13/cobra" | ||
"github.com/spf13/viper" | ||
) | ||
|
||
const ( | ||
recursiveFlag = "recursive" | ||
) | ||
|
||
func renewDomain(cmd *cobra.Command, _ []string) error { | ||
dom, err := cmd.Flags().GetString(nameDomainFlag) | ||
if err != nil { | ||
return err | ||
} | ||
recursive, _ := cmd.Flags().GetBool(recursiveFlag) | ||
wCtx, err := newInitializeContext(cmd, viper.GetViper()) | ||
if err != nil { | ||
return err | ||
} | ||
defer wCtx.close() | ||
nns, err := wCtx.Client.GetContractStateByID(1) | ||
if err != nil { | ||
return err | ||
} | ||
var domains = make([]string, 0, 1) | ||
if recursive { | ||
var n11r = nep11.NewNonDivisibleReader(wCtx.ReadOnlyInvoker, nns.Hash) | ||
tokIter, err := n11r.Tokens() | ||
if err != nil { | ||
return err | ||
} | ||
for toks, err := tokIter.Next(10); len(toks) != 0 && err == nil; toks, err = tokIter.Next(10) { | ||
for i := range toks { | ||
var name = string(toks[i]) | ||
if name != dom && !strings.HasSuffix(name, "."+dom) { | ||
continue | ||
} | ||
domains = append(domains, name) | ||
} | ||
} | ||
} else { | ||
avail, err := unwrap.Bool(wCtx.ReadOnlyInvoker.Call(nns.Hash, "isAvailable")) | ||
if err == nil && avail { | ||
return errors.New("domain is not registered or expired") | ||
} | ||
domains = append(domains, dom) | ||
} | ||
|
||
bw := io.NewBufBinWriter() | ||
for i := range domains { | ||
emit.AppCall(bw.BinWriter, nns.Hash, "renew", callflag.All, domains[i]) | ||
if bw.Err != nil { | ||
return bw.Err | ||
} | ||
// Default registration price is 10 GAS, adding more domains | ||
// into the script makes test execution to fail. | ||
if err := wCtx.sendConsensusTx(bw.Bytes()); err != nil { | ||
return err | ||
} | ||
bw.Reset() | ||
} | ||
return wCtx.awaitTx() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters