| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- #include "cli_shared_methods.h"
- #include <cli/cli.h>
- #include <lib/toolbox/args.h>
- #include "cli_helpers.h"
- #include "../types/plugin_event.h"
- bool totp_cli_ensure_authenticated(const PluginState* plugin_state, PipeSide* pipe) {
- if(plugin_state->current_scene == TotpSceneAuthentication) {
- TOTP_CLI_PRINTF("Pleases enter PIN on your flipper device\r\n");
- while((plugin_state->current_scene == TotpSceneAuthentication ||
- plugin_state->current_scene == TotpSceneNone) &&
- !cli_is_pipe_broken_or_is_etx_next_char(pipe)) {
- furi_delay_ms(100);
- }
- TOTP_CLI_DELETE_LAST_LINE();
- if(plugin_state->current_scene == TotpSceneAuthentication || //-V560
- plugin_state->current_scene == TotpSceneNone) { //-V560
- TOTP_CLI_PRINTF_INFO("Cancelled by user\r\n");
- return false;
- }
- }
- return true;
- }
- void totp_cli_force_close_app(void* ctx) {
- FuriMessageQueue* event_queue = ctx;
- PluginEvent event = {.type = EventForceCloseApp};
- furi_message_queue_put(event_queue, &event, FuriWaitForever);
- }
- bool totp_cli_read_line(PipeSide* pipe, FuriString* out_str, bool mask_user_input) {
- uint8_t c;
- while(pipe_receive(pipe, &c, 1) == 1) {
- if(c == CliKeyEsc) {
- // Some keys generating escape-sequences
- // We need to ignore them as we care about alpha-numerics only
- uint8_t c2;
- pipe_receive(pipe, &c2, 1);
- pipe_receive(pipe, &c2, 1);
- } else if(c == CliKeyETX) {
- printf("\r\n");
- return false;
- } else if(
- (c >= '0' && c <= '9') || (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') ||
- c == '/' || c == '=' || c == '+') {
- if(mask_user_input) {
- putc('*', stdout);
- } else {
- putc(c, stdout);
- }
- fflush(stdout);
- furi_string_push_back(out_str, c);
- } else if(c == CliKeyBackspace || c == CliKeyDEL) {
- size_t out_str_size = furi_string_size(out_str);
- if(out_str_size > 0) {
- TOTP_CLI_DELETE_LAST_CHAR();
- furi_string_left(out_str, out_str_size - 1);
- }
- } else if(c == CliKeyCR) {
- printf("\r\n");
- break;
- }
- }
- return true;
- }
- bool args_read_uint8_and_trim(FuriString* args, uint8_t* value) {
- int int_value;
- if(!args_read_int_and_trim(args, &int_value) || int_value < 0 || int_value > UINT8_MAX) {
- return false;
- }
- *value = (uint8_t)int_value;
- return true;
- }
- void furi_string_secure_free(FuriString* str) {
- for(long i = furi_string_size(str) - 1; i >= 0; i--) {
- furi_string_set_char(str, i, '\0');
- }
- furi_string_free(str);
- }
- void totp_cli_printf_missed_argument_value(char* arg) {
- TOTP_CLI_PRINTF_ERROR("Missed or incorrect value for argument \"%s\"\r\n", arg);
- }
- void totp_cli_printf_unknown_argument(const FuriString* arg) {
- TOTP_CLI_PRINTF("Unknown argument \"%s\"\r\n", furi_string_get_cstr(arg));
- }
|