2021-09-10 00:57:43 +00:00
|
|
|
#include "../archive_i.h"
|
2021-09-21 10:56:33 +00:00
|
|
|
#include "../helpers/archive_files.h"
|
2022-02-10 13:01:49 +00:00
|
|
|
#include "../helpers/archive_apps.h"
|
2021-09-21 10:56:33 +00:00
|
|
|
#include "../helpers/archive_favorites.h"
|
|
|
|
#include "../helpers/archive_browser.h"
|
|
|
|
#include "../views/archive_browser_view.h"
|
2022-06-09 07:09:52 +00:00
|
|
|
#include "archive/scenes/archive_scene.h"
|
2021-09-21 10:56:33 +00:00
|
|
|
|
2022-02-10 11:20:50 +00:00
|
|
|
#define TAG "ArchiveSceneBrowser"
|
|
|
|
|
2022-06-09 07:09:52 +00:00
|
|
|
#define SCENE_STATE_DEFAULT (0)
|
|
|
|
#define SCENE_STATE_NEED_REFRESH (1)
|
|
|
|
|
2021-09-21 10:56:33 +00:00
|
|
|
static const char* flipper_app_name[] = {
|
|
|
|
[ArchiveFileTypeIButton] = "iButton",
|
|
|
|
[ArchiveFileTypeNFC] = "NFC",
|
|
|
|
[ArchiveFileTypeSubGhz] = "Sub-GHz",
|
|
|
|
[ArchiveFileTypeLFRFID] = "125 kHz RFID",
|
2022-02-25 15:22:58 +00:00
|
|
|
[ArchiveFileTypeInfrared] = "Infrared",
|
2022-02-10 13:01:49 +00:00
|
|
|
[ArchiveFileTypeBadUsb] = "Bad USB",
|
|
|
|
[ArchiveFileTypeU2f] = "U2F",
|
2022-04-13 20:50:25 +00:00
|
|
|
[ArchiveFileTypeUpdateManifest] = "UpdaterApp",
|
2021-09-21 10:56:33 +00:00
|
|
|
};
|
|
|
|
|
2022-04-27 16:34:37 +00:00
|
|
|
static void archive_loader_callback(const void* message, void* context) {
|
|
|
|
furi_assert(message);
|
|
|
|
furi_assert(context);
|
|
|
|
const LoaderEvent* event = message;
|
|
|
|
ArchiveApp* archive = (ArchiveApp*)context;
|
|
|
|
|
|
|
|
if(event->type == LoaderEventTypeApplicationStopped) {
|
|
|
|
view_dispatcher_send_custom_event(
|
2022-06-09 07:09:52 +00:00
|
|
|
archive->view_dispatcher, ArchiveBrowserEventListRefresh);
|
2022-04-27 16:34:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-10 13:01:49 +00:00
|
|
|
static void archive_run_in_app(ArchiveBrowserView* browser, ArchiveFile_t* selected) {
|
2022-05-06 13:37:10 +00:00
|
|
|
UNUSED(browser);
|
2022-07-26 12:21:51 +00:00
|
|
|
Loader* loader = furi_record_open(RECORD_LOADER);
|
2021-09-21 10:56:33 +00:00
|
|
|
|
2022-02-10 13:01:49 +00:00
|
|
|
LoaderStatus status;
|
|
|
|
if(selected->is_app) {
|
2022-06-09 07:09:52 +00:00
|
|
|
char* param = strrchr(string_get_cstr(selected->path), '/');
|
2022-02-10 13:01:49 +00:00
|
|
|
if(param != NULL) {
|
|
|
|
param++;
|
|
|
|
}
|
|
|
|
status = loader_start(loader, flipper_app_name[selected->type], param);
|
2021-09-21 10:56:33 +00:00
|
|
|
} else {
|
2022-02-10 13:01:49 +00:00
|
|
|
status = loader_start(
|
2022-06-09 07:09:52 +00:00
|
|
|
loader, flipper_app_name[selected->type], string_get_cstr(selected->path));
|
2021-09-21 10:56:33 +00:00
|
|
|
}
|
2022-02-10 11:20:50 +00:00
|
|
|
|
|
|
|
if(status != LoaderStatusOk) {
|
|
|
|
FURI_LOG_E(TAG, "loader_start failed: %d", status);
|
|
|
|
}
|
2021-09-21 10:56:33 +00:00
|
|
|
|
2022-07-26 12:21:51 +00:00
|
|
|
furi_record_close(RECORD_LOADER);
|
2021-09-21 10:56:33 +00:00
|
|
|
}
|
2021-09-10 00:57:43 +00:00
|
|
|
|
|
|
|
void archive_scene_browser_callback(ArchiveBrowserEvent event, void* context) {
|
|
|
|
ArchiveApp* archive = (ArchiveApp*)context;
|
|
|
|
view_dispatcher_send_custom_event(archive->view_dispatcher, event);
|
|
|
|
}
|
|
|
|
|
2021-09-21 09:34:16 +00:00
|
|
|
void archive_scene_browser_on_enter(void* context) {
|
2021-09-10 00:57:43 +00:00
|
|
|
ArchiveApp* archive = (ArchiveApp*)context;
|
2021-09-21 10:56:33 +00:00
|
|
|
ArchiveBrowserView* browser = archive->browser;
|
2022-06-09 07:09:52 +00:00
|
|
|
browser->is_root = true;
|
2021-09-10 00:57:43 +00:00
|
|
|
|
2021-09-21 10:56:33 +00:00
|
|
|
archive_browser_set_callback(browser, archive_scene_browser_callback, archive);
|
|
|
|
archive_update_focus(browser, archive->text_store);
|
2021-09-10 00:57:43 +00:00
|
|
|
view_dispatcher_switch_to_view(archive->view_dispatcher, ArchiveViewBrowser);
|
2022-04-27 16:34:37 +00:00
|
|
|
|
2022-07-26 12:21:51 +00:00
|
|
|
Loader* loader = furi_record_open(RECORD_LOADER);
|
2022-04-27 16:34:37 +00:00
|
|
|
archive->loader_stop_subscription =
|
|
|
|
furi_pubsub_subscribe(loader_get_pubsub(loader), archive_loader_callback, archive);
|
2022-07-26 12:21:51 +00:00
|
|
|
furi_record_close(RECORD_LOADER);
|
2022-06-09 07:09:52 +00:00
|
|
|
|
|
|
|
uint32_t state = scene_manager_get_scene_state(archive->scene_manager, ArchiveAppSceneBrowser);
|
|
|
|
|
|
|
|
if(state == SCENE_STATE_NEED_REFRESH) {
|
|
|
|
view_dispatcher_send_custom_event(
|
|
|
|
archive->view_dispatcher, ArchiveBrowserEventListRefresh);
|
|
|
|
}
|
|
|
|
|
|
|
|
scene_manager_set_scene_state(
|
|
|
|
archive->scene_manager, ArchiveAppSceneBrowser, SCENE_STATE_DEFAULT);
|
2021-09-10 00:57:43 +00:00
|
|
|
}
|
|
|
|
|
2021-09-21 09:34:16 +00:00
|
|
|
bool archive_scene_browser_on_event(void* context, SceneManagerEvent event) {
|
2021-09-10 00:57:43 +00:00
|
|
|
ArchiveApp* archive = (ArchiveApp*)context;
|
2021-09-21 10:56:33 +00:00
|
|
|
ArchiveBrowserView* browser = archive->browser;
|
|
|
|
ArchiveFile_t* selected = archive_get_current_file(browser);
|
|
|
|
|
|
|
|
const char* name = archive_get_name(browser);
|
2022-02-10 13:01:49 +00:00
|
|
|
bool known_app = archive_is_known_app(selected->type);
|
2021-09-21 10:56:33 +00:00
|
|
|
bool favorites = archive_get_tab(browser) == ArchiveTabFavorites;
|
2021-09-21 09:34:16 +00:00
|
|
|
bool consumed = false;
|
2021-09-10 00:57:43 +00:00
|
|
|
|
|
|
|
if(event.type == SceneManagerEventTypeCustom) {
|
|
|
|
switch(event.event) {
|
2021-09-21 10:56:33 +00:00
|
|
|
case ArchiveBrowserEventFileMenuOpen:
|
|
|
|
archive_show_file_menu(browser, true);
|
|
|
|
consumed = true;
|
|
|
|
break;
|
|
|
|
case ArchiveBrowserEventFileMenuClose:
|
|
|
|
archive_show_file_menu(browser, false);
|
|
|
|
consumed = true;
|
|
|
|
break;
|
|
|
|
case ArchiveBrowserEventFileMenuRun:
|
|
|
|
if(known_app) {
|
2022-02-10 13:01:49 +00:00
|
|
|
archive_run_in_app(browser, selected);
|
2022-06-09 07:09:52 +00:00
|
|
|
archive_show_file_menu(browser, false);
|
2021-09-21 10:56:33 +00:00
|
|
|
}
|
2021-09-10 00:57:43 +00:00
|
|
|
consumed = true;
|
|
|
|
break;
|
2021-09-21 10:56:33 +00:00
|
|
|
case ArchiveBrowserEventFileMenuPin:
|
|
|
|
if(favorites) {
|
|
|
|
archive_favorites_delete(name);
|
|
|
|
archive_file_array_rm_selected(browser);
|
2021-10-12 13:09:34 +00:00
|
|
|
archive_show_file_menu(browser, false);
|
2021-09-21 10:56:33 +00:00
|
|
|
} else if(known_app) {
|
2022-02-10 13:01:49 +00:00
|
|
|
if(archive_is_favorite("%s", name)) {
|
|
|
|
archive_favorites_delete("%s", name);
|
2021-09-21 10:56:33 +00:00
|
|
|
} else {
|
2022-02-10 13:01:49 +00:00
|
|
|
archive_file_append(ARCHIVE_FAV_PATH, "%s\n", name);
|
2021-09-21 10:56:33 +00:00
|
|
|
}
|
2021-10-12 13:09:34 +00:00
|
|
|
archive_show_file_menu(browser, false);
|
2021-09-21 10:56:33 +00:00
|
|
|
}
|
|
|
|
consumed = true;
|
|
|
|
break;
|
|
|
|
|
2022-06-09 07:09:52 +00:00
|
|
|
case ArchiveBrowserEventFileMenuRename:
|
2021-10-12 13:09:34 +00:00
|
|
|
if(favorites) {
|
|
|
|
browser->callback(ArchiveBrowserEventEnterFavMove, browser->context);
|
2022-02-10 13:01:49 +00:00
|
|
|
} else if((known_app) && (selected->is_app == false)) {
|
2022-03-30 17:05:44 +00:00
|
|
|
archive_show_file_menu(browser, false);
|
2022-06-09 07:09:52 +00:00
|
|
|
scene_manager_set_scene_state(
|
|
|
|
archive->scene_manager, ArchiveAppSceneBrowser, SCENE_STATE_NEED_REFRESH);
|
2021-09-21 10:56:33 +00:00
|
|
|
scene_manager_next_scene(archive->scene_manager, ArchiveAppSceneRename);
|
|
|
|
}
|
|
|
|
consumed = true;
|
|
|
|
break;
|
|
|
|
case ArchiveBrowserEventFileMenuDelete:
|
2022-04-06 17:44:06 +00:00
|
|
|
if(archive_get_tab(browser) != ArchiveTabFavorites) {
|
|
|
|
scene_manager_next_scene(archive->scene_manager, ArchiveAppSceneDelete);
|
|
|
|
}
|
2021-09-21 10:56:33 +00:00
|
|
|
consumed = true;
|
|
|
|
break;
|
|
|
|
case ArchiveBrowserEventEnterDir:
|
2022-06-09 07:09:52 +00:00
|
|
|
archive_enter_dir(browser, selected->path);
|
2021-09-21 10:56:33 +00:00
|
|
|
consumed = true;
|
|
|
|
break;
|
2021-10-12 13:09:34 +00:00
|
|
|
case ArchiveBrowserEventFavMoveUp:
|
|
|
|
archive_file_array_swap(browser, 1);
|
|
|
|
consumed = true;
|
|
|
|
break;
|
|
|
|
case ArchiveBrowserEventFavMoveDown:
|
|
|
|
archive_file_array_swap(browser, -1);
|
|
|
|
consumed = true;
|
|
|
|
break;
|
|
|
|
case ArchiveBrowserEventEnterFavMove:
|
2022-06-09 07:09:52 +00:00
|
|
|
string_set(archive->fav_move_str, selected->path);
|
2021-10-12 13:09:34 +00:00
|
|
|
archive_show_file_menu(browser, false);
|
|
|
|
archive_favorites_move_mode(archive->browser, true);
|
|
|
|
consumed = true;
|
|
|
|
break;
|
|
|
|
case ArchiveBrowserEventExitFavMove:
|
2022-06-09 07:09:52 +00:00
|
|
|
archive_update_focus(browser, string_get_cstr(archive->fav_move_str));
|
2021-10-12 13:09:34 +00:00
|
|
|
archive_favorites_move_mode(archive->browser, false);
|
|
|
|
consumed = true;
|
|
|
|
break;
|
|
|
|
case ArchiveBrowserEventSaveFavMove:
|
|
|
|
archive_favorites_move_mode(archive->browser, false);
|
|
|
|
archive_favorites_save(archive->browser);
|
|
|
|
consumed = true;
|
|
|
|
break;
|
2022-04-06 17:44:06 +00:00
|
|
|
case ArchiveBrowserEventLoadPrevItems:
|
|
|
|
archive_file_array_load(archive->browser, -1);
|
|
|
|
consumed = true;
|
|
|
|
break;
|
|
|
|
case ArchiveBrowserEventLoadNextItems:
|
|
|
|
archive_file_array_load(archive->browser, 1);
|
|
|
|
consumed = true;
|
|
|
|
break;
|
2022-06-09 07:09:52 +00:00
|
|
|
case ArchiveBrowserEventListRefresh:
|
2022-04-27 16:34:37 +00:00
|
|
|
if(!favorites) {
|
2022-06-09 07:09:52 +00:00
|
|
|
archive_refresh_dir(browser);
|
2022-04-27 16:34:37 +00:00
|
|
|
} else {
|
|
|
|
archive_favorites_read(browser);
|
|
|
|
}
|
|
|
|
consumed = true;
|
|
|
|
break;
|
2021-09-21 10:56:33 +00:00
|
|
|
|
2021-09-10 00:57:43 +00:00
|
|
|
case ArchiveBrowserEventExit:
|
2022-06-09 07:09:52 +00:00
|
|
|
if(!archive_is_home(browser)) {
|
2021-09-21 10:56:33 +00:00
|
|
|
archive_leave_dir(browser);
|
|
|
|
} else {
|
2022-07-26 12:21:51 +00:00
|
|
|
Loader* loader = furi_record_open(RECORD_LOADER);
|
2022-04-27 16:34:37 +00:00
|
|
|
furi_pubsub_unsubscribe(
|
|
|
|
loader_get_pubsub(loader), archive->loader_stop_subscription);
|
2022-07-26 12:21:51 +00:00
|
|
|
furi_record_close(RECORD_LOADER);
|
2022-04-27 16:34:37 +00:00
|
|
|
|
2021-09-21 10:56:33 +00:00
|
|
|
view_dispatcher_stop(archive->view_dispatcher);
|
|
|
|
}
|
2021-09-10 00:57:43 +00:00
|
|
|
consumed = true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return consumed;
|
|
|
|
}
|
|
|
|
|
2021-09-21 09:34:16 +00:00
|
|
|
void archive_scene_browser_on_exit(void* context) {
|
2022-04-27 16:34:37 +00:00
|
|
|
ArchiveApp* archive = (ArchiveApp*)context;
|
|
|
|
|
2022-07-26 12:21:51 +00:00
|
|
|
Loader* loader = furi_record_open(RECORD_LOADER);
|
2022-04-27 16:34:37 +00:00
|
|
|
furi_pubsub_unsubscribe(loader_get_pubsub(loader), archive->loader_stop_subscription);
|
2022-07-26 12:21:51 +00:00
|
|
|
furi_record_close(RECORD_LOADER);
|
2021-09-10 00:57:43 +00:00
|
|
|
}
|