2021-04-27 23:05:40 +00:00
|
|
|
use std::sync::Arc;
|
|
|
|
|
|
|
|
use hyper::{Body, Response};
|
|
|
|
|
|
|
|
use garage_model::garage::Garage;
|
2021-05-02 20:30:56 +00:00
|
|
|
use garage_model::key_table::Key;
|
|
|
|
use garage_util::time::*;
|
2021-04-27 23:05:40 +00:00
|
|
|
|
|
|
|
use crate::error::*;
|
2021-05-03 20:45:42 +00:00
|
|
|
use crate::s3_xml;
|
2021-05-02 20:30:56 +00:00
|
|
|
|
2021-04-27 23:05:40 +00:00
|
|
|
pub fn handle_get_bucket_location(garage: Arc<Garage>) -> Result<Response<Body>, Error> {
|
2021-05-03 20:45:42 +00:00
|
|
|
let loc = s3_xml::LocationConstraint {
|
|
|
|
xmlns: (),
|
|
|
|
region: garage.config.s3_api.s3_region.to_string(),
|
|
|
|
};
|
|
|
|
let xml = s3_xml::to_xml_with_header(&loc)?;
|
2021-04-27 23:05:40 +00:00
|
|
|
|
|
|
|
Ok(Response::builder()
|
|
|
|
.header("Content-Type", "application/xml")
|
|
|
|
.body(Body::from(xml.into_bytes()))?)
|
|
|
|
}
|
2021-05-02 20:30:56 +00:00
|
|
|
|
2021-05-14 20:33:26 +00:00
|
|
|
pub fn handle_get_bucket_versioning() -> Result<Response<Body>, Error> {
|
|
|
|
let versioning = s3_xml::VersioningConfiguration {
|
|
|
|
xmlns: (),
|
|
|
|
status: None,
|
|
|
|
};
|
|
|
|
|
|
|
|
let xml = s3_xml::to_xml_with_header(&versioning)?;
|
|
|
|
|
|
|
|
Ok(Response::builder()
|
|
|
|
.header("Content-Type", "application/xml")
|
|
|
|
.body(Body::from(xml.into_bytes()))?)
|
|
|
|
}
|
|
|
|
|
2021-05-02 20:30:56 +00:00
|
|
|
pub fn handle_list_buckets(api_key: &Key) -> Result<Response<Body>, Error> {
|
2021-05-03 20:45:42 +00:00
|
|
|
let list_buckets = s3_xml::ListAllMyBucketsResult {
|
|
|
|
owner: s3_xml::Owner {
|
|
|
|
display_name: s3_xml::Value(api_key.name.get().to_string()),
|
|
|
|
id: s3_xml::Value(api_key.key_id.to_string()),
|
2021-05-02 20:30:56 +00:00
|
|
|
},
|
2021-05-03 20:45:42 +00:00
|
|
|
buckets: s3_xml::BucketList {
|
2021-05-02 20:30:56 +00:00
|
|
|
entries: api_key
|
|
|
|
.authorized_buckets
|
|
|
|
.items()
|
|
|
|
.iter()
|
2021-11-22 11:10:28 +00:00
|
|
|
.filter(|(_, _, perms)| perms.allow_read || perms.allow_write)
|
2021-05-03 20:45:42 +00:00
|
|
|
.map(|(name, ts, _)| s3_xml::Bucket {
|
|
|
|
creation_date: s3_xml::Value(msec_to_rfc3339(*ts)),
|
|
|
|
name: s3_xml::Value(name.to_string()),
|
2021-05-02 20:30:56 +00:00
|
|
|
})
|
|
|
|
.collect(),
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2021-05-03 20:45:42 +00:00
|
|
|
let xml = s3_xml::to_xml_with_header(&list_buckets)?;
|
2021-05-02 20:30:56 +00:00
|
|
|
trace!("xml: {}", xml);
|
|
|
|
|
|
|
|
Ok(Response::builder()
|
|
|
|
.header("Content-Type", "application/xml")
|
|
|
|
.body(Body::from(xml))?)
|
|
|
|
}
|