From 74c82de4726cf8f6e2a8b330ebf5e3a84af1ffd1 Mon Sep 17 00:00:00 2001 From: Carlosokumu Date: Mon, 24 Mar 2025 12:29:23 +0300 Subject: [PATCH] add check for if public key exists,then explicitly set flag_account_created --- handlers/application/menuhandler.go | 22 ++++++++++++++++++++++ services/registration/root.vis | 2 ++ 2 files changed, 24 insertions(+) diff --git a/handlers/application/menuhandler.go b/handlers/application/menuhandler.go index e2d8751..d25cad0 100644 --- a/handlers/application/menuhandler.go +++ b/handlers/application/menuhandler.go @@ -242,6 +242,28 @@ func (h *MenuHandlers) CreateAccount(ctx context.Context, sym string, input []by return res, nil } +func (h *MenuHandlers) CheckAccountCreated(ctx context.Context, sym string, input []byte) (resource.Result, error) { + var res resource.Result + flag_account_created, _ := h.flagManager.GetFlag("flag_account_created") + + store := h.userdataStore + + sessionId, ok := ctx.Value("SessionId").(string) + if !ok { + return res, fmt.Errorf("missing session") + } + + _, err := store.ReadEntry(ctx, sessionId, storedb.DATA_PUBLIC_KEY) + if err != nil { + if !db.IsNotFound(err) { + return res, err + } + return res, nil + } + res.FlagSet = append(res.FlagSet, flag_account_created) + return res, nil +} + // ResetValidPin resets the flag_valid_pin flag. func (h *MenuHandlers) ResetValidPin(ctx context.Context, sym string, input []byte) (resource.Result, error) { var res resource.Result diff --git a/services/registration/root.vis b/services/registration/root.vis index 3c78bea..c57f31c 100644 --- a/services/registration/root.vis +++ b/services/registration/root.vis @@ -1,5 +1,7 @@ LOAD check_blocked_status 1 RELOAD check_blocked_status +LOAD check_account_created 2 +RELOAD check_account_created CATCH blocked_account flag_account_blocked 1 CATCH select_language flag_language_set 0 CATCH terms flag_account_created 0