2021-02-10 09:27:40 +00:00
|
|
|
use anyhow::{bail, Error};
|
2021-02-21 07:45:42 +00:00
|
|
|
use serde_json::{json, Value};
|
2021-02-10 09:27:40 +00:00
|
|
|
|
2021-02-21 07:45:42 +00:00
|
|
|
use proxmox::{
|
|
|
|
api::{
|
2021-02-21 11:00:06 +00:00
|
|
|
schema::{
|
|
|
|
Schema,
|
|
|
|
ObjectSchemaType,
|
|
|
|
SchemaPropertyEntry,
|
2021-02-21 14:52:38 +00:00
|
|
|
ApiStringFormat,
|
2021-02-21 11:00:06 +00:00
|
|
|
},
|
2021-02-21 07:45:42 +00:00
|
|
|
format::{
|
|
|
|
dump_enum_properties,
|
|
|
|
dump_section_config,
|
2021-02-21 14:52:38 +00:00
|
|
|
get_property_string_type_text,
|
2021-02-21 07:45:42 +00:00
|
|
|
},
|
|
|
|
ApiMethod,
|
|
|
|
ApiHandler,
|
|
|
|
Router,
|
|
|
|
SubRoute,
|
|
|
|
},
|
2021-02-11 12:13:34 +00:00
|
|
|
};
|
2021-02-10 09:27:40 +00:00
|
|
|
|
|
|
|
use proxmox_backup::{
|
2021-02-21 07:45:42 +00:00
|
|
|
api2,
|
2021-02-10 09:27:40 +00:00
|
|
|
config,
|
|
|
|
};
|
|
|
|
|
|
|
|
fn get_args() -> (String, Vec<String>) {
|
|
|
|
|
|
|
|
let mut args = std::env::args();
|
|
|
|
let prefix = args.next().unwrap();
|
|
|
|
let prefix = prefix.rsplit('/').next().unwrap().to_string(); // without path
|
|
|
|
let args: Vec<String> = args.collect();
|
|
|
|
|
|
|
|
(prefix, args)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() -> Result<(), Error> {
|
|
|
|
|
|
|
|
let (_prefix, args) = get_args();
|
|
|
|
|
|
|
|
if args.len() < 1 {
|
|
|
|
bail!("missing arguments");
|
|
|
|
}
|
2021-02-21 07:45:42 +00:00
|
|
|
|
2021-02-10 09:27:40 +00:00
|
|
|
for arg in args.iter() {
|
2021-02-11 12:13:34 +00:00
|
|
|
let text = match arg.as_ref() {
|
2021-02-21 07:45:42 +00:00
|
|
|
"apidata.js" => generate_api_tree(),
|
2021-02-11 12:13:34 +00:00
|
|
|
"datastore.cfg" => dump_section_config(&config::datastore::CONFIG),
|
|
|
|
"tape.cfg" => dump_section_config(&config::drive::CONFIG),
|
2021-02-15 05:57:48 +00:00
|
|
|
"tape-job.cfg" => dump_section_config(&config::tape_job::CONFIG),
|
2021-02-11 12:13:34 +00:00
|
|
|
"user.cfg" => dump_section_config(&config::user::CONFIG),
|
|
|
|
"remote.cfg" => dump_section_config(&config::remote::CONFIG),
|
|
|
|
"sync.cfg" => dump_section_config(&config::sync::CONFIG),
|
2021-02-11 12:40:11 +00:00
|
|
|
"verification.cfg" => dump_section_config(&config::verify::CONFIG),
|
2021-02-11 12:13:34 +00:00
|
|
|
"media-pool.cfg" => dump_section_config(&config::media_pool::CONFIG),
|
|
|
|
"config::acl::Role" => dump_enum_properties(&config::acl::Role::API_SCHEMA)?,
|
2021-02-10 09:27:40 +00:00
|
|
|
_ => bail!("docgen: got unknown type"),
|
2021-02-11 12:13:34 +00:00
|
|
|
};
|
|
|
|
println!("{}", text);
|
2021-02-10 09:27:40 +00:00
|
|
|
}
|
2021-02-21 07:45:42 +00:00
|
|
|
|
2021-02-10 09:27:40 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
2021-02-21 07:45:42 +00:00
|
|
|
|
|
|
|
fn generate_api_tree() -> String {
|
|
|
|
|
|
|
|
let mut tree = Vec::new();
|
2021-02-21 09:38:33 +00:00
|
|
|
|
|
|
|
let mut data = dump_api_schema(& api2::ROUTER, ".");
|
2021-02-21 07:45:42 +00:00
|
|
|
data["path"] = "/".into();
|
2021-02-21 09:38:33 +00:00
|
|
|
// hack: add invisible space to sort as first entry
|
|
|
|
data["text"] = "​Management API (HTTP)".into();
|
2021-02-21 07:45:42 +00:00
|
|
|
data["expanded"] = true.into();
|
|
|
|
|
|
|
|
tree.push(data);
|
|
|
|
|
2021-02-21 09:38:33 +00:00
|
|
|
let mut data = dump_api_schema(&api2::backup::BACKUP_API_ROUTER, ".");
|
|
|
|
data["path"] = "/".into();
|
|
|
|
data["text"] = "Backup API (HTTP/2)".into();
|
|
|
|
tree.push(data);
|
|
|
|
|
|
|
|
let mut data = dump_api_schema(&api2::reader::READER_API_ROUTER, ".");
|
|
|
|
data["path"] = "/".into();
|
|
|
|
data["text"] = "Restore API (HTTP/2)".into();
|
|
|
|
tree.push(data);
|
|
|
|
|
2021-02-21 07:45:42 +00:00
|
|
|
format!("var pbsapi = {};", serde_json::to_string_pretty(&tree).unwrap())
|
|
|
|
}
|
|
|
|
|
2021-02-21 11:00:06 +00:00
|
|
|
pub fn dump_schema(schema: &Schema) -> Value {
|
|
|
|
|
|
|
|
let mut data;
|
|
|
|
|
|
|
|
match schema {
|
|
|
|
Schema::Null => {
|
|
|
|
data = json!({
|
|
|
|
"type": "null",
|
|
|
|
});
|
|
|
|
}
|
|
|
|
Schema::Boolean(boolean_schema) => {
|
|
|
|
data = json!({
|
|
|
|
"type": "boolean",
|
|
|
|
"description": boolean_schema.description,
|
|
|
|
});
|
|
|
|
if let Some(default) = boolean_schema.default {
|
|
|
|
data["default"] = default.into();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Schema::String(string_schema) => {
|
|
|
|
data = json!({
|
|
|
|
"type": "string",
|
|
|
|
"description": string_schema.description,
|
|
|
|
});
|
|
|
|
if let Some(default) = string_schema.default {
|
|
|
|
data["default"] = default.into();
|
|
|
|
}
|
|
|
|
if let Some(min_length) = string_schema.min_length {
|
|
|
|
data["minLength"] = min_length.into();
|
|
|
|
}
|
|
|
|
if let Some(max_length) = string_schema.max_length {
|
|
|
|
data["maxLength"] = max_length.into();
|
|
|
|
}
|
|
|
|
if let Some(type_text) = string_schema.type_text {
|
|
|
|
data["typetext"] = type_text.into();
|
|
|
|
}
|
2021-02-21 14:52:38 +00:00
|
|
|
match string_schema.format {
|
|
|
|
None | Some(ApiStringFormat::VerifyFn(_)) => { /* do nothing */ }
|
|
|
|
Some(ApiStringFormat::Pattern(const_regex)) => {
|
|
|
|
data["pattern"] = const_regex.regex_string.into();
|
|
|
|
}
|
|
|
|
Some(ApiStringFormat::Enum(variants)) => {
|
|
|
|
let variants: Vec<String> = variants
|
|
|
|
.iter()
|
|
|
|
.map(|e| e.value.to_string())
|
|
|
|
.collect();
|
|
|
|
data["enum"] = serde_json::to_value(variants).unwrap();
|
|
|
|
}
|
|
|
|
Some(ApiStringFormat::PropertyString(subschema)) => {
|
|
|
|
|
|
|
|
match subschema {
|
|
|
|
Schema::Object(_) | Schema::Array(_) => {
|
|
|
|
data["format"] = dump_schema(subschema);
|
|
|
|
data["typetext"] = get_property_string_type_text(subschema)
|
|
|
|
.into();
|
|
|
|
}
|
|
|
|
_ => { /* do nothing - shouldnot happen */ }
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
2021-02-21 11:00:06 +00:00
|
|
|
// fixme: dump format
|
|
|
|
}
|
|
|
|
Schema::Integer(integer_schema) => {
|
|
|
|
data = json!({
|
|
|
|
"type": "integer",
|
|
|
|
"description": integer_schema.description,
|
|
|
|
});
|
|
|
|
if let Some(default) = integer_schema.default {
|
|
|
|
data["default"] = default.into();
|
|
|
|
}
|
|
|
|
if let Some(minimum) = integer_schema.minimum {
|
|
|
|
data["minimum"] = minimum.into();
|
|
|
|
}
|
|
|
|
if let Some(maximum) = integer_schema.maximum {
|
|
|
|
data["maximum"] = maximum.into();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Schema::Number(number_schema) => {
|
|
|
|
data = json!({
|
|
|
|
"type": "number",
|
|
|
|
"description": number_schema.description,
|
|
|
|
});
|
|
|
|
if let Some(default) = number_schema.default {
|
|
|
|
data["default"] = default.into();
|
|
|
|
}
|
|
|
|
if let Some(minimum) = number_schema.minimum {
|
|
|
|
data["minimum"] = minimum.into();
|
|
|
|
}
|
|
|
|
if let Some(maximum) = number_schema.maximum {
|
|
|
|
data["maximum"] = maximum.into();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Schema::Object(object_schema) => {
|
|
|
|
data = dump_property_schema(object_schema);
|
|
|
|
data["type"] = "object".into();
|
2021-02-21 14:52:38 +00:00
|
|
|
if let Some(default_key) = object_schema.default_key {
|
|
|
|
data["default_key"] = default_key.into();
|
|
|
|
}
|
2021-02-21 11:00:06 +00:00
|
|
|
}
|
|
|
|
Schema::Array(array_schema) => {
|
|
|
|
data = json!({
|
|
|
|
"type": "array",
|
|
|
|
"description": array_schema.description,
|
|
|
|
"items": dump_schema(array_schema.items),
|
|
|
|
});
|
|
|
|
if let Some(min_length) = array_schema.min_length {
|
|
|
|
data["minLength"] = min_length.into();
|
|
|
|
}
|
|
|
|
if let Some(max_length) = array_schema.min_length {
|
|
|
|
data["maxLength"] = max_length.into();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Schema::AllOf(alloff_schema) => {
|
|
|
|
data = dump_property_schema(alloff_schema);
|
|
|
|
data["type"] = "object".into();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
data
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn dump_property_schema<I>(
|
|
|
|
param: &dyn ObjectSchemaType<PropertyIter = I>,
|
|
|
|
) -> Value
|
|
|
|
where I: Iterator<Item = &'static SchemaPropertyEntry>,
|
|
|
|
{
|
|
|
|
let mut properties = json!({});
|
|
|
|
|
|
|
|
for (prop, optional, schema) in param.properties() {
|
|
|
|
let mut property = dump_schema(schema);
|
|
|
|
if *optional {
|
|
|
|
property["optional"] = 1.into();
|
|
|
|
}
|
|
|
|
properties[prop] = property;
|
|
|
|
}
|
|
|
|
|
|
|
|
let data = json!({
|
|
|
|
"description": param.description(),
|
|
|
|
"additionalProperties": param.additional_properties(),
|
|
|
|
"properties": properties,
|
|
|
|
});
|
|
|
|
|
|
|
|
data
|
|
|
|
}
|
|
|
|
|
2021-02-21 07:45:42 +00:00
|
|
|
fn dump_api_method_schema(
|
|
|
|
method: &str,
|
|
|
|
api_method: &ApiMethod,
|
|
|
|
) -> Value {
|
|
|
|
let mut data = json!({
|
|
|
|
"description": api_method.parameters.description(),
|
|
|
|
});
|
|
|
|
|
2021-02-21 11:00:06 +00:00
|
|
|
data["parameters"] = dump_property_schema(&api_method.parameters);
|
2021-02-21 07:45:42 +00:00
|
|
|
|
2021-02-21 11:00:06 +00:00
|
|
|
let mut returns = dump_schema(&api_method.returns.schema);
|
|
|
|
if api_method.returns.optional {
|
|
|
|
returns["optional"] = 1.into();
|
|
|
|
}
|
|
|
|
data["returns"] = returns;
|
2021-02-21 07:45:42 +00:00
|
|
|
|
|
|
|
let mut method = method;
|
|
|
|
|
|
|
|
if let ApiHandler::AsyncHttp(_) = api_method.handler {
|
|
|
|
method = if method == "POST" { "UPLOAD" } else { method };
|
|
|
|
method = if method == "GET" { "DOWNLOAD" } else { method };
|
|
|
|
}
|
|
|
|
|
|
|
|
data["method"] = method.into();
|
|
|
|
|
|
|
|
data
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn dump_api_schema(
|
|
|
|
router: &Router,
|
|
|
|
path: &str,
|
|
|
|
) -> Value {
|
|
|
|
|
|
|
|
let mut data = json!({});
|
|
|
|
|
|
|
|
let mut info = json!({});
|
|
|
|
if let Some(api_method) = router.get {
|
|
|
|
info["GET"] = dump_api_method_schema("GET", api_method);
|
|
|
|
}
|
|
|
|
if let Some(api_method) = router.post {
|
|
|
|
info["POST"] = dump_api_method_schema("POST", api_method);
|
|
|
|
}
|
|
|
|
if let Some(api_method) = router.put {
|
|
|
|
info["PUT"] = dump_api_method_schema("PUT", api_method);
|
|
|
|
}
|
|
|
|
if let Some(api_method) = router.delete {
|
|
|
|
info["DELETE"] = dump_api_method_schema("DELETE", api_method);
|
|
|
|
}
|
|
|
|
|
|
|
|
data["info"] = info;
|
|
|
|
|
|
|
|
match &router.subroute {
|
|
|
|
None => {
|
|
|
|
data["leaf"] = 1.into();
|
|
|
|
},
|
|
|
|
Some(SubRoute::MatchAll { router, param_name }) => {
|
|
|
|
let sub_path = if path == "." {
|
|
|
|
format!("/{{{}}}", param_name)
|
|
|
|
} else {
|
|
|
|
format!("{}/{{{}}}", path, param_name)
|
|
|
|
};
|
|
|
|
let mut child = dump_api_schema(router, &sub_path);
|
|
|
|
child["path"] = sub_path.into();
|
|
|
|
child["text"] = format!("{{{}}}", param_name).into();
|
|
|
|
|
|
|
|
let mut children = Vec::new();
|
|
|
|
children.push(child);
|
|
|
|
data["children"] = children.into();
|
|
|
|
data["leaf"] = 0.into();
|
|
|
|
}
|
|
|
|
Some(SubRoute::Map(dirmap)) => {
|
|
|
|
|
|
|
|
let mut children = Vec::new();
|
|
|
|
|
|
|
|
for (key, sub_router) in dirmap.iter() {
|
|
|
|
let sub_path = if path == "." {
|
|
|
|
format!("/{}", key)
|
|
|
|
} else {
|
|
|
|
format!("{}/{}", path, key)
|
|
|
|
};
|
|
|
|
let mut child = dump_api_schema(sub_router, &sub_path);
|
|
|
|
child["path"] = sub_path.into();
|
|
|
|
child["text"] = key.to_string().into();
|
|
|
|
children.push(child);
|
|
|
|
}
|
|
|
|
|
|
|
|
data["children"] = children.into();
|
|
|
|
data["leaf"] = 0.into();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
data
|
|
|
|
}
|