list_snapshots: return manifest fingerprint
for display in clients. Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
This commit is contained in:
parent
79c535955d
commit
035c40e638
@ -403,6 +403,14 @@ pub fn list_snapshots (
|
|||||||
.and_then(|notes| notes.lines().next())
|
.and_then(|notes| notes.lines().next())
|
||||||
.map(String::from);
|
.map(String::from);
|
||||||
|
|
||||||
|
let fingerprint = match manifest.fingerprint() {
|
||||||
|
Ok(fp) => fp,
|
||||||
|
Err(err) => {
|
||||||
|
eprintln!("error parsing fingerprint: '{}'", err);
|
||||||
|
None
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
let verification = manifest.unprotected["verify_state"].clone();
|
let verification = manifest.unprotected["verify_state"].clone();
|
||||||
let verification: Option<SnapshotVerifyState> = match serde_json::from_value(verification) {
|
let verification: Option<SnapshotVerifyState> = match serde_json::from_value(verification) {
|
||||||
Ok(verify) => verify,
|
Ok(verify) => verify,
|
||||||
@ -420,6 +428,7 @@ pub fn list_snapshots (
|
|||||||
backup_time,
|
backup_time,
|
||||||
comment,
|
comment,
|
||||||
verification,
|
verification,
|
||||||
|
fingerprint,
|
||||||
files,
|
files,
|
||||||
size,
|
size,
|
||||||
owner,
|
owner,
|
||||||
@ -443,6 +452,7 @@ pub fn list_snapshots (
|
|||||||
backup_time,
|
backup_time,
|
||||||
comment: None,
|
comment: None,
|
||||||
verification: None,
|
verification: None,
|
||||||
|
fingerprint: None,
|
||||||
files,
|
files,
|
||||||
size: None,
|
size: None,
|
||||||
owner,
|
owner,
|
||||||
|
@ -5,7 +5,7 @@ use proxmox::api::{api, schema::*};
|
|||||||
use proxmox::const_regex;
|
use proxmox::const_regex;
|
||||||
use proxmox::{IPRE, IPRE_BRACKET, IPV4RE, IPV6RE, IPV4OCTET, IPV6H16, IPV6LS32};
|
use proxmox::{IPRE, IPRE_BRACKET, IPV4RE, IPV6RE, IPV4OCTET, IPV6H16, IPV6LS32};
|
||||||
|
|
||||||
use crate::backup::{CryptMode, BACKUP_ID_REGEX};
|
use crate::backup::{CryptMode, Fingerprint, BACKUP_ID_REGEX};
|
||||||
use crate::server::UPID;
|
use crate::server::UPID;
|
||||||
|
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
@ -484,6 +484,10 @@ pub struct SnapshotVerifyState {
|
|||||||
type: SnapshotVerifyState,
|
type: SnapshotVerifyState,
|
||||||
optional: true,
|
optional: true,
|
||||||
},
|
},
|
||||||
|
fingerprint: {
|
||||||
|
type: String,
|
||||||
|
optional: true,
|
||||||
|
},
|
||||||
files: {
|
files: {
|
||||||
items: {
|
items: {
|
||||||
schema: BACKUP_ARCHIVE_NAME_SCHEMA
|
schema: BACKUP_ARCHIVE_NAME_SCHEMA
|
||||||
@ -508,6 +512,9 @@ pub struct SnapshotListItem {
|
|||||||
/// The result of the last run verify task
|
/// The result of the last run verify task
|
||||||
#[serde(skip_serializing_if="Option::is_none")]
|
#[serde(skip_serializing_if="Option::is_none")]
|
||||||
pub verification: Option<SnapshotVerifyState>,
|
pub verification: Option<SnapshotVerifyState>,
|
||||||
|
/// Fingerprint of encryption key
|
||||||
|
#[serde(skip_serializing_if="Option::is_none")]
|
||||||
|
pub fingerprint: Option<Fingerprint>,
|
||||||
/// List of contained archive files.
|
/// List of contained archive files.
|
||||||
pub files: Vec<BackupContent>,
|
pub files: Vec<BackupContent>,
|
||||||
/// Overall snapshot size (sum of all archive sizes).
|
/// Overall snapshot size (sum of all archive sizes).
|
||||||
|
Loading…
Reference in New Issue
Block a user