| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- #include <flipper_application/flipper_application.h>
- #include "../../cli_helpers.h"
- #include "../../cli_shared_methods.h"
- #include "../../cli_plugin_interface.h"
- #include <lib/toolbox/args.h>
- #include "../../../types/token_info.h"
- #include "../../../services/config/constants.h"
- #include "../../../services/config/config.h"
- #include "../../../ui/scene_director.h"
- #include "formatters/table/list_output_formatter_table.h"
- #include "formatters/tsv/list_output_formatter_tsv.h"
- typedef void (*TOTP_CLI_LIST_HEADER_FORMATTER)();
- typedef void (*TOTP_CLI_LIST_FOOTER_FORMATTER)();
- typedef void (*TOTP_CLI_LIST_BODY_ITEM_FORMATTER)(size_t index, const TokenInfo* token_info);
- typedef struct {
- const TOTP_CLI_LIST_HEADER_FORMATTER header_formatter;
- const TOTP_CLI_LIST_FOOTER_FORMATTER footer_formatter;
- const TOTP_CLI_LIST_BODY_ITEM_FORMATTER body_item_formatter;
- } TotpCliListFormatter;
- static const TotpCliListFormatter available_formatters[] = {
- {.header_formatter = &list_output_formatter_print_header_table,
- .body_item_formatter = &list_output_formatter_print_body_item_table,
- .footer_formatter = &list_output_formatter_print_footer_table},
- {.header_formatter = &list_output_formatter_print_header_tsv,
- .body_item_formatter = &list_output_formatter_print_body_item_tsv,
- .footer_formatter = &list_output_formatter_print_footer_tsv}};
- 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);
- size_t total_count = totp_token_info_iterator_get_total_count(iterator_context);
- if(total_count <= 0) {
- TOTP_CLI_PRINTF("There are no tokens\r\n");
- return;
- }
- const TotpCliListFormatter* formatter = &available_formatters[0];
- FuriString* arg = furi_string_alloc();
- if(args_read_string_and_trim(args, arg) && furi_string_cmpi_str(arg, "--tsv") == 0) {
- formatter = &available_formatters[1];
- }
- furi_string_free(arg);
- TOTP_CLI_LOCK_UI(plugin_state);
- size_t original_index = totp_token_info_iterator_get_current_token_index(iterator_context);
- (*formatter->header_formatter)();
- for(size_t i = 0; i < total_count; i++) {
- totp_token_info_iterator_go_to(iterator_context, i);
- const TokenInfo* token_info = totp_token_info_iterator_get_current_token(iterator_context);
- (*formatter->body_item_formatter)(i, token_info);
- }
- (*formatter->footer_formatter)();
- totp_token_info_iterator_go_to(iterator_context, original_index);
- TOTP_CLI_UNLOCK_UI(plugin_state);
- }
- static const CliPlugin plugin = {.name = "TOTP CLI Plugin: List", .handle = &handle};
- static const FlipperAppPluginDescriptor plugin_descriptor = {
- .appid = PLUGIN_APP_ID,
- .ep_api_version = PLUGIN_API_VERSION,
- .entry_point = &plugin,
- };
- const FlipperAppPluginDescriptor* totp_cli_list_plugin_ep() {
- return &plugin_descriptor;
- }
|