summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2018-04-14 20:23:58 +0200
committerMatthias Beyer <mail@beyermatthias.de>2018-04-18 14:32:23 +0200
commitcaf0e63b352449c2b3ba538df6103d89af7c3227 (patch)
treee3e6bb256a7bcd3361393ecf1a7c2a5d31d5f5b6
parent2c07ad9a3ac8fb8597c1e0ecb17b5d5b2f278809 (diff)
Rename "create" command to "create-wiki", introduce "create" for creating entries
-rw-r--r--bin/domain/imag-wiki/src/main.rs70
-rw-r--r--bin/domain/imag-wiki/src/ui.rs47
2 files changed, 88 insertions, 29 deletions
diff --git a/bin/domain/imag-wiki/src/main.rs b/bin/domain/imag-wiki/src/main.rs
index e986d053..f2d5a66c 100644
--- a/bin/domain/imag-wiki/src/main.rs
+++ b/bin/domain/imag-wiki/src/main.rs
@@ -31,6 +31,7 @@ extern crate libimagentrylink;
use std::io::Write;
+use clap::ArgMatches;
use regex::Regex;
use libimagrt::runtime::Runtime;
@@ -41,6 +42,7 @@ use libimagerror::io::ToExitCode;
use libimagstore::storeid::IntoStoreId;
use libimagstore::store::FileLockEntry;
use libimagwiki::store::WikiStore;
+use libimagwiki::wiki::Wiki;
use libimagentryedit::edit::{Edit, EditHeader};
mod ui;
@@ -56,12 +58,13 @@ fn main() {
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("delete") => delete(&rt, wiki_name),
- Some("grep") => grep(&rt, wiki_name),
- Some(other) => {
+ Some("ids") => ids(&rt, wiki_name),
+ Some("idof") => idof(&rt, wiki_name),
+ Some("create") => create(&rt, wiki_name),
+ Some("create-wiki") => create_wiki(&rt, wiki_name),
+ Some("delete") => delete(&rt, wiki_name),
+ Some("grep") => grep(&rt, wiki_name),
+ Some(other) => {
debug!("Unknown command");
let _ = rt.handle_unknown_subcommand("imag-wiki", other, rt.cli())
.map_err_trace_exit_unwrap(1)
@@ -139,36 +142,55 @@ fn idof(rt: &Runtime, wiki_name: &str) {
}
fn create(rt: &Runtime, wiki_name: &str) {
- 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 main = String::from(scmd.value_of("create-mainpagename").unwrap_or("main"));
- let edit = !scmd.is_present("create-noedit");
- let edit_header = scmd.is_present("create-editheader");
- let prid = !scmd.is_present("create-printid");
-
- let mut mainpage = rt
+ 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()
- .create_wiki(&name, Some(&main))
- .map_err_trace_exit_unwrap(1)
- .get_entry(&main)
+ .get_wiki(&wiki_name)
.map_err_trace_exit_unwrap(1)
.unwrap_or_else(|| {
- error!("Main page '{}' was not created. This seems to be a bug!", main);
- ::std::process::exit(1);
+ error!("No wiki '{}' found", wiki_name);
+ ::std::process::exit(1)
});
- if edit {
- if edit_header {
- let _ = mainpage.edit_header_and_content(rt).map_err_trace_exit_unwrap(1);
+ create_in_wiki(rt, &name, &wiki, scmd,
+ "create-noedit", "create-editheader", "create-printid");
+}
+
+fn create_wiki(rt: &Runtime, wiki_name: &str) {
+ 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 main = String::from(scmd.value_of("create-wiki-mainpagename").unwrap_or("main"));
+
+ let wiki = rt.store().create_wiki(&wiki_name, Some(&main)).map_err_trace_exit_unwrap(1);
+
+ create_in_wiki(rt, &main, &wiki, scmd,
+ "create-wiki-noedit", "create-wiki-editheader", "create-wiki-printid");
+}
+
+fn create_in_wiki(rt: &Runtime,
+ entry_name: &str,
+ wiki: &Wiki,
+ scmd: &ArgMatches,
+ noedit_flag: &'static str,
+ editheader_flag: &'static str,
+ printid_flag: &'static str)
+{
+ let mut entry = wiki.create_entry(entry_name).map_err_trace_exit_unwrap(1);
+
+ if !scmd.is_present(noedit_flag) {
+ if scmd.is_present(editheader_flag) {
+ let _ = entry.edit_header_and_content(rt).map_err_trace_exit_unwrap(1);
} else {
- let _ = mainpage.edit_content(rt).map_err_trace_exit_unwrap(1);
+ let _ = entry.edit_content(rt).map_err_trace_exit_unwrap(1);
}
}
if scmd.is_present(printid_flag) {
let out = rt.stdout();
let mut lock = out.lock();
- let id = mainpage.get_location();
+ let id = entry.get_location();
writeln!(lock, "{}", id).to_exit_code().unwrap_or_exit()
}
diff --git a/bin/domain/imag-wiki/src/ui.rs b/bin/domain/imag-wiki/src/ui.rs
index 3b659c28..fcb06d77 100644
--- a/bin/domain/imag-wiki/src/ui.rs
+++ b/bin/domain/imag-wiki/src/ui.rs
@@ -61,10 +61,10 @@ pub fn build_ui<'a>(app: App<'a, 'a>) -> App<'a, 'a> {
.help("Add the entry under this name. The name must be unique, namespaces ('foo/bar') are allowed."))
)
- .subcommand(SubCommand::with_name("create")
- .about("Add wiki entry")
+ .subcommand(SubCommand::with_name("create-wiki")
+ .about("Create wiki")
.version("0.1")
- .arg(Arg::with_name("create-name")
+ .arg(Arg::with_name("create-wiki-name")
.index(1)
.takes_value(true)
.required(true)
@@ -72,7 +72,7 @@ pub fn build_ui<'a>(app: App<'a, 'a>) -> App<'a, 'a> {
.value_name("NAME")
.help("Name of the wiki"))
- .arg(Arg::with_name("create-mainpagename")
+ .arg(Arg::with_name("create-wiki-mainpagename")
.long("mainpage")
.short("M")
.takes_value(true)
@@ -80,6 +80,43 @@ pub fn build_ui<'a>(app: App<'a, 'a>) -> App<'a, 'a> {
.multiple(false)
.help("Name of the main page. Currently only for the first page to be created. Defaults to 'main'."))
+ .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")
@@ -94,7 +131,7 @@ pub fn build_ui<'a>(app: App<'a, 'a>) -> App<'a, 'a> {
.takes_value(false)
.required(false)
.multiple(false)
- .help("Do edit header when editing main page entry.")
+ .help("Do edit header when editing entry.")
.conflicts_with("create-noedit"))
.arg(Arg::with_name("create-printid")