summaryrefslogtreecommitdiffstats
path: root/bin/core/imag-category/src/ui.rs
blob: a5810c80f59a7418150aed59542e73ac35c414aa (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
//
// 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 std::path::PathBuf;

use clap::{Arg, ArgMatches, App, SubCommand};
use anyhow::Result;

use libimagstore::storeid::StoreId;
use libimagstore::storeid::IntoStoreId;
use libimagrt::runtime::IdPathProvider;

pub fn build_ui<'a>(app: App<'a, 'a>) -> App<'a, 'a> {
    app
        .subcommand(SubCommand::with_name("create-category")
                    .about("Create a new category")
                    .version("0.1")
                    .arg(Arg::with_name("create-category-name")
                         .index(1)
                         .takes_value(true)
                         .required(true)
                         .multiple(false)
                         .help("The name of the new category")
                         .value_name("NAME"))
                   )

        .subcommand(SubCommand::with_name("delete-category")
                    .about("Delete a new category")
                    .version("0.1")
                    .arg(Arg::with_name("delete-category-name")
                         .index(1)
                         .takes_value(true)
                         .required(true)
                         .multiple(false)
                         .help("The name of the category to delete")
                         .value_name("NAME"))
                   )

        .subcommand(SubCommand::with_name("list-categories")
                    .about("Show all category names")
                    .version("0.1"))

        .subcommand(SubCommand::with_name("list-category")
                    .about("List all entries for a category")
                    .version("0.1")
                    .arg(Arg::with_name("list-category-name")
                         .index(1)
                         .takes_value(true)
                         .required(true)
                         .multiple(false)
                         .help("The name of the category to list all entries for")
                         .value_name("NAME"))
                   )

        .subcommand(SubCommand::with_name("set")
                    .about("Set the category of entries")
                    .version("0.1")
                    .arg(Arg::with_name("set-name")
                         .index(1)
                         .takes_value(true)
                         .required(true)
                         .multiple(false)
                         .help("The name of the category to list all entries for")
                         .value_name("NAME"))

                    .arg(Arg::with_name("set-ids")
                         .index(2)
                         .takes_value(true)
                         .required(false)
                         .multiple(true)
                         .help("The entries to set the category for")
                         .value_name("ID"))
                   )

        .subcommand(SubCommand::with_name("get")
                    .about("Get the category of the entry")
                    .version("0.1")
                    .arg(Arg::with_name("get-ids")
                         .index(1)
                         .takes_value(true)
                         .required(false)
                         .multiple(true)
                         .help("The id of the Entry to get the category for")
                         .value_name("ID"))
                   )
}

pub struct PathProvider;
impl IdPathProvider for PathProvider {
    fn get_ids(matches: &ArgMatches) -> Result<Option<Vec<StoreId>>> {
        fn no_ids_error() -> Result<Option<Vec<StoreId>>> {
            Err(anyhow!("Command does not get IDs as input"))
        }

        fn get_id_paths(field: &str, subm: &ArgMatches) -> Result<Option<Vec<StoreId>>> {
            subm.values_of(field)
                .map(|v| v
                     .map(PathBuf::from)
                     .map(|pb| pb.into_storeid())
                     .collect::<Result<Vec<_>>>()
                )
                .transpose()
        }

        match matches.subcommand() {
            ("create-category", _) => no_ids_error(),
            ("delete-category", _) => no_ids_error(),
            ("list-categories", _) => no_ids_error(),
            ("list-category", _) => no_ids_error(),
            ("set", Some(subm)) => get_id_paths("set-ids", subm),
            ("get", Some(subm)) => get_id_paths("get-ids", subm),
            (other, _) => Err(anyhow!("Not a known command: {}", other)),
        }
    }
}