2024-07-18 09:03:32 +00:00
|
|
|
use crate::State::{Active, Closed, Done, Open};
|
|
|
|
use nostr_sdk::async_utility::futures_util::TryFutureExt;
|
|
|
|
use nostr_sdk::prelude::*;
|
|
|
|
use once_cell::sync::Lazy;
|
2024-07-13 13:00:42 +00:00
|
|
|
use std::borrow::Borrow;
|
2024-07-17 19:55:25 +00:00
|
|
|
use std::collections::HashMap;
|
2024-07-11 07:53:58 +00:00
|
|
|
use std::env::args;
|
2024-07-18 09:03:32 +00:00
|
|
|
use std::fmt;
|
2024-07-13 13:00:42 +00:00
|
|
|
use std::io::{stdin, stdout, Write};
|
2024-07-09 14:56:08 +00:00
|
|
|
use std::net::{Ipv4Addr, SocketAddr, SocketAddrV4};
|
2024-07-18 09:03:32 +00:00
|
|
|
use std::ops::Deref;
|
2024-07-11 07:53:58 +00:00
|
|
|
use std::time::Duration;
|
2024-07-09 14:56:08 +00:00
|
|
|
|
2024-07-18 09:03:32 +00:00
|
|
|
/*
|
|
|
|
1: Task Description
|
|
|
|
Issue Tracking: https://github.com/nostr-protocol/nips/blob/master/34.md
|
|
|
|
1621: MD Issue
|
|
|
|
1622: MD Reply
|
|
|
|
1630-1633: Status (Time-tracking, Kanban)
|
|
|
|
Calendar: https://github.com/nostr-protocol/nips/blob/master/52.md
|
|
|
|
31922 (GANTT, only Date)
|
|
|
|
31923 (Calendar, with Time)
|
|
|
|
*/
|
2024-07-13 13:00:42 +00:00
|
|
|
|
2024-07-18 09:03:32 +00:00
|
|
|
static MY_KEYS: Lazy<Keys> = Lazy::new(|| Keys::generate());
|
|
|
|
static CLIENT: Lazy<Client> = Lazy::new(|| Client::new(MY_KEYS.borrow().deref()));
|
2024-07-13 13:00:42 +00:00
|
|
|
|
2024-07-09 14:56:08 +00:00
|
|
|
#[tokio::main]
|
|
|
|
async fn main() {
|
|
|
|
let proxy = Some(SocketAddr::V4(SocketAddrV4::new(Ipv4Addr::LOCALHOST, 9050)));
|
|
|
|
|
2024-07-13 13:00:42 +00:00
|
|
|
CLIENT.add_relay("ws://localhost:4736").await;
|
|
|
|
//CLIENT.add_relay("wss://relay.damus.io").await;
|
|
|
|
//CLIENT
|
2024-07-09 14:56:08 +00:00
|
|
|
// .add_relay_with_opts(
|
|
|
|
// "wss://relay.nostr.info",
|
|
|
|
// RelayOptions::new().proxy(proxy).flags(RelayServiceFlags::default().remove(RelayServiceFlags::WRITE)),
|
|
|
|
// )
|
|
|
|
// .await?;
|
2024-07-13 13:00:42 +00:00
|
|
|
//CLIENT
|
2024-07-09 14:56:08 +00:00
|
|
|
// .add_relay_with_opts(
|
|
|
|
// "ws://jgqaglhautb4k6e6i2g34jakxiemqp6z4wynlirltuukgkft2xuglmqd.onion",
|
|
|
|
// RelayOptions::new().proxy(proxy),
|
|
|
|
// )
|
|
|
|
// .await?;
|
|
|
|
|
|
|
|
//let metadata = Metadata::new()
|
|
|
|
// .name("username")
|
|
|
|
// .display_name("My Username")
|
|
|
|
// .about("Description")
|
|
|
|
// .picture(Url::parse("https://example.com/avatar.png")?)
|
|
|
|
// .banner(Url::parse("https://example.com/banner.png")?)
|
|
|
|
// .nip05("username@example.com")
|
|
|
|
// .lud16("yuki@getalby.com")
|
|
|
|
// .custom_field("custom_field", "my value");
|
|
|
|
|
2024-07-13 13:00:42 +00:00
|
|
|
//CLIENT.set_metadata(&metadata).await?;
|
2024-07-09 14:56:08 +00:00
|
|
|
|
2024-07-13 13:00:42 +00:00
|
|
|
CLIENT.connect().await;
|
2024-07-09 14:56:08 +00:00
|
|
|
|
2024-07-11 07:53:58 +00:00
|
|
|
let timeout = Duration::from_secs(3);
|
|
|
|
|
2024-07-18 10:20:25 +00:00
|
|
|
let filter = Filter::new();
|
2024-07-13 13:00:42 +00:00
|
|
|
let sub_id: SubscriptionId = CLIENT.subscribe(vec![filter.clone()], None).await;
|
2024-07-11 07:53:58 +00:00
|
|
|
|
2024-07-13 13:00:42 +00:00
|
|
|
repl().await;
|
|
|
|
|
2024-07-11 07:53:58 +00:00
|
|
|
println!("Finding existing events");
|
2024-07-18 09:09:18 +00:00
|
|
|
let res = CLIENT
|
|
|
|
.get_events_of(vec![filter], Option::from(timeout))
|
|
|
|
.map_ok(|res| {
|
|
|
|
for event in res {
|
|
|
|
println!("Found {} {:?}", event.content, event.tags)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.await;
|
2024-07-09 14:56:08 +00:00
|
|
|
|
2024-07-13 13:00:42 +00:00
|
|
|
let mut notifications = CLIENT.notifications();
|
2024-07-11 07:53:58 +00:00
|
|
|
println!("Listening for events...");
|
2024-07-09 14:56:08 +00:00
|
|
|
while let Ok(notification) = notifications.recv().await {
|
2024-07-18 09:09:18 +00:00
|
|
|
if let RelayPoolNotification::Event {
|
|
|
|
subscription_id,
|
|
|
|
event,
|
|
|
|
..
|
|
|
|
} = notification
|
|
|
|
{
|
2024-07-09 14:56:08 +00:00
|
|
|
let kind = event.kind;
|
|
|
|
let content = &event.content;
|
|
|
|
println!("{kind}: {content}");
|
|
|
|
//break; // Exit
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-07-13 13:00:42 +00:00
|
|
|
|
2024-07-17 19:55:25 +00:00
|
|
|
fn make_event(text: &str, tags: &[Tag]) -> Event {
|
2024-07-18 10:20:25 +00:00
|
|
|
EventBuilder::new(Kind::from(1621), text, tags.to_vec())
|
2024-07-18 09:09:18 +00:00
|
|
|
.to_event(&MY_KEYS)
|
|
|
|
.unwrap()
|
2024-07-17 19:55:25 +00:00
|
|
|
}
|
|
|
|
|
2024-07-13 13:00:42 +00:00
|
|
|
async fn repl() {
|
2024-07-17 19:55:25 +00:00
|
|
|
let mut tasks: HashMap<EventId, Task> = HashMap::new();
|
2024-07-18 10:20:25 +00:00
|
|
|
let add_task =
|
|
|
|
|tasks: &mut HashMap<EventId, Task>, event: Event| tasks.insert(event.id, Task::new(event));
|
|
|
|
for argument in args().skip(1) {
|
|
|
|
add_task(
|
|
|
|
&mut tasks,
|
|
|
|
make_event(&argument, &[Tag::Hashtag("arg".to_string())]),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2024-07-17 19:55:25 +00:00
|
|
|
let mut position: Option<EventId> = None;
|
2024-07-18 09:08:44 +00:00
|
|
|
let mut properties: Vec<String> = vec!["id".into(), "name".into(), "state".into()];
|
2024-07-13 13:00:42 +00:00
|
|
|
loop {
|
2024-07-18 09:08:44 +00:00
|
|
|
let mut prompt = String::with_capacity(64);
|
2024-07-17 21:38:27 +00:00
|
|
|
let mut pos = position;
|
|
|
|
while pos.is_some() {
|
|
|
|
let id = pos.unwrap();
|
|
|
|
let task = tasks.get(&id);
|
|
|
|
prompt = task.map_or(id.to_string(), |t| t.event.content.clone()) + " " + &prompt;
|
|
|
|
pos = task.and_then(|t| t.parent_id());
|
|
|
|
}
|
|
|
|
print!(" {}> ", prompt);
|
2024-07-13 13:00:42 +00:00
|
|
|
stdout().flush().unwrap();
|
|
|
|
match stdin().lines().next() {
|
|
|
|
Some(Ok(input)) => {
|
|
|
|
if input.trim() == "exit" {
|
|
|
|
break;
|
|
|
|
}
|
2024-07-18 09:08:44 +00:00
|
|
|
if input.starts_with(".") {
|
|
|
|
match input[1..2].parse::<usize>() {
|
|
|
|
Ok(index) => {
|
|
|
|
properties.insert(index, input[2..].to_string());
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
Err(_) => {
|
|
|
|
let prop = &input[1..];
|
|
|
|
let pos = properties.iter().position(|s| s == &prop);
|
|
|
|
match pos {
|
|
|
|
None => {
|
|
|
|
properties.push(prop.to_string());
|
|
|
|
}
|
|
|
|
Some(i) => {
|
|
|
|
properties.remove(i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-07-13 13:00:42 +00:00
|
|
|
}
|
2024-07-18 09:08:44 +00:00
|
|
|
} else {
|
|
|
|
match input.split_once(": ") {
|
|
|
|
None => {
|
|
|
|
position = EventId::parse(input).ok().or(position
|
|
|
|
.and_then(|p| tasks.get(&p))
|
|
|
|
.and_then(|t| t.parent_id()));
|
2024-07-17 19:55:25 +00:00
|
|
|
}
|
2024-07-18 09:08:44 +00:00
|
|
|
Some(s) => {
|
|
|
|
let mut tags: Vec<Tag> =
|
|
|
|
s.1.split(" ")
|
|
|
|
.map(|t| Tag::Hashtag(t.to_string()))
|
|
|
|
.collect();
|
|
|
|
if let Some(pos) = position {
|
|
|
|
tags.push(Tag::event(pos));
|
|
|
|
}
|
|
|
|
let event = make_event(s.0, &tags);
|
|
|
|
for tag in event.tags.iter() {
|
|
|
|
match tag {
|
|
|
|
Tag::Event { event_id, .. } => {
|
|
|
|
tasks
|
|
|
|
.get_mut(event_id)
|
|
|
|
.unwrap()
|
|
|
|
.children
|
|
|
|
.push(event.clone());
|
|
|
|
}
|
|
|
|
_ => {}
|
2024-07-17 19:55:25 +00:00
|
|
|
}
|
|
|
|
}
|
2024-07-18 10:20:25 +00:00
|
|
|
add_task(&mut tasks, event);
|
2024-07-17 19:55:25 +00:00
|
|
|
}
|
2024-07-13 13:00:42 +00:00
|
|
|
}
|
|
|
|
};
|
2024-07-18 09:08:44 +00:00
|
|
|
let events: Vec<&Event> =
|
|
|
|
position.map_or(tasks.values().map(|t| &t.event).collect(), |p| {
|
|
|
|
tasks
|
|
|
|
.get(&p)
|
|
|
|
.map_or(Vec::new(), |t| t.children.iter().collect())
|
|
|
|
});
|
|
|
|
println!("{}", properties.join(" "));
|
2024-07-17 19:55:25 +00:00
|
|
|
for event in events {
|
|
|
|
println!("{}: {}", event.id, event.content);
|
|
|
|
}
|
2024-07-13 13:00:42 +00:00
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|
2024-07-18 09:09:18 +00:00
|
|
|
CLIENT
|
|
|
|
.batch_event(
|
|
|
|
tasks.into_values().map(|t| t.event).collect(),
|
|
|
|
RelaySendOptions::new().skip_send_confirmation(true),
|
|
|
|
)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
2024-07-13 13:00:42 +00:00
|
|
|
}
|
2024-07-17 19:55:25 +00:00
|
|
|
|
|
|
|
struct Task {
|
|
|
|
event: Event,
|
|
|
|
children: Vec<Event>,
|
|
|
|
}
|
|
|
|
impl Task {
|
|
|
|
fn new(event: Event) -> Task {
|
|
|
|
Task {
|
|
|
|
event,
|
|
|
|
children: Vec::new(),
|
|
|
|
}
|
|
|
|
}
|
2024-07-18 09:08:44 +00:00
|
|
|
|
|
|
|
fn parent_id(&self) -> Option<EventId> {
|
|
|
|
for tag in self.event.tags.iter() {
|
|
|
|
match tag {
|
|
|
|
Tag::Event { event_id, .. } => return Some(*event_id),
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
|
|
|
fn states(&self) -> impl Iterator<Item = TaskState> + '_ {
|
|
|
|
self.children.iter().filter_map(|event| {
|
|
|
|
match event.kind.as_u32() {
|
|
|
|
1630 => Some(Open),
|
|
|
|
1631 => Some(Done),
|
|
|
|
1632 => Some(Closed),
|
|
|
|
1633 => Some(Active),
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
.map(|s| TaskState {
|
|
|
|
name: self.event.content.clone(),
|
|
|
|
state: s,
|
|
|
|
time: self.event.created_at.clone(),
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn descriptions(&self) -> impl Iterator<Item = String> + '_ {
|
|
|
|
self.children.iter().filter_map(|event| {
|
|
|
|
if event.kind == Kind::TextNote {
|
|
|
|
Some(event.content.clone())
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn state(&self) -> Option<TaskState> {
|
|
|
|
self.states().max_by_key(|t| t.time)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get(&self, property: &str) -> Option<String> {
|
|
|
|
match property {
|
|
|
|
"id" => Some(self.event.id.to_string()),
|
|
|
|
"parentid" => self.parent_id().map(|i| i.to_string()),
|
|
|
|
"state" => self.state().map(|s| s.state.to_string()),
|
|
|
|
"name" => Some(self.event.content.clone()),
|
|
|
|
"desc" | "description" => self.descriptions().fold(None, |total, s| {
|
|
|
|
Some(match total {
|
|
|
|
None => s,
|
|
|
|
Some(i) => i + " " + &s,
|
|
|
|
})
|
|
|
|
}),
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
2024-07-18 09:03:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct TaskState {
|
|
|
|
name: String,
|
|
|
|
state: State,
|
|
|
|
time: Timestamp,
|
|
|
|
}
|
|
|
|
#[derive(Debug)]
|
|
|
|
enum State {
|
|
|
|
Open,
|
|
|
|
Active,
|
|
|
|
Done,
|
|
|
|
Closed,
|
|
|
|
}
|
|
|
|
impl fmt::Display for State {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
fmt::Debug::fmt(self, f)
|
|
|
|
}
|
|
|
|
}
|