219 lines
6.7 KiB
Rust
219 lines
6.7 KiB
Rust
use crate::app::App;
|
|
use crate::event::Key;
|
|
use crate::handlers::radarr_handlers::handle_change_tab_left_right_keys;
|
|
use crate::handlers::radarr_handlers::indexers::edit_indexer_handler::EditIndexerHandler;
|
|
use crate::handlers::radarr_handlers::indexers::edit_indexer_settings_handler::IndexerSettingsHandler;
|
|
use crate::handlers::radarr_handlers::indexers::test_all_indexers_handler::TestAllIndexersHandler;
|
|
use crate::handlers::table_handler::{TableHandlingConfig, handle_table};
|
|
use crate::handlers::{KeyEventHandler, handle_clear_errors, handle_prompt_toggle};
|
|
use crate::matches_key;
|
|
use crate::models::BlockSelectionState;
|
|
use crate::models::servarr_data::radarr::radarr_data::{
|
|
ActiveRadarrBlock, EDIT_INDEXER_NZB_SELECTION_BLOCKS, EDIT_INDEXER_TORRENT_SELECTION_BLOCKS,
|
|
INDEXER_SETTINGS_SELECTION_BLOCKS, INDEXERS_BLOCKS,
|
|
};
|
|
use crate::network::radarr_network::RadarrEvent;
|
|
|
|
mod edit_indexer_handler;
|
|
mod edit_indexer_settings_handler;
|
|
mod test_all_indexers_handler;
|
|
|
|
#[cfg(test)]
|
|
#[path = "indexers_handler_tests.rs"]
|
|
mod indexers_handler_tests;
|
|
|
|
pub(super) struct IndexersHandler<'a, 'b> {
|
|
key: Key,
|
|
app: &'a mut App<'b>,
|
|
active_radarr_block: ActiveRadarrBlock,
|
|
context: Option<ActiveRadarrBlock>,
|
|
}
|
|
|
|
impl IndexersHandler<'_, '_> {
|
|
fn extract_indexer_id(&self) -> i64 {
|
|
self.app.data.radarr_data.indexers.current_selection().id
|
|
}
|
|
}
|
|
|
|
impl<'a, 'b> KeyEventHandler<'a, 'b, ActiveRadarrBlock> for IndexersHandler<'a, 'b> {
|
|
fn handle(&mut self) {
|
|
let indexer_table_handling_config =
|
|
TableHandlingConfig::new(ActiveRadarrBlock::Indexers.into());
|
|
|
|
if !handle_table(
|
|
self,
|
|
|app| &mut app.data.radarr_data.indexers,
|
|
indexer_table_handling_config,
|
|
) {
|
|
match self.active_radarr_block {
|
|
_ if EditIndexerHandler::accepts(self.active_radarr_block) => {
|
|
EditIndexerHandler::new(self.key, self.app, self.active_radarr_block, self.context)
|
|
.handle()
|
|
}
|
|
_ if IndexerSettingsHandler::accepts(self.active_radarr_block) => {
|
|
IndexerSettingsHandler::new(self.key, self.app, self.active_radarr_block, self.context)
|
|
.handle()
|
|
}
|
|
_ if TestAllIndexersHandler::accepts(self.active_radarr_block) => {
|
|
TestAllIndexersHandler::new(self.key, self.app, self.active_radarr_block, self.context)
|
|
.handle()
|
|
}
|
|
_ => self.handle_key_event(),
|
|
}
|
|
}
|
|
}
|
|
|
|
fn accepts(active_block: ActiveRadarrBlock) -> bool {
|
|
EditIndexerHandler::accepts(active_block)
|
|
|| IndexerSettingsHandler::accepts(active_block)
|
|
|| TestAllIndexersHandler::accepts(active_block)
|
|
|| INDEXERS_BLOCKS.contains(&active_block)
|
|
}
|
|
|
|
fn ignore_special_keys(&self) -> bool {
|
|
self.app.ignore_special_keys_for_textbox_input
|
|
}
|
|
|
|
fn new(
|
|
key: Key,
|
|
app: &'a mut App<'b>,
|
|
active_block: ActiveRadarrBlock,
|
|
context: Option<ActiveRadarrBlock>,
|
|
) -> IndexersHandler<'a, 'b> {
|
|
IndexersHandler {
|
|
key,
|
|
app,
|
|
active_radarr_block: active_block,
|
|
context,
|
|
}
|
|
}
|
|
|
|
fn get_key(&self) -> Key {
|
|
self.key
|
|
}
|
|
|
|
fn is_ready(&self) -> bool {
|
|
!self.app.is_loading && !self.app.data.radarr_data.indexers.is_empty()
|
|
}
|
|
|
|
fn handle_scroll_up(&mut self) {}
|
|
|
|
fn handle_scroll_down(&mut self) {}
|
|
|
|
fn handle_home(&mut self) {}
|
|
|
|
fn handle_end(&mut self) {}
|
|
|
|
fn handle_delete(&mut self) {
|
|
if self.active_radarr_block == ActiveRadarrBlock::Indexers {
|
|
self
|
|
.app
|
|
.push_navigation_stack(ActiveRadarrBlock::DeleteIndexerPrompt.into());
|
|
}
|
|
}
|
|
|
|
fn handle_left_right_action(&mut self) {
|
|
match self.active_radarr_block {
|
|
ActiveRadarrBlock::Indexers => handle_change_tab_left_right_keys(self.app, self.key),
|
|
ActiveRadarrBlock::DeleteIndexerPrompt => handle_prompt_toggle(self.app, self.key),
|
|
_ => (),
|
|
}
|
|
}
|
|
|
|
fn handle_submit(&mut self) {
|
|
match self.active_radarr_block {
|
|
ActiveRadarrBlock::DeleteIndexerPrompt => {
|
|
let indexer_id = self.extract_indexer_id();
|
|
let radarr_data = &mut self.app.data.radarr_data;
|
|
if radarr_data.prompt_confirm {
|
|
radarr_data.prompt_confirm_action = Some(RadarrEvent::DeleteIndexer(indexer_id));
|
|
}
|
|
|
|
self.app.pop_navigation_stack();
|
|
}
|
|
ActiveRadarrBlock::Indexers => {
|
|
self
|
|
.app
|
|
.push_navigation_stack(ActiveRadarrBlock::EditIndexerPrompt.into());
|
|
self.app.data.radarr_data.edit_indexer_modal = Some((&self.app.data.radarr_data).into());
|
|
let protocol = &self
|
|
.app
|
|
.data
|
|
.radarr_data
|
|
.indexers
|
|
.current_selection()
|
|
.protocol;
|
|
if protocol == "torrent" {
|
|
self.app.data.radarr_data.selected_block =
|
|
BlockSelectionState::new(EDIT_INDEXER_TORRENT_SELECTION_BLOCKS);
|
|
} else {
|
|
self.app.data.radarr_data.selected_block =
|
|
BlockSelectionState::new(EDIT_INDEXER_NZB_SELECTION_BLOCKS);
|
|
}
|
|
}
|
|
_ => (),
|
|
}
|
|
}
|
|
|
|
fn handle_esc(&mut self) {
|
|
match self.active_radarr_block {
|
|
ActiveRadarrBlock::DeleteIndexerPrompt => {
|
|
self.app.pop_navigation_stack();
|
|
self.app.data.radarr_data.prompt_confirm = false;
|
|
}
|
|
ActiveRadarrBlock::TestIndexer => {
|
|
self.app.pop_navigation_stack();
|
|
self.app.data.radarr_data.indexer_test_errors = None;
|
|
}
|
|
_ => handle_clear_errors(self.app),
|
|
}
|
|
}
|
|
|
|
fn handle_char_key_event(&mut self) {
|
|
let key = self.key;
|
|
match self.active_radarr_block {
|
|
ActiveRadarrBlock::Indexers => match self.key {
|
|
_ if matches_key!(refresh, key) => {
|
|
self.app.should_refresh = true;
|
|
}
|
|
_ if matches_key!(test, key) => {
|
|
self
|
|
.app
|
|
.push_navigation_stack(ActiveRadarrBlock::TestIndexer.into());
|
|
}
|
|
_ if matches_key!(test_all, key) => {
|
|
self
|
|
.app
|
|
.push_navigation_stack(ActiveRadarrBlock::TestAllIndexers.into());
|
|
}
|
|
_ if matches_key!(settings, key) => {
|
|
self
|
|
.app
|
|
.push_navigation_stack(ActiveRadarrBlock::AllIndexerSettingsPrompt.into());
|
|
self.app.data.radarr_data.selected_block =
|
|
BlockSelectionState::new(INDEXER_SETTINGS_SELECTION_BLOCKS);
|
|
}
|
|
_ => (),
|
|
},
|
|
ActiveRadarrBlock::DeleteIndexerPrompt => {
|
|
if matches_key!(confirm, key) {
|
|
self.app.data.radarr_data.prompt_confirm = true;
|
|
self.app.data.radarr_data.prompt_confirm_action =
|
|
Some(RadarrEvent::DeleteIndexer(self.extract_indexer_id()));
|
|
|
|
self.app.pop_navigation_stack();
|
|
}
|
|
}
|
|
_ => (),
|
|
}
|
|
}
|
|
|
|
fn app_mut(&mut self) -> &mut App<'b> {
|
|
self.app
|
|
}
|
|
|
|
fn current_route(&self) -> crate::models::Route {
|
|
self.app.get_current_route()
|
|
}
|
|
}
|