| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525 |
- #include <callback/flip_store_callback.h>
- bool flip_store_app_does_exist = false;
- // Callback for drawing the main screen
- void flip_store_view_draw_callback_main(Canvas *canvas, void *model)
- {
- UNUSED(model);
- canvas_set_font(canvas, FontSecondary);
- if (fhttp.state == INACTIVE)
- {
- canvas_draw_str(canvas, 0, 7, "Wifi Dev Board disconnected.");
- canvas_draw_str(canvas, 0, 17, "Please connect to the board.");
- canvas_draw_str(canvas, 0, 32, "If your board is connected,");
- canvas_draw_str(canvas, 0, 42, "make sure you have flashed");
- canvas_draw_str(canvas, 0, 52, "your WiFi Devboard with the");
- canvas_draw_str(canvas, 0, 62, "latest FlipperHTTP flash.");
- return;
- }
- if (!flip_store_sent_request)
- {
- flip_store_sent_request = true;
- if (!flip_store_install_app(canvas, categories[flip_store_category_index]))
- {
- canvas_clear(canvas);
- canvas_draw_str(canvas, 0, 10, "Failed to install app.");
- canvas_draw_str(canvas, 0, 60, "Press BACK to return.");
- }
- }
- else
- {
- if (flip_store_success)
- {
- if (fhttp.state == RECEIVING)
- {
- canvas_clear(canvas);
- canvas_draw_str(canvas, 0, 10, "Downloading app...");
- canvas_draw_str(canvas, 0, 60, "Please wait...");
- return;
- }
- else if (fhttp.state == IDLE)
- {
- canvas_clear(canvas);
- canvas_draw_str(canvas, 0, 10, "App installed successfully.");
- canvas_draw_str(canvas, 0, 60, "Press BACK to return.");
- }
- }
- else
- {
- canvas_clear(canvas);
- canvas_draw_str(canvas, 0, 10, "Failed to install app.");
- canvas_draw_str(canvas, 0, 60, "Press BACK to return.");
- }
- }
- }
- // Function to draw the message on the canvas with word wrapping
- void draw_description(Canvas *canvas, const char *description, int x, int y)
- {
- if (description == NULL || strlen(description) == 0)
- {
- FURI_LOG_E(TAG, "User message is NULL.");
- return;
- }
- if (!canvas)
- {
- FURI_LOG_E(TAG, "Canvas is NULL.");
- return;
- }
- size_t msg_length = strlen(description);
- size_t start = 0;
- int line_num = 0;
- char line[MAX_LINE_LENGTH + 1]; // Buffer for the current line (+1 for null terminator)
- while (start < msg_length && line_num < 4)
- {
- size_t remaining = msg_length - start;
- size_t len = (remaining > MAX_LINE_LENGTH) ? MAX_LINE_LENGTH : remaining;
- if (remaining > MAX_LINE_LENGTH)
- {
- // Find the last space within the first 'len' characters
- size_t last_space = len;
- while (last_space > 0 && description[start + last_space - 1] != ' ')
- {
- last_space--;
- }
- if (last_space > 0)
- {
- len = last_space; // Adjust len to the position of the last space
- }
- }
- // Copy the substring to 'line' and null-terminate it
- memcpy(line, description + start, len);
- line[len] = '\0'; // Ensure the string is null-terminated
- // Draw the string on the canvas
- // Adjust the y-coordinate based on the line number
- canvas_draw_str_aligned(canvas, x, y + line_num * 10, AlignLeft, AlignTop, line);
- // Update the start position for the next line
- start += len;
- // Skip any spaces to avoid leading spaces on the next line
- while (start < msg_length && description[start] == ' ')
- {
- start++;
- }
- // Increment the line number
- line_num++;
- }
- }
- void flip_store_view_draw_callback_app_list(Canvas *canvas, void *model)
- {
- UNUSED(model);
- canvas_clear(canvas);
- canvas_set_font(canvas, FontPrimary);
- char title[30];
- snprintf(title, 30, "%s (v.%s)", flip_catalog[app_selected_index].app_name, flip_catalog[app_selected_index].app_version);
- canvas_draw_str(canvas, 0, 10, title);
- canvas_set_font(canvas, FontSecondary);
- draw_description(canvas, flip_catalog[app_selected_index].app_description, 0, 13);
- if (flip_store_app_does_exist)
- {
- canvas_draw_icon(canvas, 0, 53, &I_ButtonLeft_4x7);
- canvas_draw_str_aligned(canvas, 7, 54, AlignLeft, AlignTop, "Delete");
- canvas_draw_icon(canvas, 45, 53, &I_ButtonBACK_10x8);
- canvas_draw_str_aligned(canvas, 57, 54, AlignLeft, AlignTop, "Back");
- }
- else
- {
- canvas_draw_icon(canvas, 0, 53, &I_ButtonBACK_10x8);
- canvas_draw_str_aligned(canvas, 12, 54, AlignLeft, AlignTop, "Back");
- }
- canvas_draw_icon(canvas, 90, 53, &I_ButtonRight_4x7);
- canvas_draw_str_aligned(canvas, 97, 54, AlignLeft, AlignTop, "Install");
- }
- bool flip_store_input_callback(InputEvent *event, void *context)
- {
- FlipStoreApp *app = (FlipStoreApp *)context;
- if (!app)
- {
- FURI_LOG_E(TAG, "FlipStoreApp is NULL");
- return false;
- }
- if (event->type == InputTypeShort)
- {
- if (event->key == InputKeyLeft && flip_store_app_does_exist)
- {
- // Left button clicked, delete the app
- view_dispatcher_switch_to_view(app->view_dispatcher, FlipStoreViewAppDelete);
- return true;
- }
- if (event->key == InputKeyRight)
- {
- // Right button clicked, download the app
- view_dispatcher_switch_to_view(app->view_dispatcher, FlipStoreViewMain);
- return true;
- }
- }
- else if (event->type == InputTypePress)
- {
- if (event->key == InputKeyBack)
- {
- // Back button clicked, switch to the previous view.
- view_dispatcher_switch_to_view(app->view_dispatcher, FlipStoreViewAppList);
- return true;
- }
- }
- return false;
- }
- void flip_store_text_updated_ssid(void *context)
- {
- FlipStoreApp *app = (FlipStoreApp *)context;
- if (!app)
- {
- FURI_LOG_E(TAG, "FlipStoreApp is NULL");
- return;
- }
- // store the entered text
- strncpy(app->uart_text_input_buffer_ssid, app->uart_text_input_temp_buffer_ssid, app->uart_text_input_buffer_size_ssid);
- // Ensure null-termination
- app->uart_text_input_buffer_ssid[app->uart_text_input_buffer_size_ssid - 1] = '\0';
- // update the variable item text
- if (app->variable_item_ssid)
- {
- variable_item_set_current_value_text(app->variable_item_ssid, app->uart_text_input_buffer_ssid);
- }
- // save the settings
- save_settings(app->uart_text_input_buffer_ssid, app->uart_text_input_buffer_pass);
- // if SSID and PASS are not empty, connect to the WiFi
- if (strlen(app->uart_text_input_buffer_ssid) > 0 && strlen(app->uart_text_input_buffer_pass) > 0)
- {
- // save wifi settings
- if (!flipper_http_save_wifi(app->uart_text_input_buffer_ssid, app->uart_text_input_buffer_pass))
- {
- FURI_LOG_E(TAG, "Failed to save WiFi settings");
- }
- }
- // switch to the settings view
- view_dispatcher_switch_to_view(app->view_dispatcher, FlipStoreViewSettings);
- }
- void flip_store_text_updated_pass(void *context)
- {
- FlipStoreApp *app = (FlipStoreApp *)context;
- if (!app)
- {
- FURI_LOG_E(TAG, "FlipStoreApp is NULL");
- return;
- }
- // store the entered text
- strncpy(app->uart_text_input_buffer_pass, app->uart_text_input_temp_buffer_pass, app->uart_text_input_buffer_size_pass);
- // Ensure null-termination
- app->uart_text_input_buffer_pass[app->uart_text_input_buffer_size_pass - 1] = '\0';
- // update the variable item text
- if (app->variable_item_pass)
- {
- variable_item_set_current_value_text(app->variable_item_pass, app->uart_text_input_buffer_pass);
- }
- // save the settings
- save_settings(app->uart_text_input_buffer_ssid, app->uart_text_input_buffer_pass);
- // if SSID and PASS are not empty, connect to the WiFi
- if (strlen(app->uart_text_input_buffer_ssid) > 0 && strlen(app->uart_text_input_buffer_pass) > 0)
- {
- // save wifi settings
- if (!flipper_http_save_wifi(app->uart_text_input_buffer_ssid, app->uart_text_input_buffer_pass))
- {
- FURI_LOG_E(TAG, "Failed to save WiFi settings");
- }
- }
- // switch to the settings view
- view_dispatcher_switch_to_view(app->view_dispatcher, FlipStoreViewSettings);
- }
- uint32_t callback_to_submenu(void *context)
- {
- if (!context)
- {
- FURI_LOG_E(TAG, "Context is NULL");
- return VIEW_NONE;
- }
- UNUSED(context);
- return FlipStoreViewSubmenu;
- }
- uint32_t callback_to_submenu_options(void *context)
- {
- if (!context)
- {
- FURI_LOG_E(TAG, "Context is NULL");
- return VIEW_NONE;
- }
- UNUSED(context);
- return FlipStoreViewSubmenuOptions;
- }
- uint32_t callback_to_app_list(void *context)
- {
- if (!context)
- {
- FURI_LOG_E(TAG, "Context is NULL");
- return VIEW_NONE;
- }
- UNUSED(context);
- flip_store_sent_request = false;
- flip_store_success = false;
- flip_store_saved_data = false;
- flip_store_saved_success = false;
- flip_store_app_does_exist = false;
- return FlipStoreViewAppList;
- }
- void settings_item_selected(void *context, uint32_t index)
- {
- FlipStoreApp *app = (FlipStoreApp *)context;
- if (!app)
- {
- FURI_LOG_E(TAG, "FlipStoreApp is NULL");
- return;
- }
- switch (index)
- {
- case 0: // Input SSID
- view_dispatcher_switch_to_view(app->view_dispatcher, FlipStoreViewTextInputSSID);
- break;
- case 1: // Input Password
- view_dispatcher_switch_to_view(app->view_dispatcher, FlipStoreViewTextInputPass);
- break;
- default:
- FURI_LOG_E(TAG, "Unknown configuration item index");
- break;
- }
- }
- void dialog_callback(DialogExResult result, void *context)
- {
- furi_assert(context);
- FlipStoreApp *app = (FlipStoreApp *)context;
- if (result == DialogExResultLeft) // No
- {
- view_dispatcher_switch_to_view(app->view_dispatcher, FlipStoreViewAppList);
- }
- else if (result == DialogExResultRight)
- {
- // delete the app then return to the app list
- if (!delete_app(flip_catalog[app_selected_index].app_id, categories[flip_store_category_index]))
- {
- // pop up a message
- popup_set_header(app->popup, "[ERROR]", 0, 0, AlignLeft, AlignTop);
- popup_set_text(app->popup, "Issue deleting app.", 0, 50, AlignLeft, AlignTop);
- view_dispatcher_switch_to_view(app->view_dispatcher, FlipStoreViewPopup);
- furi_delay_ms(2000); // delay for 2 seconds
- view_dispatcher_switch_to_view(app->view_dispatcher, FlipStoreViewAppList);
- }
- else
- {
- // pop up a message
- popup_set_header(app->popup, "[SUCCESS]", 0, 0, AlignLeft, AlignTop);
- popup_set_text(app->popup, "App deleted successfully.", 0, 50, AlignLeft, AlignTop);
- view_dispatcher_switch_to_view(app->view_dispatcher, FlipStoreViewPopup);
- furi_delay_ms(2000); // delay for 2 seconds
- view_dispatcher_switch_to_view(app->view_dispatcher, FlipStoreViewAppList);
- }
- }
- }
- void popup_callback(void *context)
- {
- FlipStoreApp *app = (FlipStoreApp *)context;
- if (!app)
- {
- FURI_LOG_E(TAG, "FlipStoreApp is NULL");
- return;
- }
- view_dispatcher_switch_to_view(app->view_dispatcher, FlipStoreViewSubmenu);
- }
- uint32_t callback_exit_app(void *context)
- {
- // Exit the application
- if (!context)
- {
- FURI_LOG_E(TAG, "Context is NULL");
- return VIEW_NONE;
- }
- UNUSED(context);
- return VIEW_NONE; // Return VIEW_NONE to exit the app
- }
- void callback_submenu_choices(void *context, uint32_t index)
- {
- FlipStoreApp *app = (FlipStoreApp *)context;
- if (!app)
- {
- FURI_LOG_E(TAG, "FlipStoreApp is NULL");
- return;
- }
- switch (index)
- {
- case FlipStoreSubmenuIndexMain:
- view_dispatcher_switch_to_view(app->view_dispatcher, FlipStoreViewMain);
- break;
- case FlipStoreSubmenuIndexAbout:
- view_dispatcher_switch_to_view(app->view_dispatcher, FlipStoreViewAbout);
- break;
- case FlipStoreSubmenuIndexSettings:
- view_dispatcher_switch_to_view(app->view_dispatcher, FlipStoreViewSettings);
- break;
- case FlipStoreSubmenuIndexOptions:
- view_dispatcher_switch_to_view(app->view_dispatcher, FlipStoreViewSubmenuOptions);
- break;
- case FlipStoreSubmenuIndexAppList:
- flip_store_category_index = 0;
- flip_store_app_does_exist = false;
- view_dispatcher_switch_to_view(app->view_dispatcher, FlipStoreViewAppList);
- break;
- case FlipStoreSubmenuIndexFirmwares:
- view_dispatcher_switch_to_view(app->view_dispatcher, FlipStoreViewFirmwares);
- break;
- case FlipStoreSubmenuIndexAppListBluetooth:
- flip_store_category_index = 0;
- flip_store_app_does_exist = false;
- view_dispatcher_switch_to_view(app->view_dispatcher, flip_store_handle_app_list(app, FlipStoreViewAppListBluetooth, "Bluetooth", &app->submenu_app_list_bluetooth));
- break;
- case FlipStoreSubmenuIndexAppListGames:
- flip_store_category_index = 1;
- flip_store_app_does_exist = false;
- view_dispatcher_switch_to_view(app->view_dispatcher, flip_store_handle_app_list(app, FlipStoreViewAppListGames, "Games", &app->submenu_app_list_games));
- break;
- case FlipStoreSubmenuIndexAppListGPIO:
- flip_store_category_index = 2;
- flip_store_app_does_exist = false;
- view_dispatcher_switch_to_view(app->view_dispatcher, flip_store_handle_app_list(app, FlipStoreViewAppListGPIO, "GPIO", &app->submenu_app_list_gpio));
- break;
- case FlipStoreSubmenuIndexAppListInfrared:
- flip_store_category_index = 3;
- flip_store_app_does_exist = false;
- view_dispatcher_switch_to_view(app->view_dispatcher, flip_store_handle_app_list(app, FlipStoreViewAppListInfrared, "Infrared", &app->submenu_app_list_infrared));
- break;
- case FlipStoreSubmenuIndexAppListiButton:
- flip_store_category_index = 4;
- flip_store_app_does_exist = false;
- view_dispatcher_switch_to_view(app->view_dispatcher, flip_store_handle_app_list(app, FlipStoreViewAppListiButton, "iButton", &app->submenu_app_list_ibutton));
- break;
- case FlipStoreSubmenuIndexAppListMedia:
- flip_store_category_index = 5;
- flip_store_app_does_exist = false;
- view_dispatcher_switch_to_view(app->view_dispatcher, flip_store_handle_app_list(app, FlipStoreViewAppListMedia, "Media", &app->submenu_app_list_media));
- break;
- case FlipStoreSubmenuIndexAppListNFC:
- flip_store_category_index = 6;
- flip_store_app_does_exist = false;
- view_dispatcher_switch_to_view(app->view_dispatcher, flip_store_handle_app_list(app, FlipStoreViewAppListNFC, "NFC", &app->submenu_app_list_nfc));
- break;
- case FlipStoreSubmenuIndexAppListRFID:
- flip_store_category_index = 7;
- flip_store_app_does_exist = false;
- view_dispatcher_switch_to_view(app->view_dispatcher, flip_store_handle_app_list(app, FlipStoreViewAppListRFID, "RFID", &app->submenu_app_list_rfid));
- break;
- case FlipStoreSubmenuIndexAppListSubGHz:
- flip_store_category_index = 8;
- flip_store_app_does_exist = false;
- view_dispatcher_switch_to_view(app->view_dispatcher, flip_store_handle_app_list(app, FlipStoreViewAppListSubGHz, "Sub-GHz", &app->submenu_app_list_subghz));
- break;
- case FlipStoreSubmenuIndexAppListTools:
- flip_store_category_index = 9;
- flip_store_app_does_exist = false;
- view_dispatcher_switch_to_view(app->view_dispatcher, flip_store_handle_app_list(app, FlipStoreViewAppListTools, "Tools", &app->submenu_app_list_tools));
- break;
- case FlipStoreSubmenuIndexAppListUSB:
- flip_store_category_index = 10;
- flip_store_app_does_exist = false;
- view_dispatcher_switch_to_view(app->view_dispatcher, flip_store_handle_app_list(app, FlipStoreViewAppListUSB, "USB", &app->submenu_app_list_usb));
- break;
- default:
- // Check if the index is within the firmwares list range
- if (index >= FlipStoreSubmenuIndexStartFirmwares && index < FlipStoreSubmenuIndexStartFirmwares + 3)
- {
- // Get the firmware index
- uint32_t firmware_index = index - FlipStoreSubmenuIndexStartFirmwares;
- // Check if the firmware index is valid
- if ((int)firmware_index >= 0 && firmware_index < 3)
- {
- // Get the firmware name
- char *firmware_name = firmwares[firmware_index];
- // Check if the firmware name is valid
- if (firmware_name != NULL && strlen(firmware_name) > 0)
- {
- // do nothing for now
- popup_set_header(app->popup, firmware_name, 0, 0, AlignLeft, AlignTop);
- popup_set_text(app->popup, "Not implemented yet :D", 0, 50, AlignLeft, AlignTop);
- view_dispatcher_switch_to_view(app->view_dispatcher, FlipStoreViewPopup);
- }
- else
- {
- FURI_LOG_E(TAG, "Invalid firmware name");
- }
- }
- else
- {
- FURI_LOG_E(TAG, "Invalid firmware index");
- }
- }
- // Check if the index is within the app list range
- else if (index >= FlipStoreSubmenuIndexStartAppList && index < FlipStoreSubmenuIndexStartAppList + MAX_APP_COUNT)
- {
- // Get the app index
- uint32_t app_index = index - FlipStoreSubmenuIndexStartAppList;
- // Check if the app index is valid
- if ((int)app_index >= 0 && app_index < MAX_APP_COUNT)
- {
- // Get the app name
- char *app_name = flip_catalog[app_index].app_name;
- // Check if the app name is valid
- if (app_name != NULL && strlen(app_name) > 0)
- {
- app_selected_index = app_index;
- flip_store_app_does_exist = app_exists(flip_catalog[app_selected_index].app_id, categories[flip_store_category_index]);
- view_dispatcher_switch_to_view(app->view_dispatcher, FlipStoreViewAppInfo);
- }
- else
- {
- FURI_LOG_E(TAG, "Invalid app name");
- }
- }
- else
- {
- FURI_LOG_E(TAG, "Invalid app index");
- }
- }
- else
- {
- FURI_LOG_E(TAG, "Unknown submenu index");
- }
- break;
- }
- }
|