mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
60 lines
1.7 KiB
Rust
60 lines
1.7 KiB
Rust
use clap::Arg;
|
|
use failure::{format_err, Fallible};
|
|
use std::path::Path;
|
|
use taskchampion::{server, taskstorage, Replica, Task, Uuid};
|
|
|
|
pub(super) fn task_arg<'a>() -> Arg<'a, 'a> {
|
|
Arg::with_name("task")
|
|
.help("task id or uuid")
|
|
.required(true)
|
|
}
|
|
|
|
pub(super) fn get_task<S: AsRef<str>>(replica: &mut Replica, task_arg: S) -> Fallible<Task> {
|
|
let task_arg = task_arg.as_ref();
|
|
|
|
// first try treating task as a working-set reference
|
|
if let Ok(i) = task_arg.parse::<usize>() {
|
|
if let Some(task) = replica.get_working_set_task(i)? {
|
|
return Ok(task);
|
|
}
|
|
}
|
|
|
|
if let Ok(uuid) = Uuid::parse_str(task_arg) {
|
|
if let Some(task) = replica.get_task(&uuid)? {
|
|
return Ok(task);
|
|
}
|
|
}
|
|
|
|
Err(format_err!("Cannot interpret {:?} as a task", task_arg))
|
|
}
|
|
|
|
/// A command invocation contains all of the necessary regarding a single invocation of the CLI.
|
|
#[derive(Debug)]
|
|
pub struct CommandInvocation {
|
|
pub(crate) subcommand: Box<dyn super::SubCommandInvocation>,
|
|
}
|
|
|
|
impl CommandInvocation {
|
|
pub(crate) fn new(subcommand: Box<dyn super::SubCommandInvocation>) -> Self {
|
|
Self { subcommand }
|
|
}
|
|
|
|
pub fn run(self) -> Fallible<()> {
|
|
self.subcommand.run(&self)
|
|
}
|
|
|
|
// -- utilities for command invocations
|
|
|
|
pub(super) fn get_replica(&self) -> Replica {
|
|
Replica::new(Box::new(
|
|
taskstorage::KVStorage::new(Path::new("/tmp/tasks")).unwrap(),
|
|
))
|
|
}
|
|
|
|
pub(super) fn get_server(&self) -> Fallible<impl server::Server> {
|
|
Ok(server::RemoteServer::new(
|
|
"http://localhost:8080".into(),
|
|
Uuid::parse_str("d5b55cbd-9a82-4860-9a39-41b67893b22f").unwrap(),
|
|
))
|
|
}
|
|
}
|