summaryrefslogtreecommitdiffstats
path: root/bin/domain
diff options
context:
space:
mode:
Diffstat (limited to 'bin/domain')
-rw-r--r--bin/domain/imag-bookmark/Cargo.toml4
-rw-r--r--bin/domain/imag-contact/Cargo.toml4
-rw-r--r--bin/domain/imag-contact/src/create.rs15
-rw-r--r--bin/domain/imag-diary/Cargo.toml4
-rw-r--r--bin/domain/imag-diary/src/list.rs28
-rw-r--r--bin/domain/imag-diary/src/main.rs2
-rw-r--r--bin/domain/imag-habit/Cargo.toml4
-rw-r--r--bin/domain/imag-log/Cargo.toml4
-rw-r--r--bin/domain/imag-log/src/main.rs2
-rw-r--r--bin/domain/imag-mail/Cargo.toml4
-rw-r--r--bin/domain/imag-mail/src/main.rs17
-rw-r--r--bin/domain/imag-notes/Cargo.toml4
-rw-r--r--bin/domain/imag-notes/src/main.rs17
-rw-r--r--bin/domain/imag-timetrack/Cargo.toml4
-rw-r--r--bin/domain/imag-timetrack/src/main.rs15
-rw-r--r--bin/domain/imag-todo/Cargo.toml4
-rw-r--r--bin/domain/imag-todo/src/main.rs17
-rw-r--r--bin/domain/imag-wiki/Cargo.toml36
l---------bin/domain/imag-wiki/README.md1
-rw-r--r--bin/domain/imag-wiki/src/main.rs274
-rw-r--r--bin/domain/imag-wiki/src/ui.rs170
21 files changed, 597 insertions, 33 deletions
diff --git a/bin/domain/imag-bookmark/Cargo.toml b/bin/domain/imag-bookmark/Cargo.toml
index 2192dc68..5a871692 100644
--- a/bin/domain/imag-bookmark/Cargo.toml
+++ b/bin/domain/imag-bookmark/Cargo.toml
@@ -32,7 +32,7 @@ libimagbookmark = { version = "0.7.0", path = "../../../lib/domain/libimagbookm
libimagutil = { version = "0.7.0", path = "../../../lib/etc/libimagutil" }
[dependencies.clap]
-version = ">=2.29"
+version = "^2.29"
default-features = false
-features = ["color", "suggestions"]
+features = ["color", "suggestions", "wrap_help"]
diff --git a/bin/domain/imag-contact/Cargo.toml b/bin/domain/imag-contact/Cargo.toml
index 9048c5e9..a6033fb3 100644
--- a/bin/domain/imag-contact/Cargo.toml
+++ b/bin/domain/imag-contact/Cargo.toml
@@ -46,7 +46,7 @@ default-features = false
features = ["deser"]
[dependencies.clap]
-version = ">=2.29"
+version = "^2.29"
default-features = false
-features = ["color", "suggestions"]
+features = ["color", "suggestions", "wrap_help"]
diff --git a/bin/domain/imag-contact/src/create.rs b/bin/domain/imag-contact/src/create.rs
index 03dde897..15d885b2 100644
--- a/bin/domain/imag-contact/src/create.rs
+++ b/bin/domain/imag-contact/src/create.rs
@@ -17,6 +17,21 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
//
+#![deny(
+ non_camel_case_types,
+ non_snake_case,
+ path_statements,
+ trivial_numeric_casts,
+ unstable_features,
+ unused_allocation,
+ unused_import_braces,
+ unused_imports,
+ unused_must_use,
+ unused_mut,
+ unused_qualifications,
+ while_true,
+)]
+
use std::collections::BTreeMap;
use std::process::exit;
use std::io::Write;
diff --git a/bin/domain/imag-diary/Cargo.toml b/bin/domain/imag-diary/Cargo.toml
index 2a966926..3ff15cc1 100644
--- a/bin/domain/imag-diary/Cargo.toml
+++ b/bin/domain/imag-diary/Cargo.toml
@@ -37,7 +37,7 @@ libimagutil = { version = "0.7.0", path = "../../../lib/etc/libimagutil"
libimagtimeui = { version = "0.7.0", path = "../../../lib/etc/libimagtimeui" }
[dependencies.clap]
-version = ">=2.29"
+version = "^2.29"
default-features = false
-features = ["color", "suggestions"]
+features = ["color", "suggestions", "wrap_help"]
diff --git a/bin/domain/imag-diary/src/list.rs b/bin/domain/imag-diary/src/list.rs
index 158ef577..f1a8164f 100644
--- a/bin/domain/imag-diary/src/list.rs
+++ b/bin/domain/imag-diary/src/list.rs
@@ -26,6 +26,10 @@ use libimagerror::trace::MapErrTrace;
use libimagerror::io::ToExitCode;
use libimagerror::exit::ExitUnwrap;
use libimagutil::debug_result::*;
+use libimagdiary::diaryid::DiaryId;
+use libimagdiary::diaryid::FromStoreId;
+use libimagdiary::error::Result;
+
use util::get_diary_name;
@@ -33,17 +37,21 @@ pub fn list(rt: &Runtime) {
let diaryname = get_diary_name(rt)
.unwrap_or_else(|| warn_exit("No diary selected. Use either the configuration file or the commandline option", 1));
- Diary::entries(rt.store(), &diaryname)
+ let mut ids = Diary::entries(rt.store(), &diaryname)
.map_dbg_str("Ok")
.map_err_trace_exit_unwrap(1)
- .for_each(|id| {
- writeln!(rt.stdout(), "{}", id
- .without_base()
- .to_str()
- .map_err_trace()
- .unwrap_or(String::from("<<Path Parsing Error>>")))
- .to_exit_code()
- .unwrap_or_exit();
- })
+ .map(|id| DiaryId::from_storeid(&id))
+ .collect::<Result<Vec<_>>>()
+ .map_err_trace_exit_unwrap(1);
+
+ ids.sort_by_key(|id| {
+ [id.year() as u32, id.month(), id.day(), id.hour(), id.minute(), id.second()]
+ });
+
+ for id in ids {
+ writeln!(rt.stdout(), "{}", id)
+ .to_exit_code()
+ .unwrap_or_exit();
+ }
}
diff --git a/bin/domain/imag-diary/src/main.rs b/bin/domain/imag-diary/src/main.rs
index 201f8431..85da8835 100644
--- a/bin/domain/imag-diary/src/main.rs
+++ b/bin/domain/imag-diary/src/main.rs
@@ -86,7 +86,7 @@ fn main() {
let _ = rt.handle_unknown_subcommand("imag-diary", other, rt.cli())
.map_err_trace_exit_unwrap(1)
.code()
- .map(std::process::exit);
+ .map(::std::process::exit);
},
}
});
diff --git a/bin/domain/imag-habit/Cargo.toml b/bin/domain/imag-habit/Cargo.toml
index ce27ad00..ba5349b1 100644
--- a/bin/domain/imag-habit/Cargo.toml
+++ b/bin/domain/imag-habit/Cargo.toml
@@ -39,7 +39,7 @@ libimagtimeui = { version = "0.7.0", path = "../../../lib/etc/libimagtimeui
libimaghabit = { version = "0.7.0", path = "../../../lib/domain/libimaghabit" }
[dependencies.clap]
-version = ">=2.29"
+version = "^2.29"
default-features = false
-features = ["color", "suggestions"]
+features = ["color", "suggestions", "wrap_help"]
diff --git a/bin/domain/imag-log/Cargo.toml b/bin/domain/imag-log/Cargo.toml
index 5ca9e3d5..f3c407db 100644
--- a/bin/domain/imag-log/Cargo.toml
+++ b/bin/domain/imag-log/Cargo.toml
@@ -34,7 +34,7 @@ libimagdiary = { version = "0.7.0", path = "../../../lib/domain/libimagdiary" }
libimaglog = { version = "0.7.0", path = "../../../lib/domain/libimaglog" }
[dependencies.clap]
-version = ">=2.29"
+version = "^2.29"
default-features = false
-features = ["color", "suggestions"]
+features = ["color", "suggestions", "wrap_help"]
diff --git a/bin/domain/imag-log/src/main.rs b/bin/domain/imag-log/src/main.rs
index bc5a6a74..277ccaea 100644
--- a/bin/domain/imag-log/src/main.rs
+++ b/bin/domain/imag-log/src/main.rs
@@ -77,7 +77,7 @@ fn main() {
let _ = rt.handle_unknown_subcommand("imag-log", other, rt.cli())
.map_err_trace_exit_unwrap(1)
.code()
- .map(std::process::exit);
+ .map(::std::process::exit);
},
}
} else {
diff --git a/bin/domain/imag-mail/Cargo.toml b/bin/domain/imag-mail/Cargo.toml
index 4ba2f737..e818bd56 100644
--- a/bin/domain/imag-mail/Cargo.toml
+++ b/bin/domain/imag-mail/Cargo.toml
@@ -30,7 +30,7 @@ libimagmail = { version = "0.7.0", path = "../../../lib/domain/libimagmail"
libimagutil = { version = "0.7.0", path = "../../../lib/etc/libimagutil" }
[dependencies.clap]
-version = ">=2.29"
+version = "^2.29"
default-features = false
-features = ["color", "suggestions"]
+features = ["color", "suggestions", "wrap_help"]
diff --git a/bin/domain/imag-mail/src/main.rs b/bin/domain/imag-mail/src/main.rs
index b7d67f80..57ebf8ea 100644
--- a/bin/domain/imag-mail/src/main.rs
+++ b/bin/domain/imag-mail/src/main.rs
@@ -17,6 +17,21 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
//
+#![deny(
+ non_camel_case_types,
+ non_snake_case,
+ path_statements,
+ trivial_numeric_casts,
+ unstable_features,
+ unused_allocation,
+ unused_import_braces,
+ unused_imports,
+ unused_must_use,
+ unused_mut,
+ unused_qualifications,
+ while_true,
+)]
+
extern crate clap;
#[macro_use] extern crate log;
@@ -59,7 +74,7 @@ fn main() {
let _ = rt.handle_unknown_subcommand("imag-mail", other, rt.cli())
.map_err_trace_exit_unwrap(1)
.code()
- .map(std::process::exit);
+ .map(::std::process::exit);
}
}
});
diff --git a/bin/domain/imag-notes/Cargo.toml b/bin/domain/imag-notes/Cargo.toml
index c83d6118..567a8ec3 100644
--- a/bin/domain/imag-notes/Cargo.toml
+++ b/bin/domain/imag-notes/Cargo.toml
@@ -33,7 +33,7 @@ libimagutil = { version = "0.7.0", path = "../../../lib/etc/libimagutil" }
libimagstore = { version = "0.7.0", path = "../../../lib/core/libimagstore" }
[dependencies.clap]
-version = ">=2.29"
+version = "^2.29"
default-features = false
-features = ["color", "suggestions"]
+features = ["color", "suggestions", "wrap_help"]
diff --git a/bin/domain/imag-notes/src/main.rs b/bin/domain/imag-notes/src/main.rs
index 6d193b4c..188fe9a3 100644
--- a/bin/domain/imag-notes/src/main.rs
+++ b/bin/domain/imag-notes/src/main.rs
@@ -17,6 +17,21 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
//
+#![deny(
+ non_camel_case_types,
+ non_snake_case,
+ path_statements,
+ trivial_numeric_casts,
+ unstable_features,
+ unused_allocation,
+ unused_import_braces,
+ unused_imports,
+ unused_must_use,
+ unused_mut,
+ unused_qualifications,
+ while_true,
+)]
+
extern crate clap;
#[macro_use] extern crate log;
extern crate itertools;
@@ -71,7 +86,7 @@ fn main() {
let _ = rt.handle_unknown_subcommand("imag-notes", other, rt.cli())
.map_err_trace_exit_unwrap(1)
.code()
- .map(std::process::exit);
+ .map(::std::process::exit);
},
};
});
diff --git a/bin/domain/imag-timetrack/Cargo.toml b/bin/domain/imag-timetrack/Cargo.toml
index 754450af..7d365413 100644
--- a/bin/domain/imag-timetrack/Cargo.toml
+++ b/bin/domain/imag-timetrack/Cargo.toml
@@ -36,7 +36,7 @@ libimagtimetrack = { version = "0.7.0", path = "../../../lib/domain/libimagtimet
libimagutil = { version = "0.7.0", path = "../../../lib/etc/libimagutil" }
[dependencies.clap]
-version = ">=2.29"
+version = "^2.29"
default-features = false
-features = ["color", "suggestions"]
+features = ["color", "suggestions", "wrap_help"]
diff --git a/bin/domain/imag-timetrack/src/main.rs b/bin/domain/imag-timetrack/src/main.rs
index 2f432452..d482d112 100644
--- a/bin/domain/imag-timetrack/src/main.rs
+++ b/bin/domain/imag-timetrack/src/main.rs
@@ -17,6 +17,21 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
//
+#![deny(
+ non_camel_case_types,
+ non_snake_case,
+ path_statements,
+ trivial_numeric_casts,
+ unstable_features,
+ unused_allocation,
+ unused_import_braces,
+ unused_imports,
+ unused_must_use,
+ unused_mut,
+ unused_qualifications,
+ while_true,
+)]
+
#[macro_use]
extern crate log;
diff --git a/bin/domain/imag-todo/Cargo.toml b/bin/domain/imag-todo/Cargo.toml
index 1225b390..3db875ad 100644
--- a/bin/domain/imag-todo/Cargo.toml
+++ b/bin/domain/imag-todo/Cargo.toml
@@ -32,7 +32,7 @@ libimagerror = { version = "0.7.0", path = "../../../lib/core/libimagerror" }
libimagtodo = { version = "0.7.0", path = "../../../lib/domain/libimagtodo" }
[dependencies.clap]
-version = ">=2.29"
+version = "^2.29"
default-features = false
-features = ["color", "suggestions"]
+features = ["color", "suggestions", "wrap_help"]
diff --git a/bin/domain/imag-todo/src/main.rs b/bin/domain/imag-todo/src/main.rs
index 22ae1ede..cf1d4ccb 100644
--- a/bin/domain/imag-todo/src/main.rs
+++ b/bin/domain/imag-todo/src/main.rs
@@ -17,6 +17,21 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
//
+#![deny(
+ non_camel_case_types,
+ non_snake_case,
+ path_statements,
+ trivial_numeric_casts,
+ unstable_features,
+ unused_allocation,
+ unused_import_braces,
+ unused_imports,
+ unused_must_use,
+ unused_mut,
+ unused_qualifications,
+ while_true,
+)]
+
extern crate clap;
#[macro_use] extern crate log;
extern crate toml;
@@ -56,7 +71,7 @@ fn main() {
let _ = rt.handle_unknown_subcommand("imag-todo", other, rt.cli())
.map_err_trace_exit_unwrap(1)
.code()
- .map(std::process::exit);
+ .map(::std::process::exit);
}
None => {
warn!("No command");
diff --git a/bin/domain/imag-wiki/Cargo.toml b/bin/domain/imag-wiki/Cargo.toml
new file mode 100644
index 00000000..edd591b2
--- /dev/null
+++ b/bin/domain/imag-wiki/Cargo.toml
@@ -0,0 +1,36 @@
+[package]
+name = "imag-wiki"
+version = "0.7.0"
+authors = ["Matthias Beyer <mail@beyermatthias.de>"]
+
+description = "Part of the imag core distribution: imag-wiki command"
+
+keywords = ["imag", "PIM", "personal", "information", "management"]
+readme = "../../../README.md"
+license = "LGPL-2.1"
+
+documentation = "https://matthiasbeyer.github.io/imag/imag_documentation/index.html"
+repository = "https://github.com/matthiasbeyer/imag"
+homepage = "http://imag-pim.org"
+
+build = "../../../build.rs"
+
+[dependencies]
+clap = ">=2.17"
+log = "0.3"
+toml = "0.4"
+toml-query = "0.6"
+is-match = "0.1"
+version = "2.0.1"
+regex = "0.2"
+filters = "0.2"
+
+libimagentryedit = { version = "0.7.0", path = "../../../lib/entry/libimagentryedit" }
+libimagentrylink = { version = "0.7.0", path = "../../../lib/entry/libimagentrylink" }
+libimagentrymarkdown = { version = "0.7.0", path = "../../../lib/entry/libimagentrymarkdown" }
+libimagerror = { version = "0.7.0", path = "../../../lib/core/libimagerror" }
+libimagrt = { version = "0.7.0", path = "../../../lib/core/libimagrt" }
+libimagstore = { version = "0.7.0", path = "../../../lib/core/libimagstore" }
+libimagwiki = { version = "0.7.0", path = "../../../lib/domain/libimagwiki" }
+libimagutil = { version = "0.7.0", path = "../../../lib/etc/libimagutil" }
+
diff --git a/bin/domain/imag-wiki/README.md b/bin/domain/imag-wiki/README.md
new file mode 120000
index 00000000..c6f30017
--- /dev/null
+++ b/bin/domain/imag-wiki/README.md
@@ -0,0 +1 @@
+../../../doc/src/04020-module-wiki.md \ No newline at end of file
diff --git a/bin/domain/imag-wiki/src/main.rs b/bin/domain/imag-wiki/src/main.rs
new file mode 100644
index 00000000..5c393bca
--- /dev/null
+++ b/bin/domain/imag-wiki/src/main.rs
@@ -0,0 +1,274 @@
+//
+// imag - the personal information management suite for the commandline
+// Copyright (C) 2015-2018 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
+//
+
+extern crate clap;
+extern crate regex;
+extern crate filters;
+#[macro_use] extern crate log;
+
+#[macro_use] extern crate libimagrt;
+extern crate libimagerror;
+extern crate libimagstore;
+extern crate libimagwiki;
+extern crate libimagentryedit;
+extern crate libimagentrylink;
+extern crate libimagutil;
+
+use std::io::Write;
+
+use libimagrt::runtime::Runtime;
+use libimagrt::setup::generate_runtime_setup;
+use libimagerror::trace::MapErrTrace;
+use libimagerror::exit::ExitUnwrap;
+use libimagerror::io::ToExitCode;
+use libimagwiki::store::WikiStore;
+use libimagentryedit::edit::{Edit, EditHeader};
+
+mod ui;
+use ui::build_ui;
+
+fn main() {
+ let version = make_imag_version!();
+ let rt = generate_runtime_setup("imag-wiki",
+ &version,
+ "Personal wiki",
+ build_ui);
+
+ let wiki_name = rt.cli().value_of("wikiname").unwrap_or("default");
+
+ match rt.cli().subcommand_name() {
+ Some("ids") => ids(&rt, wiki_name),
+ Some("idof") => idof(&rt, wiki_name),
+ Some("create") => create(&rt, wiki_name),
+ Some("create-wiki") => create_wiki(&rt),
+ Some("show") => show(&rt, wiki_name),
+ Some("delete") => delete(&rt, wiki_name),
+ Some(other) => {
+ debug!("Unknown command");
+ let _ = rt.handle_unknown_subcommand("imag-wiki", other, rt.cli())
+ .map_err_trace_exit_unwrap(1)
+ .code()
+ .map(std::process::exit);
+ }
+ None => warn!("No command"),
+ } // end match scmd
+} // end main
+
+fn ids(rt: &Runtime, wiki_name: &str) {
+ let scmd = rt.cli().subcommand_matches("ids").unwrap(); // safed by clap
+ let prefix = if scmd.is_present("ids-full") {
+ format!("{}/", rt.store().path().display())
+ } else {
+ String::from("")
+ };
+
+ let out = rt.stdout();
+ let mut outlock = out.lock();
+
+ rt.store()
+ .get_wiki(wiki_name)
+ .map_err_trace_exit_unwrap(1)
+ .unwrap_or_else(|| {
+ error!("No wiki '{}' found", wiki_name);
+ ::std::process::exit(1)
+ })
+ .all_ids()
+ .map_err_trace_exit_unwrap(1)
+ .for_each(|id| {
+ let _ = writeln!(outlock, "{}{}", prefix, id)
+ .to_exit_code()
+ .unwrap_or_exit();
+ });
+}
+
+fn idof(rt: &Runtime, wiki_name: &str) {
+ let scmd = rt.cli().subcommand_matches("idof").unwrap(); // safed by clap
+
+ let entryname = scmd
+ .value_of("idof-name")
+ .map(String::from)
+ .unwrap(); // safed by clap
+
+ let out = rt.stdout();
+ let mut lock = out.lock();
+
+ let _ = rt.store()
+ .get_wiki(wiki_name)
+ .map_err_trace_exit_unwrap(1)
+ .unwrap_or_else(|| {
+ error!("No wiki '{}' found", wiki_name);
+ ::std::process::exit(1)
+ })
+ .get_entry(&entryname)
+ .map_err_trace_exit_unwrap(1)
+ .map(|entry| {
+ let id = entry.get_location().clone();
+ let prefix = if scmd.is_present("idof-full") {
+ format!("{}/", rt.store().path().display())
+ } else {
+ String::from("")
+ };
+
+ writeln!(lock, "{}{}", prefix, id).to_exit_code().unwrap_or_exit()
+ })
+ .unwrap_or_else(|| {
+ error!("Entry '{}' in wiki '{}' not found!", entryname, wiki_name);
+ ::std::process::exit(1)
+ });
+}
+
+fn create(rt: &Runtime, wiki_name: &str) {
+ use libimagwiki::entry::WikiEntry;
+ use libimagutil::warn_result::WarnResult;
+
+ let scmd = rt.cli().subcommand_matches("create").unwrap(); // safed by clap
+ let name = String::from(scmd.value_of("create-name").unwrap()); // safe by clap
+
+ let wiki = rt
+ .store()
+ .get_wiki(&wiki_name)
+ .map_err_trace_exit_unwrap(1)
+ .unwrap_or_else(|| {
+ error!("No wiki '{}' found", wiki_name);
+ ::std::process::exit(1)
+ });
+
+ let mut entry = wiki.create_entry(name).map_err_trace_exit_unwrap(1);
+
+ if !scmd.is_present("create-noedit") {
+ if scmd.is_present("create-editheader") {
+ let _ = entry.edit_header_and_content(rt).map_err_trace_exit_unwrap(1);
+ } else {
+ let _ = entry.edit_content(rt).map_err_trace_exit_unwrap(1);
+ }
+ }
+
+ let _ = entry.autolink(rt.store())
+ .map_warn_err_str("Linking has failed. Trying to safe the entry now. Please investigate by hand if this succeeds.")
+ .map_err(|e| {
+ let _ = rt.store().update(&mut entry).map_err_trace_exit_unwrap(1);
+ e
+ })
+ .map_warn_err_str("Safed entry")
+ .map_err_trace_exit_unwrap(1);
+
+ if scmd.is_present("create-printid") {
+ let out = rt.stdout();
+ let mut lock = out.lock();
+ let id = entry.get_location();
+
+ writeln!(lock, "{}", id).to_exit_code().unwrap_or_exit()
+ }
+}
+
+fn create_wiki(rt: &Runtime) {
+ let scmd = rt.cli().subcommand_matches("create-wiki").unwrap(); // safed by clap
+ let wiki_name = String::from(scmd.value_of("create-wiki-name").unwrap()); // safe by clap
+ let _ = rt.store().create_wiki(&wiki_name).map_err_trace_exit_unwrap(1);
+}
+
+fn show(rt: &Runtime, wiki_name: &str) {
+ use filters::filter::Filter;
+
+ let scmd = rt.cli().subcommand_matches("show").unwrap(); // safed by clap
+
+ struct NameFilter(Option<Vec<String>>);
+ impl Filter<String> for NameFilter {
+ fn filter(&self, e: &String) -> bool {
+ match self.0 {
+ Some(ref v) => v.contains(e),
+ None => false,
+ }
+ }
+ }
+
+ let namefilter = NameFilter(scmd
+ .values_of("show-name")
+ .map(|v| v.map(String::from).collect::<Vec<String>>()));
+
+ let names = scmd
+ .values_of("show-name")
+ .unwrap() // safe by clap
+ .map(String::from)
+ .filter(|e| namefilter.filter(e))
+ .collect::<Vec<_>>();
+
+ let wiki = rt
+ .store()
+ .get_wiki(&wiki_name)
+ .map_err_trace_exit_unwrap(1)
+ .unwrap_or_else(|| {
+ error!("No wiki '{}' found", wiki_name);
+ ::std::process::exit(1)
+ });
+
+ let out = rt.stdout();
+ let mut outlock = out.lock();
+
+ for name in names {
+ let entry = wiki
+ .get_entry(&name)
+ .map_err_trace_exit_unwrap(1)
+ .unwrap_or_else(|| {
+ error!("No wiki entry '{}' found in wiki '{}'", name, wiki_name);
+ ::std::process::exit(1)
+ });
+
+ writeln!(outlock, "{}", entry.get_location())
+ .to_exit_code()
+ .unwrap_or_exit();
+
+ writeln!(outlock, "{}", entry.get_content())
+ .to_exit_code()
+ .unwrap_or_exit();
+ }
+}
+
+fn delete(rt: &Runtime, wiki_name: &str) {
+ use libimagentrylink::internal::InternalLinker;
+
+ let scmd = rt.cli().subcommand_matches("delete").unwrap(); // safed by clap
+ let name = String::from(scmd.value_of("delete-name").unwrap()); // safe by clap
+ let unlink = !scmd.is_present("delete-no-remove-linkings");
+
+ let wiki = rt
+ .store()
+ .get_wiki(&wiki_name)
+ .map_err_trace_exit_unwrap(1)
+ .unwrap_or_else(|| {
+ error!("No wiki '{}' found", wiki_name);
+ ::std::process::exit(1)
+ });
+
+ if unlink {
+ wiki.get_entry(&name)
+ .map_err_trace_exit_unwrap(1)
+ .unwrap_or_else(|| {
+ error!("No wiki entry '{}' in '{}' found", name, wiki_name);
+ ::std::process::exit(1)
+ })
+ .unlink(rt.store())
+ .map_err_trace_exit_unwrap(1);
+ }
+
+ let _ = wiki
+ .delete_entry(&name)
+ .map_err_trace_exit_unwrap(1);
+}
+
diff --git a/bin/domain/imag-wiki/src/ui.rs b/bin/domain/imag-wiki/src/ui.rs
new file mode 100644
index 00000000..17b0edc0
--- /dev/null
+++ b/bin/domain/imag-wiki/src/ui.rs
@@ -0,0 +1,170 @@
+//
+// imag - the personal information management suite for the commandline
+// Copyright (C) 2015-2018 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 clap::{Arg, App, SubCommand};
+
+pub fn build_ui<'a>(app: App<'a, 'a>) -> App<'a, 'a> {
+ app
+ .arg(Arg::with_name("wikiname")
+ .long("wiki")
+ .short("w")
+ .takes_value(true)
+ .required(false)
+ .multiple(false)
+ .value_name("WIKI")
+ .help("Name of the wiki to use. Defaults to 'default'"))
+
+ .subcommand(SubCommand::with_name("ids")
+ .about("List all ids in this wiki")
+ .version("0.1")
+
+ .arg(Arg::with_name("ids-full")
+ .long("full")
+ .takes_value(false)
+ .required(false)
+ .multiple(false)
+ .help("Print full filepath")))
+
+ .subcommand(SubCommand::with_name("idof")
+ .about("List id of an entry in this wiki, if it exists")
+ .version("0.1")
+
+ .arg(Arg::with_name("idof-full")
+ .long("full")
+ .takes_value(false)
+ .required(false)
+ .multiple(false)
+ .help("Print full filepath"))
+
+ .arg(Arg::with_name("idof-name")
+ .index(1)
+ .takes_value(true)
+ .required(true)
+ .multiple(false)
+ .value_name("NAME")
+ .help("Add the entry under this name. The name must be unique, namespaces ('foo/bar') are allowed."))
+ )
+
+ .subcommand(SubCommand::with_name("create-wiki")
+ .about("Create wiki")
+ .version("0.1")
+ .arg(Arg::with_name("create-wiki-name")
+ .index(1)
+ .takes_value(true)
+ .required(true)
+ .multiple(false)
+ .value_name("NAME")
+ .help("Name of the wiki"))
+
+ .arg(Arg::with_name("create-wiki-noedit")
+ .long("no-edit")
+ .short("E")
+ .takes_value(false)
+ .required(false)
+ .multiple(false)
+ .help("Do not call the editor on the newly created entry.")
+ .conflicts_with("create-wiki-editheader"))
+
+ .arg(Arg::with_name("create-wiki-editheader")
+ .long("header")
+ .takes_value(false)
+ .required(false)
+ .multiple(false)
+ .help("Do edit header when editing main page entry.")
+ .conflicts_with("create-wiki-noedit"))
+
+ .arg(Arg::with_name("create-wiki-printid")
+ .long("print-id")
+ .short("I")
+ .takes_value(false)
+ .required(false)
+ .multiple(false)
+ .help("Print the store id after creating"))
+ )
+
+ .subcommand(SubCommand::with_name("create")
+ .about("Add wiki entry")
+ .version("0.1")
+
+ .arg(Arg::with_name("create-name")
+ .index(1)
+ .takes_value(true)
+ .required(true)
+ .multiple(false)
+ .help("Name of the page."))
+
+ .arg(Arg::with_name("create-noedit")
+ .long("no-edit")
+ .short("E")
+ .takes_value(false)
+ .required(false)
+ .multiple(false)
+ .help("Do not call the editor on the newly created entry.")
+ .conflicts_with("create-editheader"))
+
+ .arg(Arg::with_name("create-editheader")
+ .long("header")
+ .takes_value(false)
+ .required(false)
+ .multiple(false)
+ .help("Do edit header when editing entry.")
+ .conflicts_with("create-noedit"))
+
+ .arg(Arg::with_name("create-printid")
+ .long("print-id")
+ .short("I")
+ .takes_value(false)
+ .required(false)