//! Copyright (C) 2022, Dmitriy Pleshevskiy //! //! tas is free software: you can redistribute it and/or modify //! it under the terms of the GNU General Public License as published by //! the Free Software Foundation, either version 3 of the License, or //! (at your option) any later version. //! //! tas is distributed in the hope that it will be useful, //! but WITHOUT ANY WARRANTY; without even the implied warranty of //! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //! GNU General Public License for more details. //! //! You should have received a copy of the GNU General Public License //! along with tas. If not, see . //! use std::path::PathBuf; use crate::cli::print_task_detail; use crate::repo::{self, Repository}; #[derive(clap::Args)] pub struct Args { #[clap(short, long)] name: Option, #[clap(short, long)] group: Option, #[clap(long)] no_group: bool, #[clap(short, long)] link: Option, #[clap(long)] no_link: bool, #[clap(short, long)] path: Option, #[clap(long)] no_path: bool, idx: usize, } pub fn execute(repo: impl Repository, args: Args) { let res = repo.update_task( args.idx, repo::UpdateTaskData { name: args.name, group: args.no_group.then(|| None).or_else(|| args.group.map(Some)), link: args.no_link.then(|| None).or_else(|| args.link.map(Some)), path: args .no_path .then(|| None) .or_else(|| args.path.map(std::fs::canonicalize).transpose().ok()), }, ); match res { Ok(task) => { println!("The task was changed successfully"); print_task_detail(&task); } Err(err) => { eprintln!("Cannot update the task: {}", err); } } }