65 lines
2.1 KiB
Rust
65 lines
2.1 KiB
Rust
use clap::App;
|
|
use diesel::Connection;
|
|
use plume_models::{instance::Instance, Connection as Conn, CONFIG};
|
|
use std::io::{self, prelude::*};
|
|
|
|
mod instance;
|
|
mod list;
|
|
mod migration;
|
|
mod search;
|
|
mod timeline;
|
|
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(migration::command())
|
|
.subcommand(search::command())
|
|
.subcommand(timeline::command())
|
|
.subcommand(list::command())
|
|
.subcommand(users::command());
|
|
let matches = app.clone().get_matches();
|
|
|
|
match dotenv::dotenv() {
|
|
Ok(path) => println!("Configuration read from {}", path.display()),
|
|
Err(ref e) if e.not_found() => eprintln!("no .env was found"),
|
|
e => e.map(|_| ()).unwrap(),
|
|
}
|
|
let conn = Conn::establish(CONFIG.database_url.as_str());
|
|
let _ = conn.as_ref().map(Instance::cache_local);
|
|
|
|
match matches.subcommand() {
|
|
("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."))
|
|
}
|
|
("search", Some(args)) => {
|
|
search::run(args, &conn.expect("Couldn't connect to the database."))
|
|
}
|
|
("timeline", Some(args)) => {
|
|
timeline::run(args, &conn.expect("Couldn't connect to the database."))
|
|
}
|
|
("lists", Some(args)) => list::run(args, &conn.expect("Couldn't connect to the database.")),
|
|
("users", Some(args)) => {
|
|
users::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
|
|
}
|