mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-09 05:49:09 -07:00
95 lines
3.5 KiB
C
95 lines
3.5 KiB
C
#include <flipper_application/flipper_application.h>
|
|
#include <lib/toolbox/args.h>
|
|
#include "../../cli_helpers.h"
|
|
#include "../../cli_shared_methods.h"
|
|
#include "../../cli_plugin_interface.h"
|
|
#include "../../../services/config/config.h"
|
|
#include "../../../ui/scene_director.h"
|
|
|
|
#define TOTP_CLI_COMMAND_DELETE_ARG_FORCE_PREFIX "-f"
|
|
|
|
static void handle(PluginState* plugin_state, FuriString* args, Cli* cli) {
|
|
if(!totp_cli_ensure_authenticated(plugin_state, cli)) {
|
|
return;
|
|
}
|
|
|
|
TokenInfoIteratorContext* iterator_context =
|
|
totp_config_get_token_iterator_context(plugin_state);
|
|
|
|
int token_number;
|
|
if(!args_read_int_and_trim(args, &token_number) || token_number <= 0 ||
|
|
(size_t)token_number > totp_token_info_iterator_get_total_count(iterator_context)) {
|
|
TOTP_CLI_PRINT_INVALID_ARGUMENTS();
|
|
return;
|
|
}
|
|
|
|
FuriString* temp_str = furi_string_alloc();
|
|
bool confirm_needed = true;
|
|
if(args_read_string_and_trim(args, temp_str)) {
|
|
if(furi_string_cmpi_str(temp_str, TOTP_CLI_COMMAND_DELETE_ARG_FORCE_PREFIX) == 0) {
|
|
confirm_needed = false;
|
|
} else {
|
|
totp_cli_printf_unknown_argument(temp_str);
|
|
TOTP_CLI_PRINT_INVALID_ARGUMENTS();
|
|
furi_string_free(temp_str);
|
|
return;
|
|
}
|
|
}
|
|
furi_string_free(temp_str);
|
|
|
|
TOTP_CLI_LOCK_UI(plugin_state);
|
|
|
|
size_t original_token_index =
|
|
totp_token_info_iterator_get_current_token_index(iterator_context);
|
|
totp_token_info_iterator_go_to(iterator_context, token_number - 1);
|
|
const TokenInfo* token_info = totp_token_info_iterator_get_current_token(iterator_context);
|
|
const char* token_info_name = furi_string_get_cstr(token_info->name);
|
|
|
|
bool confirmed = !confirm_needed;
|
|
if(confirm_needed) {
|
|
TOTP_CLI_PRINTF_WARNING("WARNING!\r\n");
|
|
TOTP_CLI_PRINTF_WARNING(
|
|
"TOKEN \"%s\" WILL BE PERMANENTLY DELETED WITHOUT ABILITY TO RECOVER IT.\r\n",
|
|
token_info_name);
|
|
TOTP_CLI_PRINTF_WARNING("Confirm? [y/n]\r\n");
|
|
fflush(stdout);
|
|
char user_pick;
|
|
do {
|
|
user_pick = tolower(cli_getc(cli));
|
|
} while(user_pick != 'y' && user_pick != 'n' && user_pick != CliSymbolAsciiCR &&
|
|
user_pick != CliSymbolAsciiETX && user_pick != CliSymbolAsciiEsc);
|
|
|
|
confirmed = user_pick == 'y' || user_pick == CliSymbolAsciiCR;
|
|
}
|
|
|
|
if(confirmed) {
|
|
TOTP_CLI_PRINT_PROCESSING();
|
|
if(totp_token_info_iterator_remove_current_token_info(iterator_context)) {
|
|
TOTP_CLI_DELETE_LAST_LINE();
|
|
TOTP_CLI_PRINTF_SUCCESS(
|
|
"Token \"%s\" has been successfully deleted\r\n", token_info_name);
|
|
totp_token_info_iterator_go_to(iterator_context, 0);
|
|
} else {
|
|
TOTP_CLI_DELETE_LAST_LINE();
|
|
TOTP_CLI_PRINT_ERROR_UPDATING_CONFIG_FILE();
|
|
totp_token_info_iterator_go_to(iterator_context, original_token_index);
|
|
}
|
|
} else {
|
|
TOTP_CLI_PRINTF_INFO("User has not confirmed\r\n");
|
|
totp_token_info_iterator_go_to(iterator_context, original_token_index);
|
|
}
|
|
|
|
TOTP_CLI_UNLOCK_UI(plugin_state);
|
|
}
|
|
|
|
static const CliPlugin plugin = {.name = "TOTP CLI Plugin: Delete", .handle = &handle};
|
|
|
|
static const FlipperAppPluginDescriptor plugin_descriptor = {
|
|
.appid = PLUGIN_APP_ID,
|
|
.ep_api_version = PLUGIN_API_VERSION,
|
|
.entry_point = &plugin,
|
|
};
|
|
|
|
const FlipperAppPluginDescriptor* totp_cli_delete_plugin_ep() {
|
|
return &plugin_descriptor;
|
|
} |