use fmt::Display; use std::collections::{BTreeSet, HashSet}; use std::fmt; use std::ops::Div; use itertools::Either::{Left, Right}; use itertools::Itertools; use log::{debug, error, info, trace, warn}; use nostr_sdk::{Alphabet, Event, EventBuilder, EventId, Kind, Tag, Timestamp}; use crate::EventSender; #[derive(Debug, Clone, PartialEq)] pub(crate) struct Task { pub(crate) event: Event, pub(crate) children: HashSet, pub(crate) props: BTreeSet, /// Cached sorted tags of the event pub(crate) tags: Option>, parents: Vec, } impl Task { pub(crate) fn new(event: Event) -> Task { let (parents, tags) = event.tags.iter().partition_map(|tag| match tag { Tag::Event { event_id, .. } => return Left(event_id), _ => Right(tag.clone()), }); Task { children: Default::default(), props: Default::default(), tags: Some(tags).filter(|t: &BTreeSet| !t.is_empty()), parents, event, } } pub(crate) fn get_id(&self) -> &EventId { &self.event.id } pub(crate) fn parent_id(&self) -> Option<&EventId> { self.parents.first() } pub(crate) fn get_title(&self) -> String { Some(self.event.content.trim().to_string()) .filter(|s| !s.is_empty()) .unwrap_or_else(|| self.get_id().to_string()) } pub(crate) fn descriptions(&self) -> impl Iterator + '_ { self.props.iter().filter_map(|event| { if event.kind == Kind::TextNote { Some(&event.content) } else { None } }) } fn states(&self) -> impl Iterator + '_ { self.props.iter().filter_map(|event| { event.kind.try_into().ok().map(|s| TaskState { name: Some(event.content.clone()).filter(|c| !c.is_empty()), state: s, time: event.created_at.clone(), }) }) } pub(crate) fn state(&self) -> Option { self.states().max_by_key(|t| t.time) } pub(crate) fn pure_state(&self) -> State { self.state().map_or(State::Open, |s| s.state) } pub(crate) fn state_or_default(&self) -> TaskState { self.state().unwrap_or_else(|| self.default_state()) } fn default_state(&self) -> TaskState { TaskState { name: None, state: State::Open, time: self.event.created_at, } } fn filter_tags

(&self, predicate: P) -> Option where P: FnMut(&&Tag) -> bool, { self.tags.as_ref().map(|tags| { tags.into_iter() .filter(predicate) .map(|t| format!("{}", t.content().unwrap())) .collect::>() .join(" ") }) } pub(crate) fn get(&self, property: &str) -> Option { match property { "id" => Some(self.event.id.to_string()), "parentid" => self.parent_id().map(|i| i.to_string()), "state" => Some(self.state_or_default().get_label()), "name" => Some(self.event.content.clone()), "desc" => self.descriptions().last().cloned(), "description" => Some(self.descriptions().join(" ")), "hashtags" => self.filter_tags(|tag| { tag.single_letter_tag() .is_some_and(|sltag| sltag.character == Alphabet::T) }), "tags" => self.filter_tags(|_| true), "alltags" => Some(format!("{:?}", self.tags)), "props" => Some(format!( "{:?}", self.props .iter() .map(|e| format!("{} kind {} '{}'", e.created_at, e.kind, e.content)) .collect::>() )), "descriptions" => Some(format!( "{:?}", self.descriptions().collect::>() )), _ => { warn!("Unknown task property {}", property); None } } } } pub(crate) struct TaskState { state: State, name: Option, pub(crate) time: Timestamp, } impl TaskState { pub(crate) fn get_label(&self) -> String { self.name.clone().unwrap_or_else(|| self.state.to_string()) } pub(crate) fn matches_label(&self, label: &str) -> bool { self.state == State::Active || self.name.as_ref().is_some_and(|n| n.eq_ignore_ascii_case(label)) || self.state.to_string().eq_ignore_ascii_case(label) } } impl Display for TaskState { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { let state_str = self.state.to_string(); write!( f, "{}", self.name .as_ref() .map(|s| s.trim()) .filter(|s| !s.eq_ignore_ascii_case(&state_str)) .map_or(state_str, |s| format!("{}: {}", self.state, s)) ) } } #[derive(Debug, Copy, Clone, PartialEq)] pub(crate) enum State { Closed, Open, Active, Done, } impl TryFrom for State { type Error = (); fn try_from(value: Kind) -> Result { match value.as_u32() { 1630 => Ok(State::Open), 1631 => Ok(State::Done), 1632 => Ok(State::Closed), 1633 => Ok(State::Active), _ => Err(()), } } } impl State { pub(crate) fn is_open(&self) -> bool { match self { State::Open | State::Active => true, _ => false, } } pub(crate) fn kind(&self) -> u64 { match self { State::Open => 1630, State::Done => 1631, State::Closed => 1632, State::Active => 1633, } } } impl From for Kind { fn from(value: State) -> Self { Kind::from(value.kind()) } } impl Display for State { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { fmt::Debug::fmt(self, f) } }