]> git.proxmox.com Git - proxmox-backup.git/blame - src/bin/proxmox-backup-client.rs
client/http_client.rs: implement get, share common code
[proxmox-backup.git] / src / bin / proxmox-backup-client.rs
CommitLineData
fe0e04c6 1extern crate proxmox_backup;
ff5d3707 2
3use failure::*;
728797d0 4//use std::os::unix::io::AsRawFd;
ff5d3707 5
fe0e04c6
DM
6use proxmox_backup::tools;
7use proxmox_backup::cli::command::*;
8use proxmox_backup::api::schema::*;
9use proxmox_backup::api::router::*;
23bb8780
DM
10use proxmox_backup::client::http_client::*;
11use proxmox_backup::client::catar_backup_stream::*;
fe0e04c6
DM
12//use proxmox_backup::backup::chunk_store::*;
13//use proxmox_backup::backup::image_index::*;
14//use proxmox_backup::config::datastore;
23bb8780 15//use proxmox_backup::catar::encoder::*;
728797d0 16//use proxmox_backup::backup::datastore::*;
23bb8780 17
43eeef28 18use serde_json::{Value};
23bb8780
DM
19use hyper::Body;
20
23bb8780 21fn backup_directory(body: Body, store: &str, archive_name: &str) -> Result<(), Error> {
fb8365b7 22
23bb8780 23 let client = HttpClient::new("localhost");
fb8365b7 24
ff3d3100
DM
25 let epoch = std::time::SystemTime::now().duration_since(
26 std::time::SystemTime::UNIX_EPOCH)?.as_secs();
27
28 let query = url::form_urlencoded::Serializer::new(String::new())
29 .append_pair("archive_name", archive_name)
30 .append_pair("type", "host")
31 .append_pair("id", &tools::nodename())
32 .append_pair("time", &epoch.to_string())
33 .finish();
34
50cfb695 35 let path = format!("api3/json/admin/datastore/{}/catar?{}", store, query);
5e7a09be 36
83bdac1e 37 client.upload("application/x-proxmox-backup-catar", body, &path)?;
bcd879cf
DM
38
39 Ok(())
40}
41
23bb8780 42/****
bcd879cf
DM
43fn backup_image(datastore: &DataStore, file: &std::fs::File, size: usize, target: &str, chunk_size: usize) -> Result<(), Error> {
44
23bb8780 45 let mut target = PathBuf::from(target);
bcd879cf
DM
46
47 if let Some(ext) = target.extension() {
48 if ext != "iidx" {
49 bail!("got wrong file extension - expected '.iidx'");
50 }
51 } else {
52 target.set_extension("iidx");
53 }
54
55 let mut index = datastore.create_image_writer(&target, size, chunk_size)?;
56
57 tools::file_chunker(file, chunk_size, |pos, chunk| {
58 index.add_chunk(pos, chunk)?;
59 Ok(true)
60 })?;
61
62 index.close()?; // commit changes
63
64 Ok(())
65}
23bb8780 66*/
bcd879cf
DM
67
68fn create_backup(param: Value, _info: &ApiMethod) -> Result<Value, Error> {
ff5d3707 69
0fe5d605
DM
70 let filename = tools::required_string_param(&param, "filename")?;
71 let store = tools::required_string_param(&param, "store")?;
72 let target = tools::required_string_param(&param, "target")?;
a914a774 73
728797d0 74 let mut _chunk_size = 4*1024*1024;
2d9d143a
DM
75
76 if let Some(size) = param["chunk-size"].as_u64() {
77 static SIZES: [u64; 7] = [64, 128, 256, 512, 1024, 2048, 4096];
78
79 if SIZES.contains(&size) {
728797d0 80 _chunk_size = (size as usize) * 1024;
2d9d143a
DM
81 } else {
82 bail!("Got unsupported chunk size '{}'", size);
83 }
84 }
85
23bb8780
DM
86 let stat = match nix::sys::stat::stat(filename) {
87 Ok(s) => s,
88 Err(err) => bail!("unable to access '{}' - {}", filename, err),
89 };
a914a774 90
bcd879cf
DM
91 if (stat.st_mode & libc::S_IFDIR) != 0 {
92 println!("Backup directory '{}' to '{}'", filename, store);
93
23bb8780
DM
94 let stream = CaTarBackupStream::open(filename)?;
95
96 let body = Body::wrap_stream(stream);
fb8365b7 97
23bb8780 98 backup_directory(body, store, target)?;
bcd879cf
DM
99
100 } else if (stat.st_mode & (libc::S_IFREG|libc::S_IFBLK)) != 0 {
23bb8780 101 println!("Backup image '{}' to '{}'", filename, store);
606ce64b 102
4818c8b6 103 if stat.st_size <= 0 { bail!("got strange file size '{}'", stat.st_size); }
728797d0 104 let _size = stat.st_size as usize;
a914a774 105
23bb8780
DM
106 panic!("implement me");
107
108 //backup_image(&datastore, &file, size, &target, chunk_size)?;
d62e6e22 109
594fa520
DM
110 // let idx = datastore.open_image_reader(target)?;
111 // idx.print_info();
4818c8b6 112
bcd879cf
DM
113 } else {
114 bail!("unsupported file type (expected a directory, file or block device)");
4818c8b6
DM
115 }
116
f0819fe5 117 //datastore.garbage_collection()?;
3d5c11e5 118
ff5d3707 119 Ok(Value::Null)
120}
121
ff5d3707 122fn main() {
123
124 let cmd_def = CliCommand::new(
125 ApiMethod::new(
bcd879cf
DM
126 create_backup,
127 ObjectSchema::new("Create backup.")
128 .required("filename", StringSchema::new("Source name (file or directory name)"))
ff5d3707 129 .required("store", StringSchema::new("Datastore name."))
c34eb166 130 .required("target", StringSchema::new("Target name."))
2d9d143a
DM
131 .optional(
132 "chunk-size",
133 IntegerSchema::new("Chunk size in KB. Must be a power of 2.")
134 .minimum(64)
135 .maximum(4096)
136 .default(4096)
137 )
ff5d3707 138 ))
c34eb166 139 .arg_param(vec!["filename", "target"])
383e8577 140 .completion_cb("filename", tools::complete_file_name)
fe0e04c6 141 .completion_cb("store", proxmox_backup::config::datastore::complete_datastore_name);
f8838fe9 142
a914a774 143
ff5d3707 144 if let Err(err) = run_cli_command(&cmd_def.into()) {
145 eprintln!("Error: {}", err);
4968bc3a
WB
146 if err.downcast::<UsageError>().is_ok() {
147 print_cli_usage();
148 }
ff5d3707 149 std::process::exit(-1);
150 }
151
152}