Prathamesh Musale
3c75f56512
All checks were successful
Integration Tests / test-integration (pull_request) Successful in 3m42s
Build / build (pull_request) Successful in 3m56s
E2E Tests / test-e2e (pull_request) Successful in 5m11s
Unit Tests / test-unit (pull_request) Successful in 2m4s
SDK Tests / sdk_tests_nameservice_expiry (pull_request) Successful in 9m42s
SDK Tests / sdk_tests_authority_auctions (pull_request) Successful in 15m24s
SDK Tests / sdk_tests (pull_request) Successful in 21m10s
92 lines
2.1 KiB
Go
92 lines
2.1 KiB
Go
package keeper
|
|
|
|
import (
|
|
"time"
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
"git.vdb.to/cerc-io/laconicd/x/registry"
|
|
)
|
|
|
|
// InitGenesis initializes the module state from a genesis state.
|
|
func (k *Keeper) InitGenesis(ctx sdk.Context, data *registry.GenesisState) error {
|
|
if err := k.Params.Set(ctx, data.Params); err != nil {
|
|
return err
|
|
}
|
|
|
|
for _, record := range data.Records {
|
|
if err := k.SaveRecord(ctx, record); err != nil {
|
|
return err
|
|
}
|
|
|
|
// Add to record expiry queue if expiry time is in the future.
|
|
expiryTime, err := time.Parse(time.RFC3339, record.ExpiryTime)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if expiryTime.After(ctx.BlockTime()) {
|
|
if err := k.insertRecordExpiryQueue(ctx, record); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
readableRecord := record.ToReadableRecord()
|
|
if err := k.processAttributes(ctx, readableRecord.Attributes, record.Id); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
for _, authority := range data.Authorities {
|
|
// Only import authorities that are marked active.
|
|
if authority.Entry.Status == registry.AuthorityActive {
|
|
if err := k.SaveNameAuthority(ctx, authority.Name, authority.Entry); err != nil {
|
|
return err
|
|
}
|
|
|
|
// Add authority name to expiry queue.
|
|
if err := k.insertAuthorityExpiryQueue(ctx, authority.Name, authority.Entry.ExpiryTime); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
|
|
for _, nameEntry := range data.Names {
|
|
if err := k.SaveNameRecord(ctx, nameEntry.Name, nameEntry.Entry.Latest.Id); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// ExportGenesis exports the module state to a genesis state.
|
|
func (k *Keeper) ExportGenesis(ctx sdk.Context) (*registry.GenesisState, error) {
|
|
params, err := k.Params.Get(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
records, _, err := k.PaginatedListRecords(ctx, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
authorityEntries, err := k.ListNameAuthorityRecords(ctx, "")
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
names, err := k.ListNameRecords(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return ®istry.GenesisState{
|
|
Params: params,
|
|
Records: records,
|
|
Authorities: authorityEntries,
|
|
Names: names,
|
|
}, nil
|
|
}
|