527 lines
14 KiB
Rust
527 lines
14 KiB
Rust
use crate::app::key_binding::DEFAULT_KEYBINDINGS;
|
|
use crate::app::App;
|
|
use crate::event::Key;
|
|
use crate::handlers::{handle_prompt_toggle, KeyEventHandler};
|
|
use crate::models::servarr_data::modals::EditIndexerModal;
|
|
use crate::models::servarr_data::radarr::radarr_data::{ActiveRadarrBlock, EDIT_INDEXER_BLOCKS};
|
|
use crate::models::servarr_models::EditIndexerParams;
|
|
use crate::network::radarr_network::RadarrEvent;
|
|
use crate::{handle_prompt_left_right_keys, handle_text_box_keys, handle_text_box_left_right_keys};
|
|
|
|
#[cfg(test)]
|
|
#[path = "edit_indexer_handler_tests.rs"]
|
|
mod edit_indexer_handler_tests;
|
|
|
|
pub(super) struct EditIndexerHandler<'a, 'b> {
|
|
key: Key,
|
|
app: &'a mut App<'b>,
|
|
active_radarr_block: ActiveRadarrBlock,
|
|
_context: Option<ActiveRadarrBlock>,
|
|
}
|
|
|
|
impl<'a, 'b> EditIndexerHandler<'a, 'b> {
|
|
fn build_edit_indexer_params(&mut self) -> EditIndexerParams {
|
|
let indexer_id = self.app.data.radarr_data.indexers.current_selection().id;
|
|
let tags = self
|
|
.app
|
|
.data
|
|
.radarr_data
|
|
.edit_indexer_modal
|
|
.as_ref()
|
|
.unwrap()
|
|
.tags
|
|
.text
|
|
.clone();
|
|
|
|
let params = {
|
|
let EditIndexerModal {
|
|
name,
|
|
enable_rss,
|
|
enable_automatic_search,
|
|
enable_interactive_search,
|
|
url,
|
|
api_key,
|
|
seed_ratio,
|
|
priority,
|
|
..
|
|
} = self.app.data.radarr_data.edit_indexer_modal.as_ref().unwrap();
|
|
|
|
EditIndexerParams {
|
|
indexer_id,
|
|
name: Some(name.text.clone()),
|
|
enable_rss: Some(enable_rss.unwrap_or_default()),
|
|
enable_automatic_search: Some(enable_automatic_search.unwrap_or_default()),
|
|
enable_interactive_search: Some(enable_interactive_search.unwrap_or_default()),
|
|
url: Some(url.text.clone()),
|
|
api_key: Some(api_key.text.clone()),
|
|
seed_ratio: Some(seed_ratio.text.clone()),
|
|
tags: None,
|
|
tag_input_string: Some(tags),
|
|
priority: Some(*priority),
|
|
clear_tags: false,
|
|
}
|
|
};
|
|
|
|
self.app.data.radarr_data.edit_indexer_modal = None;
|
|
|
|
params
|
|
}
|
|
}
|
|
|
|
impl<'a, 'b> KeyEventHandler<'a, 'b, ActiveRadarrBlock> for EditIndexerHandler<'a, 'b> {
|
|
fn accepts(active_block: ActiveRadarrBlock) -> bool {
|
|
EDIT_INDEXER_BLOCKS.contains(&active_block)
|
|
}
|
|
|
|
fn with(
|
|
key: Key,
|
|
app: &'a mut App<'b>,
|
|
active_block: ActiveRadarrBlock,
|
|
_context: Option<ActiveRadarrBlock>,
|
|
) -> EditIndexerHandler<'a, 'b> {
|
|
EditIndexerHandler {
|
|
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.edit_indexer_modal.is_some()
|
|
}
|
|
|
|
fn handle_scroll_up(&mut self) {
|
|
match self.active_radarr_block {
|
|
ActiveRadarrBlock::EditIndexerPrompt => {
|
|
self.app.data.radarr_data.selected_block.up();
|
|
}
|
|
ActiveRadarrBlock::EditIndexerPriorityInput => {
|
|
self
|
|
.app
|
|
.data
|
|
.radarr_data
|
|
.edit_indexer_modal
|
|
.as_mut()
|
|
.unwrap()
|
|
.priority += 1;
|
|
}
|
|
_ => (),
|
|
}
|
|
}
|
|
|
|
fn handle_scroll_down(&mut self) {
|
|
match self.active_radarr_block {
|
|
ActiveRadarrBlock::EditIndexerPrompt => {
|
|
self.app.data.radarr_data.selected_block.down();
|
|
}
|
|
ActiveRadarrBlock::EditIndexerPriorityInput => {
|
|
let edit_indexer_modal = self
|
|
.app
|
|
.data
|
|
.radarr_data
|
|
.edit_indexer_modal
|
|
.as_mut()
|
|
.unwrap();
|
|
if edit_indexer_modal.priority > 0 {
|
|
edit_indexer_modal.priority -= 1;
|
|
}
|
|
}
|
|
_ => (),
|
|
}
|
|
}
|
|
|
|
fn handle_home(&mut self) {
|
|
match self.active_radarr_block {
|
|
ActiveRadarrBlock::EditIndexerNameInput => {
|
|
self
|
|
.app
|
|
.data
|
|
.radarr_data
|
|
.edit_indexer_modal
|
|
.as_mut()
|
|
.unwrap()
|
|
.name
|
|
.scroll_home();
|
|
}
|
|
ActiveRadarrBlock::EditIndexerUrlInput => {
|
|
self
|
|
.app
|
|
.data
|
|
.radarr_data
|
|
.edit_indexer_modal
|
|
.as_mut()
|
|
.unwrap()
|
|
.url
|
|
.scroll_home();
|
|
}
|
|
ActiveRadarrBlock::EditIndexerApiKeyInput => {
|
|
self
|
|
.app
|
|
.data
|
|
.radarr_data
|
|
.edit_indexer_modal
|
|
.as_mut()
|
|
.unwrap()
|
|
.api_key
|
|
.scroll_home();
|
|
}
|
|
ActiveRadarrBlock::EditIndexerSeedRatioInput => {
|
|
self
|
|
.app
|
|
.data
|
|
.radarr_data
|
|
.edit_indexer_modal
|
|
.as_mut()
|
|
.unwrap()
|
|
.seed_ratio
|
|
.scroll_home();
|
|
}
|
|
ActiveRadarrBlock::EditIndexerTagsInput => {
|
|
self
|
|
.app
|
|
.data
|
|
.radarr_data
|
|
.edit_indexer_modal
|
|
.as_mut()
|
|
.unwrap()
|
|
.tags
|
|
.scroll_home();
|
|
}
|
|
_ => (),
|
|
}
|
|
}
|
|
|
|
fn handle_end(&mut self) {
|
|
match self.active_radarr_block {
|
|
ActiveRadarrBlock::EditIndexerNameInput => {
|
|
self
|
|
.app
|
|
.data
|
|
.radarr_data
|
|
.edit_indexer_modal
|
|
.as_mut()
|
|
.unwrap()
|
|
.name
|
|
.reset_offset();
|
|
}
|
|
ActiveRadarrBlock::EditIndexerUrlInput => {
|
|
self
|
|
.app
|
|
.data
|
|
.radarr_data
|
|
.edit_indexer_modal
|
|
.as_mut()
|
|
.unwrap()
|
|
.url
|
|
.reset_offset();
|
|
}
|
|
ActiveRadarrBlock::EditIndexerApiKeyInput => {
|
|
self
|
|
.app
|
|
.data
|
|
.radarr_data
|
|
.edit_indexer_modal
|
|
.as_mut()
|
|
.unwrap()
|
|
.api_key
|
|
.reset_offset();
|
|
}
|
|
ActiveRadarrBlock::EditIndexerSeedRatioInput => {
|
|
self
|
|
.app
|
|
.data
|
|
.radarr_data
|
|
.edit_indexer_modal
|
|
.as_mut()
|
|
.unwrap()
|
|
.seed_ratio
|
|
.reset_offset();
|
|
}
|
|
ActiveRadarrBlock::EditIndexerTagsInput => {
|
|
self
|
|
.app
|
|
.data
|
|
.radarr_data
|
|
.edit_indexer_modal
|
|
.as_mut()
|
|
.unwrap()
|
|
.tags
|
|
.reset_offset();
|
|
}
|
|
_ => (),
|
|
}
|
|
}
|
|
|
|
fn handle_delete(&mut self) {}
|
|
|
|
fn handle_left_right_action(&mut self) {
|
|
match self.active_radarr_block {
|
|
ActiveRadarrBlock::EditIndexerPrompt => {
|
|
handle_prompt_left_right_keys!(
|
|
self,
|
|
ActiveRadarrBlock::EditIndexerConfirmPrompt,
|
|
radarr_data
|
|
);
|
|
}
|
|
ActiveRadarrBlock::EditIndexerNameInput => {
|
|
handle_text_box_left_right_keys!(
|
|
self,
|
|
self.key,
|
|
self
|
|
.app
|
|
.data
|
|
.radarr_data
|
|
.edit_indexer_modal
|
|
.as_mut()
|
|
.unwrap()
|
|
.name
|
|
);
|
|
}
|
|
ActiveRadarrBlock::EditIndexerUrlInput => {
|
|
handle_text_box_left_right_keys!(
|
|
self,
|
|
self.key,
|
|
self
|
|
.app
|
|
.data
|
|
.radarr_data
|
|
.edit_indexer_modal
|
|
.as_mut()
|
|
.unwrap()
|
|
.url
|
|
);
|
|
}
|
|
ActiveRadarrBlock::EditIndexerApiKeyInput => {
|
|
handle_text_box_left_right_keys!(
|
|
self,
|
|
self.key,
|
|
self
|
|
.app
|
|
.data
|
|
.radarr_data
|
|
.edit_indexer_modal
|
|
.as_mut()
|
|
.unwrap()
|
|
.api_key
|
|
);
|
|
}
|
|
ActiveRadarrBlock::EditIndexerSeedRatioInput => {
|
|
handle_text_box_left_right_keys!(
|
|
self,
|
|
self.key,
|
|
self
|
|
.app
|
|
.data
|
|
.radarr_data
|
|
.edit_indexer_modal
|
|
.as_mut()
|
|
.unwrap()
|
|
.seed_ratio
|
|
);
|
|
}
|
|
ActiveRadarrBlock::EditIndexerTagsInput => {
|
|
handle_text_box_left_right_keys!(
|
|
self,
|
|
self.key,
|
|
self
|
|
.app
|
|
.data
|
|
.radarr_data
|
|
.edit_indexer_modal
|
|
.as_mut()
|
|
.unwrap()
|
|
.tags
|
|
);
|
|
}
|
|
_ => (),
|
|
}
|
|
}
|
|
|
|
fn handle_submit(&mut self) {
|
|
match self.active_radarr_block {
|
|
ActiveRadarrBlock::EditIndexerPrompt => {
|
|
let selected_block = self.app.data.radarr_data.selected_block.get_active_block();
|
|
match selected_block {
|
|
ActiveRadarrBlock::EditIndexerConfirmPrompt => {
|
|
if self.app.data.radarr_data.prompt_confirm {
|
|
self.app.data.radarr_data.prompt_confirm_action = Some(RadarrEvent::EditIndexer(self.build_edit_indexer_params()));
|
|
self.app.should_refresh = true;
|
|
} else {
|
|
self.app.data.radarr_data.edit_indexer_modal = None;
|
|
}
|
|
|
|
self.app.pop_navigation_stack();
|
|
}
|
|
ActiveRadarrBlock::EditIndexerNameInput
|
|
| ActiveRadarrBlock::EditIndexerUrlInput
|
|
| ActiveRadarrBlock::EditIndexerApiKeyInput
|
|
| ActiveRadarrBlock::EditIndexerSeedRatioInput
|
|
| ActiveRadarrBlock::EditIndexerTagsInput => {
|
|
self.app.push_navigation_stack(selected_block.into());
|
|
self.app.should_ignore_quit_key = true;
|
|
}
|
|
ActiveRadarrBlock::EditIndexerPriorityInput => self
|
|
.app
|
|
.push_navigation_stack(ActiveRadarrBlock::EditIndexerPriorityInput.into()),
|
|
ActiveRadarrBlock::EditIndexerToggleEnableRss => {
|
|
let indexer = self
|
|
.app
|
|
.data
|
|
.radarr_data
|
|
.edit_indexer_modal
|
|
.as_mut()
|
|
.unwrap();
|
|
indexer.enable_rss = Some(!indexer.enable_rss.unwrap_or_default());
|
|
}
|
|
ActiveRadarrBlock::EditIndexerToggleEnableAutomaticSearch => {
|
|
let indexer = self
|
|
.app
|
|
.data
|
|
.radarr_data
|
|
.edit_indexer_modal
|
|
.as_mut()
|
|
.unwrap();
|
|
indexer.enable_automatic_search =
|
|
Some(!indexer.enable_automatic_search.unwrap_or_default());
|
|
}
|
|
ActiveRadarrBlock::EditIndexerToggleEnableInteractiveSearch => {
|
|
let indexer = self
|
|
.app
|
|
.data
|
|
.radarr_data
|
|
.edit_indexer_modal
|
|
.as_mut()
|
|
.unwrap();
|
|
indexer.enable_interactive_search =
|
|
Some(!indexer.enable_interactive_search.unwrap_or_default());
|
|
}
|
|
_ => (),
|
|
}
|
|
}
|
|
ActiveRadarrBlock::EditIndexerNameInput
|
|
| ActiveRadarrBlock::EditIndexerUrlInput
|
|
| ActiveRadarrBlock::EditIndexerApiKeyInput
|
|
| ActiveRadarrBlock::EditIndexerSeedRatioInput
|
|
| ActiveRadarrBlock::EditIndexerTagsInput => {
|
|
self.app.pop_navigation_stack();
|
|
self.app.should_ignore_quit_key = false;
|
|
}
|
|
ActiveRadarrBlock::EditIndexerPriorityInput => self.app.pop_navigation_stack(),
|
|
_ => (),
|
|
}
|
|
}
|
|
|
|
fn handle_esc(&mut self) {
|
|
match self.active_radarr_block {
|
|
ActiveRadarrBlock::EditIndexerPrompt => {
|
|
self.app.pop_navigation_stack();
|
|
self.app.data.radarr_data.prompt_confirm = false;
|
|
self.app.data.radarr_data.edit_indexer_modal = None;
|
|
}
|
|
ActiveRadarrBlock::EditIndexerNameInput
|
|
| ActiveRadarrBlock::EditIndexerUrlInput
|
|
| ActiveRadarrBlock::EditIndexerApiKeyInput
|
|
| ActiveRadarrBlock::EditIndexerSeedRatioInput
|
|
| ActiveRadarrBlock::EditIndexerPriorityInput
|
|
| ActiveRadarrBlock::EditIndexerTagsInput => {
|
|
self.app.pop_navigation_stack();
|
|
self.app.should_ignore_quit_key = false;
|
|
}
|
|
_ => self.app.pop_navigation_stack(),
|
|
}
|
|
}
|
|
|
|
fn handle_char_key_event(&mut self) {
|
|
match self.active_radarr_block {
|
|
ActiveRadarrBlock::EditIndexerNameInput => {
|
|
handle_text_box_keys!(
|
|
self,
|
|
self.key,
|
|
self
|
|
.app
|
|
.data
|
|
.radarr_data
|
|
.edit_indexer_modal
|
|
.as_mut()
|
|
.unwrap()
|
|
.name
|
|
);
|
|
}
|
|
ActiveRadarrBlock::EditIndexerUrlInput => {
|
|
handle_text_box_keys!(
|
|
self,
|
|
self.key,
|
|
self
|
|
.app
|
|
.data
|
|
.radarr_data
|
|
.edit_indexer_modal
|
|
.as_mut()
|
|
.unwrap()
|
|
.url
|
|
);
|
|
}
|
|
ActiveRadarrBlock::EditIndexerApiKeyInput => {
|
|
handle_text_box_keys!(
|
|
self,
|
|
self.key,
|
|
self
|
|
.app
|
|
.data
|
|
.radarr_data
|
|
.edit_indexer_modal
|
|
.as_mut()
|
|
.unwrap()
|
|
.api_key
|
|
);
|
|
}
|
|
ActiveRadarrBlock::EditIndexerSeedRatioInput => {
|
|
handle_text_box_keys!(
|
|
self,
|
|
self.key,
|
|
self
|
|
.app
|
|
.data
|
|
.radarr_data
|
|
.edit_indexer_modal
|
|
.as_mut()
|
|
.unwrap()
|
|
.seed_ratio
|
|
);
|
|
}
|
|
ActiveRadarrBlock::EditIndexerTagsInput => {
|
|
handle_text_box_keys!(
|
|
self,
|
|
self.key,
|
|
self
|
|
.app
|
|
.data
|
|
.radarr_data
|
|
.edit_indexer_modal
|
|
.as_mut()
|
|
.unwrap()
|
|
.tags
|
|
);
|
|
}
|
|
ActiveRadarrBlock::EditIndexerPrompt => {
|
|
if self.app.data.radarr_data.selected_block.get_active_block()
|
|
== ActiveRadarrBlock::EditIndexerConfirmPrompt
|
|
&& self.key == DEFAULT_KEYBINDINGS.confirm.key
|
|
{
|
|
self.app.data.radarr_data.prompt_confirm = true;
|
|
self.app.data.radarr_data.prompt_confirm_action = Some(RadarrEvent::EditIndexer(self.build_edit_indexer_params()));
|
|
self.app.should_refresh = true;
|
|
|
|
self.app.pop_navigation_stack();
|
|
}
|
|
}
|
|
_ => (),
|
|
}
|
|
}
|
|
}
|