1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
use crate::http::object_access_controls::PredefinedObjectAcl;
use crate::http::objects::{Encryption, Object, SourceObjects};
use crate::http::Escape;
use reqwest::{Client, RequestBuilder};
#[derive(Clone, PartialEq, Eq, serde::Deserialize, serde::Serialize, Debug, Default)]
#[serde(rename_all = "camelCase")]
pub struct ComposeObjectRequest {
#[serde(skip_serializing)]
pub bucket: String,
#[serde(skip_serializing)]
pub destination_object: String,
pub destination_predefined_acl: Option<PredefinedObjectAcl>,
#[serde(skip_serializing)]
pub composing_targets: ComposingTargets,
pub if_generation_match: Option<i64>,
pub if_metageneration_match: Option<i64>,
pub kms_key_name: Option<String>,
#[serde(skip_serializing)]
pub encryption: Option<Encryption>,
}
#[derive(Clone, PartialEq, Eq, serde::Deserialize, serde::Serialize, Debug, Default)]
#[serde(rename_all = "camelCase")]
pub struct ComposingTargets {
pub destination: Option<Object>,
pub source_objects: Vec<SourceObjects>,
}
pub(crate) fn build(base_url: &str, client: &Client, req: &ComposeObjectRequest) -> RequestBuilder {
let url = format!(
"{}/b/{}/o/{}/compose",
base_url,
req.bucket.escape(),
req.destination_object.escape()
);
let builder = client.post(url).query(&req).json(&req.composing_targets);
if let Some(e) = &req.encryption {
e.with_headers(builder)
} else {
builder
}
}