summaryrefslogtreecommitdiffstats
path: root/bin/domain/imag-diary/src/delete.rs
blob: d80ac6d5819e4318f166e087e2debb7a32d88464 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
//
// imag - the personal information management suite for the commandline
// Copyright (C) 2015-2020 Matthias Beyer <mail@beyermatthias.de> and contributors
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; version
// 2.1 of the License.
//
// This library 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
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
//

use chrono::naive::NaiveDateTime as NDT;
use anyhow::Result;


use libimagdiary::diaryid::DiaryId;
use libimagrt::runtime::Runtime;
use libimagtimeui::datetime::DateTime;
use libimagtimeui::parse::Parse;
use libimagstore::storeid::IntoStoreId;

use crate::util::get_diary_name;

pub fn delete(rt: &Runtime) -> Result<()> {
    use libimaginteraction::ask::ask_bool;

    let diaryname = get_diary_name(rt)
        .ok_or_else(|| anyhow!("No diary selected. Use either the configuration file or the commandline option"))?;

    let to_del_location = rt
        .cli()
        .subcommand_matches("delete")
        .unwrap()
        .value_of("datetime")
        .map(|dt| { debug!("DateTime = {:?}", dt); dt })
        .and_then(DateTime::parse)
        .map(Into::into)
        .ok_or_else(|| anyhow!("Not deleting entries: missing date/time specification"))
        .and_then(|dt: NDT| DiaryId::from_datetime(diaryname.clone(), dt).into_storeid())
        .and_then(|id| rt.store().retrieve(id))?
        .get_location()
        .clone();

    let mut input  = rt.stdin().ok_or_else(|| anyhow!("No input stream. Cannot ask for permission"))?;
    let mut output = rt.stdout();

    if !ask_bool(&format!("Deleting {:?}", to_del_location), Some(true), &mut input, &mut output)? {
        info!("Aborting delete action");
        return Ok(());
    }

    rt.report_touched(&to_del_location)?;
    rt.store().delete(to_del_location)
}