2024-02-15 07:08:32 +00:00
|
|
|
package keeper
|
|
|
|
|
|
|
|
import (
|
2024-02-26 05:42:36 +00:00
|
|
|
"time"
|
|
|
|
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
2024-02-15 07:08:32 +00:00
|
|
|
|
2024-04-01 09:57:26 +00:00
|
|
|
"git.vdb.to/cerc-io/laconicd/x/registry"
|
2024-02-15 07:08:32 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// InitGenesis initializes the module state from a genesis state.
|
2024-02-26 05:42:36 +00:00
|
|
|
func (k *Keeper) InitGenesis(ctx sdk.Context, data *registry.GenesisState) error {
|
2024-02-15 07:08:32 +00:00
|
|
|
if err := k.Params.Set(ctx, data.Params); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2024-02-26 05:42:36 +00:00
|
|
|
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 {
|
2024-02-26 06:16:09 +00:00
|
|
|
return err
|
2024-02-26 05:42:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if expiryTime.After(ctx.BlockTime()) {
|
2024-02-26 06:16:09 +00:00
|
|
|
if err := k.insertRecordExpiryQueue(ctx, record); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2024-02-26 05:42:36 +00:00
|
|
|
}
|
|
|
|
}
|
2024-02-15 07:08:32 +00:00
|
|
|
|
2024-02-26 05:42:36 +00:00
|
|
|
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.
|
2024-02-26 06:16:09 +00:00
|
|
|
if err := k.insertAuthorityExpiryQueue(ctx, authority.Name, authority.Entry.ExpiryTime); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2024-02-26 05:42:36 +00:00
|
|
|
}
|
|
|
|
}
|
2024-02-15 07:08:32 +00:00
|
|
|
|
2024-02-26 05:42:36 +00:00
|
|
|
for _, nameEntry := range data.Names {
|
|
|
|
if err := k.SaveNameRecord(ctx, nameEntry.Name, nameEntry.Entry.Latest.Id); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2024-02-15 07:08:32 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ExportGenesis exports the module state to a genesis state.
|
2024-02-26 05:42:36 +00:00
|
|
|
func (k *Keeper) ExportGenesis(ctx sdk.Context) (*registry.GenesisState, error) {
|
2024-02-15 07:08:32 +00:00
|
|
|
params, err := k.Params.Get(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-02-26 05:42:36 +00:00
|
|
|
records, err := k.ListRecords(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-07-24 09:14:39 +00:00
|
|
|
authorityEntries, err := k.ListNameAuthorityRecords(ctx, "")
|
2024-02-26 05:42:36 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2024-02-15 07:08:32 +00:00
|
|
|
|
2024-02-26 05:42:36 +00:00
|
|
|
names, err := k.ListNameRecords(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2024-02-15 07:08:32 +00:00
|
|
|
|
|
|
|
return ®istry.GenesisState{
|
2024-02-26 05:42:36 +00:00
|
|
|
Params: params,
|
|
|
|
Records: records,
|
|
|
|
Authorities: authorityEntries,
|
|
|
|
Names: names,
|
2024-02-15 07:08:32 +00:00
|
|
|
}, nil
|
|
|
|
}
|