proxmox-backup/src/bin/proxmox-backup-api.rs

94 lines
2.4 KiB
Rust
Raw Normal View History

2018-12-20 09:32:49 +00:00
extern crate proxmox_backup;
2018-11-16 12:14:11 +00:00
2018-11-23 12:18:41 +00:00
use std::sync::Arc;
2018-12-20 09:32:49 +00:00
use proxmox_backup::api::schema::*;
use proxmox_backup::api::router::*;
use proxmox_backup::api::config::*;
use proxmox_backup::server::rest::*;
use proxmox_backup::getopts;
2018-10-31 09:42:14 +00:00
2018-11-15 09:14:08 +00:00
//use failure::*;
use lazy_static::lazy_static;
use futures::future::Future;
2018-11-09 07:22:54 +00:00
use hyper;
2018-10-31 09:42:14 +00:00
2018-10-30 09:04:30 +00:00
fn main() {
2019-01-26 09:56:11 +00:00
if let Err(err) = syslog::init(
syslog::Facility::LOG_DAEMON,
log::LevelFilter::Info,
Some("proxmox-backup-api")) {
eprintln!("unable to inititialize syslog: {}", err);
std::process::exit(-1);
}
2018-11-30 11:10:26 +00:00
let command : Arc<Schema> = StringSchema::new("Command.")
.format(Arc::new(ApiStringFormat::Enum(vec![
"start".into(),
"status".into(),
"stop".into()
])))
.into();
let schema = ObjectSchema::new("Parameters.")
2018-11-30 11:10:26 +00:00
.required("command", command);
2018-11-16 12:14:11 +00:00
let args: Vec<String> = std::env::args().skip(1).collect();
2018-11-30 11:10:26 +00:00
let options = match getopts::parse_arguments(&args, &vec!["command"], &schema) {
2018-11-17 08:57:26 +00:00
Ok((options, rest)) => {
2018-11-30 11:10:26 +00:00
if !rest.is_empty() {
eprintln!("Error: got additional arguments: {:?}", rest);
std::process::exit(-1);
}
options
2018-11-17 08:57:26 +00:00
}
Err(err) => {
2018-11-30 11:10:26 +00:00
eprintln!("Error: unable to parse arguments:\n{}", err);
2018-11-17 08:57:26 +00:00
std::process::exit(-1);
}
2018-11-30 11:10:26 +00:00
};
let command = options["command"].as_str().unwrap();
match command {
"start" => {
println!("Starting server.");
},
"stop" => {
println!("Stopping server.");
std::process::exit(0);
},
"status" => {
println!("Server status.");
std::process::exit(0);
},
_ => {
eprintln!("got unexpected command {}", command);
std::process::exit(-1);
},
2018-11-17 08:57:26 +00:00
}
2018-11-16 12:14:11 +00:00
let addr = ([127,0,0,1], 82).into();
2018-10-31 09:42:14 +00:00
2018-11-14 10:57:01 +00:00
lazy_static!{
static ref ROUTER: Router = proxmox_backup::api2::router();
2018-11-14 10:57:01 +00:00
}
let config = ApiConfig::new(
"/usr/share/javascript/proxmox-backup", &ROUTER, RpcEnvironmentType::PRIVILEDGED);
let rest_server = RestServer::new(config);
2018-10-31 09:42:14 +00:00
let server = hyper::Server::bind(&addr)
.serve(rest_server)
2018-10-31 09:42:14 +00:00
.map_err(|e| eprintln!("server error: {}", e));
2018-10-31 09:42:14 +00:00
// Run this server for... forever!
hyper::rt::run(server);
2018-10-30 09:04:30 +00:00
}