| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- // Original idea: https://github.com/br0ziliy
- #include "cli.h"
- #include <lib/toolbox/args.h>
- #include "cli_helpers.h"
- #include "commands/list/list.h"
- #include "commands/add/add.h"
- #include "commands/update/update.h"
- #include "commands/delete/delete.h"
- #include "commands/timezone/timezone.h"
- #include "commands/help/help.h"
- #include "commands/move/move.h"
- #include "commands/pin/pin.h"
- #include "commands/notification/notification.h"
- #include "commands/reset/reset.h"
- #include "commands/automation/automation.h"
- #include "commands/details/details.h"
- struct TotpCliContext {
- PluginState* plugin_state;
- };
- static void totp_cli_print_unknown_command(const FuriString* unknown_command) {
- TOTP_CLI_PRINTF_ERROR(
- "Command \"%s\" is unknown. Use \"" TOTP_CLI_COMMAND_HELP
- "\" command to get list of available commands.",
- furi_string_get_cstr(unknown_command));
- }
- static void totp_cli_handler(Cli* cli, FuriString* args, void* context) {
- TotpCliContext* cli_context = context;
- PluginState* plugin_state = cli_context->plugin_state;
- FuriString* cmd = furi_string_alloc();
- args_read_string_and_trim(args, cmd);
- if(furi_string_cmp_str(cmd, TOTP_CLI_COMMAND_HELP) == 0 ||
- furi_string_cmp_str(cmd, TOTP_CLI_COMMAND_HELP_ALT) == 0 ||
- furi_string_cmp_str(cmd, TOTP_CLI_COMMAND_HELP_ALT2) == 0 || furi_string_empty(cmd)) {
- totp_cli_command_help_handle();
- } else if(
- furi_string_cmp_str(cmd, TOTP_CLI_COMMAND_ADD) == 0 ||
- furi_string_cmp_str(cmd, TOTP_CLI_COMMAND_ADD_ALT) == 0 ||
- furi_string_cmp_str(cmd, TOTP_CLI_COMMAND_ADD_ALT2) == 0) {
- totp_cli_command_add_handle(plugin_state, args, cli);
- } else if(
- furi_string_cmp_str(cmd, TOTP_CLI_COMMAND_LIST) == 0 ||
- furi_string_cmp_str(cmd, TOTP_CLI_COMMAND_LIST_ALT) == 0) {
- totp_cli_command_list_handle(plugin_state, cli);
- } else if(
- furi_string_cmp_str(cmd, TOTP_CLI_COMMAND_DELETE) == 0 ||
- furi_string_cmp_str(cmd, TOTP_CLI_COMMAND_DELETE_ALT) == 0) {
- totp_cli_command_delete_handle(plugin_state, args, cli);
- } else if(
- furi_string_cmp_str(cmd, TOTP_CLI_COMMAND_TIMEZONE) == 0 ||
- furi_string_cmp_str(cmd, TOTP_CLI_COMMAND_TIMEZONE_ALT) == 0) {
- totp_cli_command_timezone_handle(plugin_state, args, cli);
- } else if(
- furi_string_cmp_str(cmd, TOTP_CLI_COMMAND_MOVE) == 0 ||
- furi_string_cmp_str(cmd, TOTP_CLI_COMMAND_MOVE_ALT) == 0) {
- totp_cli_command_move_handle(plugin_state, args, cli);
- } else if(furi_string_cmp_str(cmd, TOTP_CLI_COMMAND_PIN) == 0) {
- totp_cli_command_pin_handle(plugin_state, args, cli);
- } else if(furi_string_cmp_str(cmd, TOTP_CLI_COMMAND_NOTIFICATION) == 0) {
- totp_cli_command_notification_handle(plugin_state, args, cli);
- } else if(furi_string_cmp_str(cmd, TOTP_CLI_COMMAND_AUTOMATION) == 0) {
- totp_cli_command_automation_handle(plugin_state, args, cli);
- } else if(furi_string_cmp_str(cmd, TOTP_CLI_COMMAND_RESET) == 0) {
- totp_cli_command_reset_handle(plugin_state, cli);
- } else if(furi_string_cmp_str(cmd, TOTP_CLI_COMMAND_UPDATE) == 0) {
- totp_cli_command_update_handle(plugin_state, args, cli);
- } else if(
- furi_string_cmp_str(cmd, TOTP_CLI_COMMAND_DETAILS) == 0 ||
- furi_string_cmp_str(cmd, TOTP_CLI_COMMAND_DETAILS_ALT) == 0) {
- totp_cli_command_details_handle(plugin_state, args, cli);
- } else {
- totp_cli_print_unknown_command(cmd);
- }
- furi_string_free(cmd);
- }
- TotpCliContext* totp_cli_register_command_handler(PluginState* plugin_state) {
- Cli* cli = furi_record_open(RECORD_CLI);
- TotpCliContext* context = malloc(sizeof(TotpCliContext));
- furi_check(context != NULL);
- context->plugin_state = plugin_state;
- cli_add_command(
- cli, TOTP_CLI_COMMAND_NAME, CliCommandFlagParallelSafe, totp_cli_handler, context);
- furi_record_close(RECORD_CLI);
- return context;
- }
- void totp_cli_unregister_command_handler(TotpCliContext* context) {
- Cli* cli = furi_record_open(RECORD_CLI);
- cli_delete_command(cli, TOTP_CLI_COMMAND_NAME);
- furi_record_close(RECORD_CLI);
- free(context);
- }
|