2020-01-09 13:49:40 +00:00
|
|
|
use failure::*;
|
|
|
|
use lazy_static::lazy_static;
|
|
|
|
use std::collections::HashMap;
|
2020-01-10 12:28:15 +00:00
|
|
|
use serde::{Serialize, Deserialize};
|
2020-01-09 13:49:40 +00:00
|
|
|
|
|
|
|
use proxmox::api::{api, schema::*};
|
|
|
|
|
|
|
|
use proxmox::tools::{fs::replace_file, fs::CreateOptions};
|
|
|
|
|
2020-01-13 10:47:07 +00:00
|
|
|
use crate::api2::types::*;
|
2020-01-09 13:49:40 +00:00
|
|
|
use crate::section_config::{SectionConfig, SectionConfigData, SectionConfigPlugin};
|
|
|
|
|
|
|
|
lazy_static! {
|
|
|
|
static ref CONFIG: SectionConfig = init();
|
|
|
|
}
|
|
|
|
|
|
|
|
// fixme: define better schemas
|
|
|
|
|
2020-01-13 13:17:22 +00:00
|
|
|
pub const REMOTE_PASSWORD_SCHEMA: Schema = StringSchema::new("Password or auth token for remote host.")
|
|
|
|
.max_length(1024)
|
|
|
|
.schema();
|
2020-01-09 13:49:40 +00:00
|
|
|
|
|
|
|
#[api(
|
|
|
|
properties: {
|
|
|
|
comment: {
|
|
|
|
optional: true,
|
2020-01-13 11:02:13 +00:00
|
|
|
schema: SINGLE_LINE_COMMENT_SCHEMA,
|
2020-01-09 13:49:40 +00:00
|
|
|
},
|
|
|
|
host: {
|
2020-01-13 13:17:22 +00:00
|
|
|
schema: DNS_NAME_OR_IP_SCHEMA,
|
2020-01-09 13:49:40 +00:00
|
|
|
},
|
|
|
|
userid: {
|
2020-01-13 13:17:22 +00:00
|
|
|
schema: PROXMOX_USER_ID_SCHEMA,
|
2020-01-09 13:49:40 +00:00
|
|
|
},
|
|
|
|
password: {
|
|
|
|
schema: REMOTE_PASSWORD_SCHEMA,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
)]
|
2020-01-10 12:28:15 +00:00
|
|
|
#[derive(Serialize,Deserialize)]
|
2020-01-09 13:49:40 +00:00
|
|
|
/// Remote properties.
|
|
|
|
pub struct Remote {
|
2020-01-13 11:14:14 +00:00
|
|
|
#[serde(skip_serializing_if="Option::is_none")]
|
2020-01-09 13:49:40 +00:00
|
|
|
pub comment: Option<String>,
|
|
|
|
pub host: String,
|
|
|
|
pub userid: String,
|
|
|
|
pub password: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
fn init() -> SectionConfig {
|
|
|
|
let obj_schema = match Remote::API_SCHEMA {
|
|
|
|
Schema::Object(ref obj_schema) => obj_schema,
|
|
|
|
_ => unreachable!(),
|
|
|
|
};
|
|
|
|
|
|
|
|
let plugin = SectionConfigPlugin::new("remote".to_string(), obj_schema);
|
|
|
|
let mut config = SectionConfig::new(&REMOTE_ID_SCHEMA);
|
|
|
|
config.register_plugin(plugin);
|
|
|
|
|
|
|
|
config
|
|
|
|
}
|
|
|
|
|
|
|
|
const REMOTES_CFG_FILENAME: &str = "/etc/proxmox-backup/remotes.cfg";
|
|
|
|
|
|
|
|
pub fn config() -> Result<SectionConfigData, Error> {
|
|
|
|
let content = match std::fs::read_to_string(REMOTES_CFG_FILENAME) {
|
|
|
|
Ok(c) => c,
|
|
|
|
Err(err) => {
|
|
|
|
if err.kind() == std::io::ErrorKind::NotFound {
|
|
|
|
String::from("")
|
|
|
|
} else {
|
|
|
|
bail!("unable to read '{}' - {}", REMOTES_CFG_FILENAME, err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
CONFIG.parse(REMOTES_CFG_FILENAME, &content)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn save_config(config: &SectionConfigData) -> Result<(), Error> {
|
|
|
|
let raw = CONFIG.write(REMOTES_CFG_FILENAME, &config)?;
|
|
|
|
|
|
|
|
let backup_user = crate::backup::backup_user()?;
|
|
|
|
let mode = nix::sys::stat::Mode::from_bits_truncate(0o0640);
|
|
|
|
// set the correct owner/group/permissions while saving file
|
|
|
|
// owner(rw) = root, group(r)= backup
|
|
|
|
let options = CreateOptions::new()
|
|
|
|
.perm(mode)
|
|
|
|
.owner(nix::unistd::ROOT)
|
|
|
|
.group(backup_user.gid);
|
|
|
|
|
|
|
|
replace_file(REMOTES_CFG_FILENAME, raw.as_bytes(), options)?;
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
// shell completion helper
|
|
|
|
pub fn complete_remote_name(_arg: &str, _param: &HashMap<String, String>) -> Vec<String> {
|
|
|
|
match config() {
|
|
|
|
Ok(data) => data.sections.iter().map(|(id, _)| id.to_string()).collect(),
|
|
|
|
Err(_) => return vec![],
|
|
|
|
}
|
|
|
|
}
|