65bb50e88f
Ideally, if someone could review the idea in [this comment](https://github.com/Plume-org/Plume/issues/273#issuecomment-474982184), I'd like to add the implementation to this pr too
53 lines
1.5 KiB
Rust
53 lines
1.5 KiB
Rust
extern crate clap;
|
|
extern crate diesel;
|
|
extern crate dotenv;
|
|
extern crate plume_models;
|
|
extern crate rpassword;
|
|
|
|
use clap::App;
|
|
use diesel::Connection;
|
|
use plume_models::{Connection as Conn, CONFIG};
|
|
use std::io::{self, prelude::*};
|
|
|
|
mod instance;
|
|
mod search;
|
|
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.")
|
|
.subcommand(instance::command())
|
|
.subcommand(users::command())
|
|
.subcommand(search::command());
|
|
let matches = app.clone().get_matches();
|
|
|
|
dotenv::dotenv().ok();
|
|
let conn = Conn::establish(CONFIG.database_url.as_str());
|
|
|
|
match matches.subcommand() {
|
|
("instance", Some(args)) => {
|
|
instance::run(args, &conn.expect("Couldn't connect to the database."))
|
|
}
|
|
("users", Some(args)) => {
|
|
users::run(args, &conn.expect("Couldn't connect to the database."))
|
|
}
|
|
("search", Some(args)) => {
|
|
search::run(args, &conn.expect("Couldn't connect to the database."))
|
|
}
|
|
_ => 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();
|
|
io::stdin()
|
|
.read_line(&mut input)
|
|
.expect("Unable to read line");
|
|
input.retain(|c| c != '\n');
|
|
input
|
|
}
|