Plume/plume-cli/src/main.rs

58 lines
1.7 KiB
Rust
Raw Normal View History

extern crate clap;
extern crate diesel;
extern crate dotenv;
extern crate plume_models;
2018-10-05 14:09:04 +02:00
extern crate rpassword;
use clap::App;
use diesel::Connection;
use plume_models::{Connection as Conn, CONFIG};
use std::io::{self, prelude::*};
mod instance;
mod migration;
mod search;
2019-03-20 17:56:17 +01:00
mod users;
fn main() {
let mut app = App::new("Plume CLI")
.bin_name("plm")
.version(env!("CARGO_PKG_VERSION"))
.about("Collection of tools to manage your Plume instance.")
2018-10-05 14:09:04 +02:00
.subcommand(instance::command())
.subcommand(migration::command())
.subcommand(search::command())
.subcommand(users::command());
let matches = app.clone().get_matches();
dotenv::dotenv().ok();
let conn = Conn::establish(CONFIG.database_url.as_str());
match matches.subcommand() {
2019-03-20 17:56:17 +01:00
("instance", Some(args)) => {
instance::run(args, &conn.expect("Couldn't connect to the database."))
}
("migration", Some(args)) => {
migration::run(args, &conn.expect("Couldn't connect to the database."))
2019-03-20 17:56:17 +01:00
}
("search", Some(args)) => {
search::run(args, &conn.expect("Couldn't connect to the database."))
}
("users", Some(args)) => {
users::run(args, &conn.expect("Couldn't connect to the database."))
}
2019-03-20 17:56:17 +01:00
_ => app.print_help().expect("Couldn't print help"),
};
}
pub fn ask_for(something: &str) -> String {
print!("{}: ", something);
io::stdout().flush().expect("Couldn't flush STDOUT");
let mut input = String::new();
2019-03-20 17:56:17 +01:00
io::stdin()
.read_line(&mut input)
.expect("Unable to read line");
input.retain(|c| c != '\n');
input
}