2018-12-08 13:44:55 +00:00
|
|
|
use failure::*;
|
|
|
|
|
2019-02-17 09:16:33 +00:00
|
|
|
use crate::api_schema::*;
|
2019-02-17 08:59:20 +00:00
|
|
|
use crate::api_schema::router::*;
|
2018-12-08 13:44:55 +00:00
|
|
|
use serde_json::{json, Value};
|
|
|
|
|
|
|
|
const PROXMOX_PKG_VERSION: &'static str = env!("PROXMOX_PKG_VERSION");
|
|
|
|
const PROXMOX_PKG_RELEASE: &'static str = env!("PROXMOX_PKG_RELEASE");
|
|
|
|
const PROXMOX_PKG_REPOID: &'static str = env!("PROXMOX_PKG_REPOID");
|
|
|
|
|
2019-01-26 13:50:37 +00:00
|
|
|
fn get_version(
|
|
|
|
_param: Value,
|
|
|
|
_info: &ApiMethod,
|
2019-06-07 11:10:56 +00:00
|
|
|
_rpcenv: &mut dyn RpcEnvironment,
|
2019-01-26 13:50:37 +00:00
|
|
|
) -> Result<Value, Error> {
|
2018-12-08 13:44:55 +00:00
|
|
|
|
|
|
|
Ok(json!({
|
|
|
|
"version": PROXMOX_PKG_VERSION,
|
|
|
|
"release": PROXMOX_PKG_RELEASE,
|
|
|
|
"repoid": PROXMOX_PKG_REPOID
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn router() -> Router {
|
|
|
|
|
|
|
|
let route = Router::new()
|
|
|
|
.get(ApiMethod::new(
|
|
|
|
get_version,
|
|
|
|
ObjectSchema::new("Proxmox Backup Server API version.")));
|
|
|
|
|
|
|
|
route
|
|
|
|
}
|